Transfer of Material BOM

Hi Experts,
I want to write an ABAP-Program to transfer Material BOM (with Classification) from a Client XXX to Client YYY (Mandant) with ALE.
I found the function MASTER_IDOC_CREATE_BOMMAT (or MASTER_IDOC_CREATE_BOMMAT_PLUS). How can I use it ? What's the difference between ALE and PDR ?
Thanks for Support.
Regards,
David

Use BOMMAT04 idoc to transfer data from one client to other client without writing any program.
You just need to make the ALE configuration required for this.
step1
Create logical two systems in which one for sender and the other for reciever
Step2
Assign logical systems to the client.
Step3
Create Port for receiver in txn WE21
Create Distribution model using txn BD64, where you need to mention the sender LS and receiver LS after  that click on add message type and mention the idoc type BOMMAT04 and message type BOMMAT
Step4
Create the partner profile in the txn WE20 and add the outbound idoc as BOMMAT and also mention the other requirements like message type and port.
Step5
after these go to txn BD30 and mention the BOM you want to send and press F8
Reward me points if you find it useful
Thanks,
Prasanna

Similar Messages

  • How to convert WBS bom to material BOM in PP-ps scenario

    Hi experts
    i am working on PP -PS scenario  anyone can suggest how to convert wbs bom to material BOM as well  as what are the further steps related to project mrp as well as project planning
    your valuable reply is really appreciated
    with regards
    shaik

    Hi,
    In additional to the above u can choose the BOM usage as 3- Universal.
    And then transfer WBS BOM using CN33.
    Regards
    JB

  • Intercompany transfer for material with item category Erla

    Hi,
    I have a typical requirement.
    I am creating a value pack(finish good) with item category mainatined as ERLA(while mat master creation) which consistes of 2 items.
    I have maintained a BOM for this value pack(finished material).
    Since ERLA is maintained,I can explode BOM in Sales Order creation(correct me if I am wrong)
    This is okay for sales cycle.
    I have following requirement
    I want to do a Intecompany stock transfer of this value pack(i.e. finish good) with doc type NB.
    The problem in this is that it gives error while creating outbound delivery stating some entries missing in table (do not exactly remember)for NLCC/DOGN.. something like that.
    If anyone has done this type of scenario earlier then request you to send me the configuration settings required to be done in terms of Item category/Delievry combination etc etc .
    This is quite urgent for me.
    If there is any different way to map this Intecompany Stock Transfer of Material (with Item category maintained as ERLA) then please let me know.
    Thanks in advance.
    Regards,
    manOO

    Hi
    You maintain "Item category group" NORM in the Sales org 2 tab, this is used for sales organisation and distribution channel for Outboumd delivery.
    The "General Item category group" does not refer to the Sales organisation and distribution channel, this is used for Inbound delivery.
    In can create the material master in MM01, specify the "Material type" and "Industry sector" .
    For, Item category determination in VOV4, you need to assign like this as below,
    Sales doc type + Item category group + usage + Item category of higher level item = Item category.
    Item category determination for free item,
    OR + NORM + FREE + TAN = TANN.
    As beacuse you are giving the normal material as free, therefore you must give the indication to the system to use it as free material by specifying the usage as "FREE".

  • The system could not determine any material BOMs

    Hello All,
    I am testing the Preference Processing scenario.
    I have a BOM available in Feeder system which gets exploded in Sales Order. The preference indicators and every BOM material is already transferred to GTS system
    When I am transferring the Initially BOM then system gives the message that "System could not determine any material BOMs."
    The main material already has been flagged for Configurable material.
    If I use the transaction /SAPSLL/KMATWLR3_03 (Display worklist of Configurable Material), I am able to see the sales order but when I select the line item and press the push button to transfer the BOM to GTS system gives message that Error in BOM Explosion
    Please help me to resolve the issue
    Thanks & Regards
    Rahul

    Hello Dave,
    I have maintained the BOM Usage 3 and 5 for Global, Country and Plant level.
    The table entries are displayed as below
    But still I am getting the same error while transferring the BOM

  • How to change the header of Material BOM in a program for alternative BOM ?

    Requirement: An Inbound IDOC creates /change/delete Alternative Material BOM. The Alternative Material BOM can have alternative values from 1 to 99.
    ISSUE: I am good with CREATE and DELETE BOM. The issue is with CHANGE of header Material BOM. The fields which we need to change in the header is the base quantity, BOM status, Lot Size from and Lot Size to. Please note that I am able to change the item details of the BOM with FM CSAI_BOM_MAINTAIN. I find no FM /BAPI which would change the header of a material BOM.
    Please NOTE that I am using BAPI_MATERIAL_BOM_GROUP_CREATE to create alternative Material BOM. This has a parameter in TABLES called "VARIANTS" which has a field CS_FUNCTION which can have value from NEW/CHG/DEL .Also ,there is another parameter in TABLES called "ITEMASSIGNMENTS" which has a field CS_FUNCTION which can have value from NEW/CHG/DEL which implies this FM will allow us to change the BOM. But this does not work when I use it for CHANGE scenario with CHG value. I debugged this BAPI and observed it requires a STNLR(Bill of Material) value . This field is not there in any of the structure. I am not sure if I am passing the right parameters to it.
    Let me know if the parameters are passed correctly for CHANGE scenario.
    Also let me know if there is any other way(FM/BAPI)  to update the Header of the Material BOM ?
    Here is the code I am using:
    *& Report  ZTEST_S_E
    REPORT  ZTEST_S_E.
    * This code will create a material BoM for the material
    * MAINMATERIAL with the components COMPON1 and COMPON2.
    * Data Declaration
    DATA:
    it_bomgroup LIKE bapi1080_bgr_c OCCURS 0 WITH HEADER LINE,
    it_variants LIKE bapi1080_bom_c OCCURS 0 WITH HEADER LINE,
    it_items LIKE bapi1080_itm_c OCCURS 0 WITH HEADER LINE,
    it_matrel LIKE bapi1080_mbm_c OCCURS 0 WITH HEADER LINE,
    it_itemas LIKE bapi1080_rel_itm_bom_c OCCURS 0 WITH HEADER LINE,
    it_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    * Fill the data
    * Material BoM Group Header Data
    CLEAR it_bomgroup.
    it_bomgroup-bom_group_identification = 'BAPI_SMP_COL1'.
    it_bomgroup-object_type = 'BOM'.
    it_bomgroup-object_id = 'SIMPLE1'.
    it_bomgroup-bom_usage = '1'. " YOU COULD CHANGE THE BOM USAGE TO YOUR
    *NEEDS
    it_bomgroup-ltxt_lang = sy-langu.
    it_bomgroup-technical_type = ' '.
    it_bomgroup-bom_text = 'Simple BoM - FM'.
    APPEND it_bomgroup.
    * Header Details of the different variants
    CLEAR it_variants.
    it_variants-CHANGE_NO  = '500000000349'.
    it_variants-bom_group_identification = 'BAPI_SMP_COL1'.
    it_variants-object_type = 'BOM'.
    it_variants-object_id = 'SIMPLE1'.
    it_variants-alternative_bom = '01'.
    it_variants-bom_status = '01'.
    it_variants-base_qty = '2.000'.
    it_variants-valid_from_date = sy-datum.
    it_variants-function = 'CHG'.
    APPEND it_variants.
    * Details of the items of the variants
    CLEAR it_items.
    it_items-bom_group_identification = 'BAPI_SMP_COL1'.
    it_items-object_type = 'ITM'.
    it_items-object_id = 'SIMPLE1'.
    it_items-item_no = '0010'.
    it_items-item_cat = 'L'.
    it_items-component = '030790490'.
    it_items-comp_qty = '2'.
    it_items-valid_from_date = sy-datum.
    APPEND it_items.
    CLEAR it_items.
    it_items-bom_group_identification = 'BAPI_SMP_COL1'.
    it_items-object_type = 'ITM'.
    it_items-object_id = 'SIMPLE1'.
    it_itemas-change_no = '500000000138'.
    it_items-item_no = '0020'.
    it_items-item_cat = 'L'.
    it_items-component = '030790490'.
    it_items-comp_qty = '3'.
    it_items-valid_from_date = sy-datum.
    APPEND it_items.
    * Details of the materials of the different variants
    CLEAR it_matrel.
    it_matrel-bom_group_identification = 'BAPI_SMP_COL1'.
    it_matrel-material = '030790490'.
    it_matrel-bom_usage = '1'.
    it_matrel-alternative_bom = '01'.
    APPEND it_matrel.
    * Linking items to the corresponding variants
    CLEAR it_itemas.
    it_itemas-bom_group_identification = 'BAPI_SMP_COL1'.
    it_itemas-sub_object_type = 'ITM'.
    it_itemas-sub_object_id = 'SIMPLE1'.
    it_itemas-super_object_type = 'BOM'.
    it_itemas-super_object_id = 'SIMPLE1'.
    it_itemas-valid_from_date = sy-datum.
    it_itemas-function = 'CHG'.
    APPEND it_itemas.
    * Create variants
    CALL FUNCTION 'BAPI_MATERIAL_BOM_GROUP_CREATE'
    EXPORTING
    all_error = 'X'
    TABLES
    bomgroup = it_bomgroup
    variants = it_variants
    items = it_items
    materialrelations = it_matrel
    itemassignments = it_itemas
    return = it_return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    LOOP AT it_return.
    WRITE:/ it_return-type, it_return-id, it_return-number,
    it_return-message.
    ENDLOOP.
    Let me know if the parameters are passed correctly for CHANGE scenario.
    Also let me know if there is any other way(FM/BAPI)  to update the Header of the Material BOM ?

    Try doing something like this:
    class MyJTextArea extends JTextArea {
        public boolean keyDown(Event evt,int key) {
            if(key == 13 || key == 10) { // or whatever ascii codes enter may have
                // move carret to next line
            } else {
                super.keyDown(evt, key);
    }which means you have got to catch the enter-key before the actutal JTextArea does this.
    p.s. look at my post, maybe you can help me, too.
    http://forum.java.sun.com/thread.jsp?forum=5&thread=465803&tstart=0&trange=100

  • Creation of Material BOM

    Hi All,
    I need to create a material BOM ,as in Transaction CS01, without any components.
    Which function modules should i be using..
    I have tried using CSAI_BOM_MAINTAIN and CSAP_MAT_BOM_CREATE but not with too much success
    Thanks
    Aviroop

    Hi,
    thanks for all your inputs. My requirement has somewhat changed over the last 24 hrs. What it stands as of now is that for a material and a plant there exists a bom (with items and sub-items).
    I have to retrieve this data and create a new BOM for a different plant.
    The first step would be to retrieve all the BOM data from STKO STPO and STPU. Is there any FM that would retrieve all these data
    What FM would i then use to create a new BOM
    Thanks
    Aviroop

  • Creating material bom with reference to Sales order bom.

    How to create material bom by coping Sales order bom.?

    Mayur,
    Just go to T code: CS01 use BOm  usage 1 & then select the copy from icon in the menu bar.
    On the popup screen enter material no, plat , bom usage =5 (sales bom).
    System will then allow you to select items from Sales bom. Select the items you need copied to Material BOM. Then save.
    Hope this helps.
    Thanks,
    Ram

  • Initial Transfer of Material Master to GTS

    Currently we are looking to transfer material master records(Initial) specific to only few plants as the GTS implementation is with respective to only a specific country. We have about 250,000 material master records from this plant but the MARA table in the feeder which stretches across multiple countries has a count of 4 Million.
    We intend to develop an enhancement around the user exit SAPLSLL_LEG_PRR3_002 to support this requirement.
    Is there a way to transfer this data without an enhancement only restricting to specific plants? My understanding is this would be an issue which is  common to implementation teamsas usually only one or few countries go live on GTS per release.

    Hi,
    You will have to code this filtering logic in the user exit that you had mentioned. There is no standard delivered solution for this.
    Btw, when you say you are going to use initial transfer option any other specific reason for looking into filter logic?
    Selection screen of initial transfer has material number as input. Why not download ur 250000 product and transfer those in chunks. Just a QN.
    But filtering material transfer is possible with enhancement.
    Regards
    Dhilipan

  • Transfer of material to material with excise duties

    Hi,
      We are importing material and as per std. procedure while invoice we are passing the duties we we have paid while purchasing of material.
       Now we have  one requirement that  we have two material code  ABC which is old code   and XYZ is new code , we want to transfer the material ABC to XYZ  in the same company code in the same plant  in this case what procedure we have to follow to transfer the excise details of materila ABC to XYZ so that while salling material ABC  with materila code XYZ we can pass the duty which we have paid on materila ABC.
    regards,
    zafar

    Hi,
      I have maiatin the G/L account for DIEX while saving the document i am getting error in J1IH with other adjusment as
    'GL account has not been assigned for RG23AECS in customization
    Where to define this in logistic general / tax on goods movemnet - india - accoujt determination n- specify excise accounts per excise transaction type i have not found '  RG23AECS 
    how to solce this error   will plz give the steps for J1IH  how  pass JV for old and new materuial.
    regards,
      zafar

  • Transfer of material from sales order stock to subcontractor

    Iam having subcontracting operation in routing. But i am not able to transfer of material from sales order stock to subcontractor when i do 541 movement

    Dear Mayuresh,
    You cannot move Sales Order assigned material directly to Sub contracting Vendor stock.
    For doing so firstly unassign the Sales order stock by transaction MB1B & movement type 411E.
    After this you can provide the stock to the vendor by transaction MB1B & movement type 541O.
    Other way is to create account assigned Purchase Orders. Thereafter create virtual sub contractor storage location in your plant. Transfer your Sales Order assigned material to these Virtual locations so that you can see the stock provided to the vendor. Now during Goods Receipt of the finished goods you can consume the material by movement type 543E.
    Regards,
    Subha.

  • Material BOM mass change error

    Hi gurus,
    When doing mass change of BOM via tcode CS20, i'm getting below error result.
    The following messages were displayed:                                                                               
    Material BOM 00016478 : Delete Item(s)
       19760                                  STM-220-(20UP)78DZ*C06U029(XC06U029)Sn 200
       0130 L 01/01/2002 12/31/9999              1.00  PC     >               1.00  PC
       No batch input data for screen SAPLSDDT 0010
       Folder created/extended
    I wonder what does "No batch input data for screen SAPLSDDT 0010" mean? what should i do to correct this?
    I also noticed that all items on the picklist were grayed out though i can still click on the checkbox button to select the items that I want to be deleted.
    Has anyone encountered this problem? I usually use CS20 during BOM mass change and haven't encountered this kind of problem.
    Hope to hear advise from you all on how to deal with this.
    Thanks and regards,
    Chad

    Dear,
    Error message no is 00344 ?
    Please refer the OSS note  Note 493096 - CS20: No batch input data for screen SAPLCSDI and   Note 180686 - For CS20
    Regards,
    R.Brahmankar

  • Material BOMs with document items using RCSBI010

    Has anyone uploaded material BOMs with document items using RCSBI010?  I set the item category to D, but receive an error in LSMW when I attempt to convert the data.  The error specifies that the document items are not valid material numbers.  They are not material numbers.  They are document info records.

    Found the problem. The document number was being mapped to BOM Component IDNRK instead of document number DOKNR.

  • PLM WEB UI - Personal Object Worklist for Material BOMs dumps in Portal

    We installed business package for PLM WEB User interface and we start playiong around with the POWL functionality. For some reason teh system ends in an error calling ....../sap/bc/webdynpro/PLMU/wda_wcc_myobj/
    This is section Personal Object Worklist for Material BOMs within Material BOMS
    Below is what I get
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Error when processing your request
    What has happened?
    The URL ......../sap/bc/webdynpro/PLMU/wda_wcc_myobj/ was not called due to an error.
    Note
    The following error text was processed in the system ... : The ASSERT condition was violated.
    The error occurred on the application server sapdl1_DL1_00 and in the work process 2 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: /PLMB/IF_SPI_METADATA_BASE~GET_NODE_DEFINITION of program /PLMB/CL_SEA_SELOPT_MP========CP
    Method: GET_NODE_DEFINITION of program /PLMB/CL_SPI_METADATA=========CP
    Method: GET_INSTANCE of program /PLMB/CL_SPI_METADATA=========CP
    Method: GET_PROVIDERS of program /PLMB/CL_SPI_FACTORY==========CP
    Method: CONSTRUCTOR of program /PLMB/CL_SPI_CONNECTOR========CP
    Method: GET_SEA_CONFIG of program /PLMU/CL_WCC_PWL_FEEDER_ABS===CP
    Method: CREATEPOWLDEF of program /PLMU/CL_WCC_PWL_FEEDER_ABS===CP
    Method: IF_POWL_FEEDER~GET_SEL_CRITERIA of program CL_POWL_EASY_FEEDER===========CP
    Method: IF_POWL_FEEDER~GET_SEL_CRITERIA of program /PLMU/CL_WCC_PWL_FEEDER_ABS===CP
    Method: GET_UPDATED_SELCRIT of program CL_POWL_UTIL==================CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system ... in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server sapdl1_DL1_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 2 in transaction ST11 on the application server sapdl1_DL1_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 020 -u: AXH7220 -l: E -s: DL1 -i: sapdl1_DL1_00 -w: 2 -d: 20100603 -t: 060408 -v: RABAX_STATE -e: ASSERTION_FAILED
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    However , if I run this service as a standalone URL I get a screen where I can fill in an application, business object and/or system. If I select one, it works perfectly
    What step do I miss?
    Thanks for any input on this
    kind regards
    Angelique Heutinck
    IFF

    Hi,
    I would reconmend to open an OSS message about this error.
    Martin

  • Material BOM explosion in Service Order components

    Hi experts,
    I created a Material BOM with transaction code CS01.
    Then I try to add this BOM in the component of a service order.
    What I expected is the BOM to be exploded in the service order. But this behaviour doesn't occur.
    Do you know what I can do to trigger a Material BOM explosion at service order level.
    By the way, the BOM is not exploded after the service order (in the reservation or in MIGO).
    Thank you for your help.

    Hi Özgen,
    Thank you for help.
    Special Procurement 50 didn't exist in my system.
    I created it in SPRO for the plant with the Procurement Type F (External Procurement) and the flag Phantom Item checked..
    Then I created
    - Material A (MM01)
    - Material BOM A (CS01) with:
    -- item 1 Material B (which has Spec Proc Type 50 in MM02-MRP2)
    -- item 2 Material C (which has Spec Proc Type 50 in MM02-MRP2)
    After that I created a Service Order (IW31)
    I put Material A in the Component tab with quantity 1.
    The BOM remains unexploded.
    Did I miss something?

  • BOM - Standard report to view the material - BOM relationship

    Hi
    Our client has a requirement to view the material - BOM relationship. The input will be the material and the report should display all the levels above the material. Say for example if the material is in level 5, it should display the BOM strucutre from level 0 to level 5. If the same material is in various levels, the structure should map from level 0 to the lowest level of the material.
    Is there any standard report/function available for the above requirement.?

    Hello Venkatachalam
    As eariler related to BOM level wise you posted a quiery on SDN ....
    I having Similar quiery  as per yours......  I need your help.
    Is it possible for you to  make a telephonic conversation so i may provide you proper details .
    With Regards
    DhruvOM
    Phone number :-+919765032999

Maybe you are looking for

  • WebDav using https fails with network name cannot be found.

    When I attempt to connect to a Webdav server from a Windows 8.1 box it fails with System Error 67 has occurred. The network name cannot be found. I am using the net.exe USE command with the following syntax: net.exe use Z: https://dav.DomainYaya.com/

  • Using Spring beans from EJB MDB

    I have a situation where I need to use spring beans from an EJB 3.0 MDB. The project does not have any webapps or anything, it will be only a MessageBean facade that needs to call spring beans. It is meant to be a service, that can be called by usign

  • IPhone App Crystal Reports Parameters

    Hi, Is there a way to publish Crystal Reports with parameters on the iPhone App.  I can only publish reports with no parameters.  If I try to publish one with parameters, it fails to display. thanks,

  • Does the serial number stay the same for CS6 downloads on seperate computers?

    I am going to download my CS6 onto a second computer (redeem by second download) and I was just curious if my serial number will be the same since its the same product or if I need to redeem another one. How do I go about doing that?

  • The Server Core installation option is recommended for servers running Hyper-V

    Hi, I installed Hyper-V Server 2008 R2 on my machine and upon running BPA it says that  The Server Core installation option is recommended for servers running Hyper-V I don't understand what it meant by re-installing hyper-v core instead of the full