Mass upload of Object Services to material master - Create Document (URL)

Hi there,
Does anyone have any experience of uploading URL's to material masters via object services. Can we use LSMW?
I have tried to record the transaction, however, this excludes the object services button
Any feedback greatly appreciated
Steve

Hi Csabar,
Thanks.
BUt may I know clearly what do you mean by your following statement?
I would suggest you should always create/modify/delete only one record in config via LSMW. 
I have more than 3000 records for this exercise, do You mean I should test it out on one record first in 0VRF during the recording??
thanks
tuff

Similar Messages

  • Uploading TAX Classification data in material master

    Hi,
    I have to upload tax classification data in material master for countries DE,IT,FR,ES,CH and GB.
    I have used BAPI_MATERIAL_SAVEDATA and passing values to table TAXCLASSIFICATIONS.
    But bapi is uploading tax classification only for country DE.
    When I am creating through MM02 its getting updated.
    Can anybody tell me what is the problem ?

    Hi Ganga,
    Yes I am passing different countries to table .
    LOOP AT IT_STAX into WA_STAX.
           wa_taxclassifications-depcountry = wa_stax-aland.
            wa_taxclassifications-tax_type_1 = wa_tstl-tatyp.
            wa_taxclassifications-taxclass_1 = wa_stax-taxm1.
            wa_taxclassifications-tax_ind    = wa_stax-taxim.
            APPEND wa_taxclassifications TO it_taxclassifications.
    ENDLOOP.
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            headdata           = wa_headdata
          TABLES
            taxclassifications = it_taxclassifications
            returnmessages     = it_return[].

  • Object services in equipment master

    Hello guys,
    I am not getting the object services icon in my equipment master.
    object services is used to attach documents.
    where can i do the settings for it.

    Hi,
    Service Object can be seen in ie02
    try it
    regards
    jitender suhag

  • Material Master Change Documents

    We have currently added additional fields to MARA and I am trying to add the changing of these new fields to the Material Master Change Documents.  Does anyone know how I can accomplish this?

    Dear Khrista,
    I hope you are looking for change documents that would be generated whenever specific field value changes when you change material master. It would be stored in CDHDR and CDPOS.
    One way is to add custom fields to be considered is to implement a proper BAdi/Enhancement.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • Automatic Trigger of Idoc Sending to PI on Material Master Create/Change

    Hi All,
    I would like to ask how to automatically trigger sending of idoc on material master create/change without using a standard transaction like BD10. I already tried using MASTER_IDOC_DISTRIBUTE in the material master change user exit. It does send the idoc but my problem is when an inbound idoc creates a material, it will then pass through the userexit and use MASTER_IDOC_DISTRIBUTE again.
    Any suggestions? Or do you have a better solution for this? My requirement is when uer goes throgh MM01/MM02 an idoc will automatically be sent to PI.
    Thanks.

    First of all a quick comment to your present solution. If it works and your only problem is that you'd like to suppress triggering the IDoc creation when a material is created/updated via inbound IDoc then you might want to just fix that. There's many possible ways to approach this, it all depends how much you want to change and what your processes are (I sorted the listed ones in order of personal preference, though the list is not complete for sure):
    <ul style="list-style:circle;">
    <li>Export some flag to memory when processing an IDoc that you can import in your exit and thus recognize that you don't want to send an IDoc. Depending on how you are processing your inbound IDoc BAdI BADI_MATMAS_ALE_IN might work; you might find others if this is not applicable or sufficient. If you're working on ECC 6.0 you could also consider coding the export of the flag in an implicit enhancement spot in your function modules used for IDoc processing.</li>
    <li>Evaluate in your existing coding the transaction code SY-TCODE; most likely you should see a clear difference between your IDoc processing and the other updates where you want to trigger the IDoc.</li>
    <li>Most likely the IDoc processing triggers function module MATERIAL_MAINTAIN_DARK (e.g. MATERIAL_INPUT_MATMAS01 does); this function module uses a global variable FLAG_BAPI_CALL to indicate the non-dialog processing. So if you feel adventurous you could evaluate this flag in your coding.</li>
    </ul>
    Change pointer won't really do you any good if your functionality is already working without them apart from the trigger. Even if you write change pointers, you still have to implement the trigger functionality, so essentially back to square one...
    In general another good option is often to use workflow events that are already triggered. I.e. in your case business object BUS1001006 almost does the trick. It has events for <em>ViewCreated</em> and <em>Created</em>, but unfortunately lacks events for material updates (and I didn't see any other appropriate object that has it and a quick trace while updating a material didn't fire any appropriate event).
    Cheers, harald

  • Material Master create / change screen addition

    Hi
    I am trying to add purchasing order text screen to material master create / change Z T code. I added purchasing order text for screen sequence group through T code OMT3B. But when I check screen sequnce in TCode OMT3R - Change view of screen order, new screen is not apperaing.
    I did similar configuration in sandbox of my system, I am able to add screen in material master create / change t code.
    Is there any other settings need to be maintained to add this screen?
    Regards,
    Nilesh Sankpal

    Do the maintenance in OMT3E also.

  • Mass maintenance of Long Text in Material Master

    Hi,
    We require to do mass uploading of long text in Basic Data 1 view, Sales Text view, Purchase Order Text view for a particular material type.
    Is there any tcode to do the same?
    We tried creating BDC / LSMW for the same but it did not work.
    Since one of our division is going live shortly, we need to do master data upload urgently. No. of records are more.
    Hence pl. suggest what is to be done.
    Regards
    Ratna Palit

    Hi Ravi,
    Pl refer the part of coding in BDC given below, we are passing 5 text lines thro 5 diff cols. It is entering the line value and symultaneously replacing the content of previous line with that of current line.
    *perform bdc_field       using 'BDC_CURSOR'
                                 'RSTXT-TXLINE(02)'.
    *perform bdc_field       using 'BDC_OKCODE'
                                 '=EDNP'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(02)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=EDNP'.
    perform bdc_field       using 'RSTXT-TXLINE(02)'
                                  ITAB-TXLINE2.  "'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
                                "& "'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(03)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=EDNP'.
    perform bdc_field       using 'RSTXT-TXLINE(03)'
                                  ITAB-TXLINE3. "'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB'
                                "& 'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(04)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=EDNP'.
    perform bdc_field       using 'RSTXT-TXLINE(04)'
                                  ITAB-TXLINE4. "'CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC'
                                "& 'CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(05)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=EDNP'.
    perform bdc_field       using 'RSTXT-TXLINE(05)'
                                  ITAB-TXLINE5.  "'DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD'
                                "& 'DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(06)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TXVB'.
    perform bdc_field       using 'RSTXT-TXLINE(06)'
                                  ITAB-TXLINE6.  "'EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE'
                                "& 'EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE'.
    perform bdc_dynpro      using 'SAPLSTXX' '1100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RSTXT-TXLINE(07)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TXBA'.
    perform bdc_dynpro      using 'SAPLMGMM' '4300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    perform bdc_field       using 'MAKT-MAKTX'
                                  'test ztrd6'.
    *perform bdc_transaction using 'MM02'.
    PERFORM bdc_insert.
    CALL TRANSACTION 'MM01' USING bdcdata MODE 'N' UPDATE 'S'.
    Pl. help.
    Regards
    Ratna Palit

  • Uploading Basic Data Longtext into Material Master

    Hi Experts,
    While creating material master i need to upload Basic Data Long text into material master.
    For this iam using a BDC.How we can get this long text into sap systen and how we will update in material master.

    Hi,
    you can use the below function module instead of Save_text..
    BAPI_MATERIAL_SAVEDATA.
    in the above function module
        headdata-material = matnr.
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            headdata             = headdata   "contains materail number
          IMPORTING
            return               = return
          TABLES
            MATERIALLONGTEXT = t_longtext   "pass long text here
            returnmessages       = returnmessages.
    Prabhudas

  • Mass change of PO text in Material Master

    Hi,
    1) Need to find list of materials which has PO text maintained
    2) Need to mass change of the PO text view in material master record.
    Kindly help
    Vengat

    Hi,
    Thanks for your reply.
    However still I could not extract the materials that are maintained with PO Texts.
    In SE16n STXH or STXL to key in material number also we don't know, so how to find the list of materials(preferably for plant specific) that are maintained PO Texts?
    Regards,
    Vengat

  • Mass atp check on service orders (material available to promise)

    Dear experts,
    Do you know a functionality in SAP Standard to carry out a mass ATP check for service orders?
    I checked order list and components list, but there is no trigger for material availability check...
    Best regards,
    Philipp
    Edited by: Philipp Miller on Jan 19, 2011 10:20 AM

    Hi ,
         If your on ECC6.0  ,EHP3  , check Enhacement Spot BADI :ES_EAM_LIST_ENHANCEMENTS  in SE18 .. you can find required BADI
    BADI_EAM_RIAUFK20_FCODE_CUS1 :Implement Customer Function Code in Order List
    BADI_EAM_RIAUFK20_FCODE_SAP1 : Implement SAP Function Code in Order List
    In above BADIs .. you can include code to perform mass Avalilability check ..
    regrds
    pushpa

  • Mass update of huge list of Material master records

    Hi dudes,
    I want to update 1 field for the huge list of  material master record, i.e., statistics field in sales org 2 tab.
    please help
    regards,
    madhav

    SAP has designed its system to use the standard transaction way to update any fields, no direct table update should be made.
    I have seen so many direct table updates in my career, and what do you think why I have get knowledge about that?
    Because it was done incorrectly.
    There are that many dependcies in SAP, you never really know them all.
    People changed (or deleted entries) in one table, but forgot the update in a second dependend table.
    You should be a very experience consultant before you may consider direct table updates, and when you became an experience consultant, then you know that you will not do that.

  • Mass Upload of object dependency for characteristics value

    Hi ,
      I need to upload the object dependency for characteristics values through transaction CT04. My input data consists of characteristcs name , characteristics value and the object dependency (KNNAM) . Need to populate the KNNAM field alone .
    Have tried with the FM 'CTMV_CHARACT_CHANGE_KNOWL_VAL' which suits my requirement but teh dependencies are not getting uploaded . Am I missing anything ? Since I do not have class details i.e class num and class type I am not able to use  the BAPI like 'BAPI_CLASS_CHARVALUE_LOCAL_DEP ' . Please suggest any othe r suitable method .
    Thanks in advance.
    Sanjeev

    Hi,
    Please check the below link..
    BAPI for Characteristic Dependency
    Thanks.

  • LSMW Material Master - create several valution types within one Run

    Hello @ll,
    i created a LSMW for material master migration, and i would like to create up to 4 different accounting views (based on different valuation types) within one LSMW Run.
    As there is the Field BWTAR on Structure BMM00, and the accounting fields on Structure BMMH1 i dont know if:
    1. this is possible in general with LSMW and
    2. if possible where i have to set the "transfer_record" commands...
    Does anybody have experience on this?
    BR,
    Gregor H.

    I never used the standard batch input method, so I cant answer this part. But with IDOC as import method I do this right now and it works without any problem
    The transfer record command is set in the  section of processing time  __END_OF_RECORD__
    you can display this section when you are in field mapping and conversion rules. choose from menu Extras > Layout and activate all boxes.

  • Material Master Distribution Document

    Hi all,
    Please can any one giv me the document which can cover the whole material master distribution through ALE.it should include all concepts like classification, class and characteristics. transfers etc.
    message types CHRMAS, CLSMAS, BOMMAT, ECMMAS, CNPMAS etc
    Thanks a lot for your help in adv
    Reddy

    hi ,
    i hope you need to search SDN one bye one .
    use this link ..
    https://wiki.sdn.sap.com/wiki/display/ABAP/ALE%2CIDOC.
    ~linganna

  • Business Object Services- Attachment vs store business document

    Hi,
    There are two ways to add attachments to a Purchase requisition.
    1. as a generic attachment- (System --> services for object --> create attachment )
    2. as a business document ( System --> services for object -->store business doucment)
    Looks like in both the options, attachments could be stored on HTTP Content server.
    What are pros and cons of storing an attachment as a business doc?
    What are additional functions possible with option 2?
    Thanks ,
    Vinay

    Hi,
    Attachments are stored in binary format.
    Advantage of  storing in SAP is speedy access, than compared to content server.
    Disadvantage some of the table space grows exponently.
    Some of the tables attachments get stored are SO*
    To get the link for the folder and attachments stored in SRGBTBREL
    Various type of attachments are ATTA NOTE URL MSG etc.
    For custom attachment options can be enabled using class CL_GOS_MANAGER
    aRs
    If useful pl. assign points
    Message was edited by:
            a®

Maybe you are looking for

  • Unparseable Date when Provisioning User from OIM to EBS HR

    Hi expert, I'm integrating E-Business Application using 'Oracle EBS HR Foundation User Management Connector version 9.1.0.4.0 with OIM version 11.1.1.5.0 (plus BP06) and I also set value of 'Manage HR record' to 'Yes'. While provisioning user to EBS.

  • Missing Transaction Types

    Hi all, I have just made a new business role, and when using this business role I cant see any of the transaction types that we normally use. Tasks, Appointments, Opportunity and so on. When I look in the SPRO, I see them all, but how do I assign the

  • Running Hardware Test or Running Mac OS X from DVD with an older iMac

    I have a 4 year old iMac which is running Snow Leopard 10.6.2 and using a wired aluminum keyboard along with a Magic Mouse. I recently had some files corrupted so that when I booted up, the dock would not load and could not run any programs. It appea

  • How do I put music on new MP3 player please

    <FONT face=Garamond color=#cc0066 size=4>hello, received my new creative zen nano plus MP3 GB player today, looked forward to getting it before my holiday, it arri'ved, thought I would have Music on it by now but NO. <FONT color=#cc0066 size=4>For th

  • C5-00 can't update firmware

    My C5 is at 031.022. SW update says update available (5111 KB), selecting it and 'start update' I get a brief 'processing' for approx 10 seconds then it stops. I've tried *#0000# and options, check for updates but get server not responding. I've also