cancel
Showing results for 
Search instead for 
Did you mean: 

DMS link BOM object

Former Member
0 Kudos

Hi SAP Consultants,

We are in the process of linking DMS with BOM.

While Creating a DIR in CV01n we are unable to link a BOM because when we click the Object links tab it is displaying the following message:

Object link to STKO_DOC cannot be changed in this transaction

We also tried on the Other side. We created a BOM and linked a document to that. While opening that Document in CV03N, we are unable to view the linked BOM and gives the error same error.

Kindly provide the support for the above issues.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member194669
Active Contributor
0 Kudos

Hi,

I have search for message class and message number , it is coming from message class 26 and message number 321.

using this i made a search in the code

You need to better look into this code from include LCV130O01


  IF drad-dokob  = 'PORDER' or drad-dokob  = 'STPO_DOC' or
     drad-dokob  = 'STKO_DOC' or drad-dokob  = 'DPR_OBJLNK'.
    PERFORM display_col_change USING 'PORDER-CO_POSNR' 1 1.   " no icon
    GF_no_edit_screen_link = 'X'.    "<<<<<<<<<<====<<<<<<<<<<<  
  ENDIF.
  if not gf_no_edit_screen_link is initial
  and display_mode NE c_dms_display.
    message w321 with intdrad-dokob. "<<<<<<<<<<====<<<<<<<<<<<
  endif.

and also you need to check your configuration DC10.

May this will give some hint.