DMS link  BOM object

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.

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.

Similar Messages

  • Dms link to bom header and bom item

    hi, all
    I read the solutions who r given to me, also i worked according to them. in dms i m not finding attched documents,which r attached at bom header ' CS01/CS02'.
    also i treid to change doc's in dms for bom item, the sys message say's 'this transaction is not support for this activity.
    rgd
    ben

    hi benaka,
    Go to dms,
    Dc10, do the object linking for material/ BOM.
    whatever document you have selected for object linking attach the file to it.
    go to cs01n, give your material name, enter.
    once you, inside the bom, select document tab, enter your document type and number and save it.
    this way that document is link to that bom. and whatever the file is there inside document, you casn see it. just click it.
    thanks,
    regards,
    nitin
    award point if useful

  • Object link BOM header doesn't work

    Hello,
    We are in version 4.6C (standard) and I have a following problem with DMS.
    I have created a document type and assigned object links STKO_DOC BOM header (screen 258). I have created other document type quite similar, just with different object links, and they work just fine. However, when I create or change my document type with tra CV01N or tra CV02N I cannot see the sheet for assigning the BOM header. I have no error messages. I have tried to compare to the standard document types and simply cannot find out what's wrong.
    If I go to the tra CS02 (BOM) to assign my document - I cannot - because the list doesn't show it even though I can see it using CV02N -- CV04N.
    I tried to add also object link BOM item (screen 257) but without help.
    Can anybody help with this - thank you in advance.
    Pipsa

    Dear Pipsa,
    please see SAP note 956853 and make sure that the necessary objects are maintained correctly in customizing.
    Best regards
    Christoph

  • How to find DMS documents without object links in ABAP?

    How can I find DMS documents without object links,  in ABAP language?
    thank you

    Hi,
    this functionality is not available as on till date with sap dms and it's current version.
    Hope this will help.
    Regards,
    Ravindra

  • DMS link with Purchase order,invoices and material master

    Hi, all,
    Here is my ?
    Can we link incoming material invoice with purchase orders for reference purpose throught DMS.
    rgds,
    ben

    hi
    you can link the objects through object link in dms.
    go to  tcode dc10 select the documnet type, click on define object link. click new entry and select object type as EBAN/EKPO
    this way dms is link  to purchase order.
    thanks ,
    regards,
    nitin
    award point if useful

  • DMS Link witlh Sales order and Material master

    Hi, all
    here is my?
    Can we link DMS to both sales order and material master, for service feedback of a product from customer.
    rgds
    ben

    hi
    you can link the objects through object link in dms.
    go to  tcode dc10 select the documnet type, click on define object link. click on new entry, select VBAP object for sales order and MARA for material master.
    thanks ,
    regards,
    nitin
    award point if useful

  • Action Link to link Custom Object 3 to Task

    Hello,
    Im creating a weblink on the task screen that runs a report on Custom Object 3 wtihin a new windows for the user to select the option on the report that the user would like to add. How can i create a action link that when selected will pass the selection on the report back to the activity screen?
    Or can i create a weblink on the account record that will run a report then on the results depending on the row create a task linking Custom Object three and Accounts Automatically
    Any suggestions would be approcaited

    Thanks Shilei,
    There is what i have been able to create so far:
    https://secure-ausomxXXX.crmondemand.com/OnDemand/user/ApptNew?OMCR0=AXXX-90ZIJC&OMTGT=ApptEditForm&OMTHD=ActivityNewNav&OMCBO=OnDemand+Custom+Object+3&OMRET0=CustomObj3Detail%3fCustObj3DetailForm.Id%3dAXXX-90ZIJC%26ocTitle%3dASAHI+BOM%26OMTGT%3dCustObj3DetailForm%26OMTHD%3dCustomObject3DetailNav%26ocEdit%3dY%26OCTYPE%3d%26ocTitleField%3dName&OCNOEDITTYPE=Y&OCTYPE=
    But how do i also link this to an account and default the Subject?

  • Open as linked smart object

    Hello,
    iam looking for a solution to open files in a folder
    and copy then into a document.
    Its working good, but i need the files to be linked smart object.
    Anyone knows a solution ?
    Here my Code so far:
    See in line 33. Convert to smart object: ?
    var file = new File('C:/User_MY PATH.PSD'),
    docRef = open(file);
    // Use the path to the application and append the samples folder
    var samplesFolder = Folder('C:/USERS_MY FOLDER');
    //Get all the files in the folder
    var fileList = samplesFolder.getFiles()
      // open each file
      for (var i = 0; i < fileList.length; i++)
      // The fileList is folders and files so open only files
      if (fileList[i]instanceof File)
      open(fileList[i])
      // use the document name for the layer name in the merged document
      var activeDocName = app.activeDocument.name;
      var targetDocName = activeDocName.substring(0, activeDocName.lastIndexOf("."));
      // Copy the Document
      app.activeDocument.selection.selectAll()
      //convertToSmartObject(); THIS ISNT WORKING - CONVERT IT ?
      app.activeDocument.selection.copy()
      // don’t save anything we did
      app.activeDocument.close(SaveOptions.DONOTSAVECHANGES)
      //Select specific layer to paste the copy, this is to make sure the layers are in a specific position
      var doc = app.activeDocument;
      doc.activeLayer = doc.artLayers.getByName("bgr");
      //Paste Document
      app.activeDocument.paste()
      app.activeDocument.activeLayer.name = targetDocName

    Use scriptlistener:
    var idPlc = charIDToTypeID( "Plc " );
        var desc2 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
        desc2.putPath( idnull, new File( "C:\\Photos\\myPhoto.psd" ) );
        var idLnkd = charIDToTypeID( "Lnkd" );
        desc2.putBoolean( idLnkd, true );
        var idFTcs = charIDToTypeID( "FTcs" );
        var idQCSt = charIDToTypeID( "QCSt" );
        var idQcsa = charIDToTypeID( "Qcsa" );
        desc2.putEnumerated( idFTcs, idQCSt, idQcsa );
        var idOfst = charIDToTypeID( "Ofst" );
            var desc3 = new ActionDescriptor();
            var idHrzn = charIDToTypeID( "Hrzn" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idHrzn, idPxl, 0.000000 );
            var idVrtc = charIDToTypeID( "Vrtc" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idVrtc, idPxl, 0.000000 );
        var idOfst = charIDToTypeID( "Ofst" );
        desc2.putObject( idOfst, idOfst, desc3 );
    executeAction( idPlc, desc2, DialogModes.NO );

  • Button Link to Object Standard.

    Dear All.,
    Now I have a problem with button link to object stanbard (17 is Sale order object).
    I have to use button link and Editbox on the new form, then I set button link to this editbox and set LinkedObject=17 in screen painter. I have run this form i select Sale Order document Number on this Editbox and i click button link to sale order that show data following my selected.. but it can't not open sale order and alert message "You are not permitted to perform this action [Message 200-30]".. so how can i set permitted to perform this action. pls help me...
    Thanks,
    Sivhour.

    Hi Prasan,
    Authorizations are set in under the Administration  System Initialization  Authorization  General Authorization.
    Regards,
    Vítor Vieira

  • Linked Smart Objects

    When you send a PS file which has a linked Smart Object to a print vendor, will you need to send the linked Smart Object file as well?

    That's what I was afraid of. As a print vendor AND a designer I'm concerned that word has not gotten out that linked objects will need to accompany the file and we will end up dead in the water when we need to open up a photoshop file with a linked smart object. This is a relatively new problem for Photoshop, although InDesign and even many Illustrator users know that links need to be sent. In fact, we're seeing the opposite trend in InDesign, where artists are embedding artwork in their InDesign file rather than linking, which has both pluses and minuses.
    Thanks!

  • Layer Comps should capture changes to a Linked Smart Object's Layer Comp

    Normally, I can move things around or change visibility, and use Layer Comps in my master doc to capture these changes.
    However, changing which Layer Comp displays from a Linked Smart Object cannot be captured by Layer Comps in my master doc.
    Slightly more information: Sorry it's a little convoluted. I have several Linked Smart Objects inside a master doc, and these Smart Objects contain different Layer Comps. It's awesome that I can easily change which Layer Comp each Smart Object displays. But when I make a change, it cascades across the Layer Comps in my master doc. So my master doc's Layer Comps cannot effectively capture a state.
    It would be awesome if Layer Comps were able to capture state changes for the display of Linked Smart Object's Layer Comps. #featurerequest

    Photoshop Feature Requests should be posted over at
    Photoshop Family Customer Community
    But before posting one look around whether one exists already on this issue and add your +1 if it does.

  • Can you replace embedded smart object with linked smart object?

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

  • Convert an embedded smart object to a linked smart object

    Hey guys,
    love the new "linked smart object" functionality. However, I can not figure out how I can convert (or export) an existing embedded smart object to a linked smart object.
    I have a huge photoshop file with several embedded smart objects that I would like to break down into a lightweigt photoshop with with links to the varios smart object photoshop files.
    Is there any way to do this?
    Thanks,
    Philipp

    Thanks a lot guys.
    I am just now putting a document together with linked smart objects and I'm noticing that the file size of the PSD file still increases quite a bit. I thought the hole point of this was to have lightweigh psd files?
    I currently have 11 1920x1080 linked smart object files in the PSD and the file size is already at 140MB. Any ideas why this is happening?

  • Scripting layer comp property of linked smart object

    How can I through script set the layer comp property of a linked smart object?
    More generally, how can I access a smart object and manipulate it as a document?  I know that I get smart object layers by looking at the kind property, but I don't know what to do with them once I get them.  I'd like to be able to cast the layer to a document object I guess.  Thoughts, anyone?

    Photoshop Feature Requests should be posted over at
    Photoshop Family Customer Community
    But before posting one look around whether one exists already on this issue and add your +1 if it does.

  • How do I disable linked smart-object auto-update/refresh?

    Working in the CC3D features, I am constantly making changes to my bump map. Every time I step-backwards, or make a significant change to the bump texture (smart object?), CC auto-saves the layer. This specific file is a very very large document (3 gigs in the bump texture layer alone), and the 3D layer has lots of lights and is very complex. This auto-refresh/update really bogs down the time that it would take me to make my changes. I have a very fast machine (I know it's fast, I dont need to list my specs), and I have all shadows disabled.
    How do I disable linked smart-object auto-update/refresh?

    If you do not like a feature like smart objects there is nothing forcing you to use it. Use some other features to do what you want. Please don't ask Adobe to introduce bug into smart object support.
    You could work on your bump maps textures in external files. When your done some time in the future you could edit your project with the smart object layer and use replace smart object. Only then will all smart filters be applied to the smart layer with the replaced smart object.
    Or if by CC Auto save Layer you referring to CC Generate feature you can disable that feature.
    I have no idea what your referring to when you write "CC auto-saves the layer" being a feature. I know CC Generate will write layers out as web files but that more a Web feature then a 3d feature.  Where do you see your layer being saved?

Maybe you are looking for

  • Need o/p in following format

    Hi All, Presently im getting an output of my Select statement like this: 0000000000279012,Service E777: please enter a price 0000000000279012,Purchase order still contains faulty items 0000000000279012,No instance of object type PurchaseOrder has bee

  • Web Intelligence Security Best Practices

    Hi All, We are in the process of starting to use web intelligence. I am puttng together a security model for it and I have some questions around best practices. We have a fairly simple two tier security model so far, end users and creators. Creators

  • Off-line ACS Configuration

    I need to apply a basic configuration to an ACS appliance (5.2) then ship it off to another location to be installed.  The initial installation script calls for you to configure the IP address, DNS, etc ... then pings the gateway and DNS before reboo

  • ESS Leave Request database - Archiving or Maintenance

    Hi I understand the leave request detals are stored in the following tables PTREQ_HEADER (Request Header) PTREQ_ITEMS (Request Items) PTREQ_ACTOR (Request Participant) PTREQ_NOTICE (Note for Request) PTREQ_ATTABSDATA (Request Data for Attendances/Abs

  • Whats the relevant FM in ECC6 for following FM of 4.6c

    Hi Abapers, Could anyone tell me, whats the relevant FM in ECC6 for following FM of 4.6c: BBP_GET_ATTRIBUTES COM_OM_ORGOBJECT_TEXTS_GET SWW_WI_TO_OBJECT_FIND