Update scheduling data in material master

Hi,
How to update scheduling data from Process order to master recipe in mass. As I can schedule recipe in C202 and update the sceduled data in material master by CA96 & CA97 transactions. But i wants to schedule master recipe in mass. Is there any way to mass update it ?
Regards
Amit

Hello
I have tested in my internal test systems and system correctly updated the material master using CA97, without aky kind of previous scheduling of the master recipe.
Can you please provide a more detailed description of the issue? What is happening if you try to run CA97 without running the scheduling of the mater recipe? How are you running CA97?
You may also try CA97N, which is a newer version of CA97.
BR
Caetano

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[].

  • Re: Populating Additional data in Material master record

    Hi,
    I am creating material master record using BAPI_MATERIAL_SAVE_DATA. I am using the below function modules to populate date in Additional Data Tab. I am getting the existing material details from BAPI_MATERIAL_GET_ALL and passing it to
    BAPI_MATERIAL_SAVE_DATA variables. I can create material successfully, but  "PROPORTION/PRODUCT UNIT"   TAB in Additional Data Tab is not populating.
    Program populates this data  for some materials and for some materials not.  For example,  when I try to create a new  material by copying  existing details from 1234 , New material will be created   with 12345(say), but "PROPORTION/PRODUCT UNIT"   TAB in Additional Data Tab is not populating.
    Now If I put a break point, to find out what could be the issue , and then press f6 ,  and re-execute program for the same material 1234, then my custom program can populates data.  I know its sound wiered, but I am not able to solve the issue.
        CALL FUNCTION 'VBWS_UOM_READ_WITH_MATNR'
          EXPORTING
            i_matnr         = it_mara-matnr
          TABLES
            e_meinh         = gt_meinh
            e_meinh_ws      = gt_meinh_ws
            e_meinh_ws_upd  = gt_meinh_ws_upd
            e_meinh_ws_updx = gt_meinh_ws_updx
            e_message       = gt_message
            e_return        = gt_return
          EXCEPTIONS
            error           = 1
            OTHERS          = 2.
        FREE: gt_message, gt_return.
        CLEAR : gt_meinh_ws_upd, gt_meinh_ws_updx.
        CALL FUNCTION 'VBWS_UOM_MAINTAIN_DARK'
          EXPORTING
            i_matnr               = lv_matnr
            i_kzwsm               = it_mara-kzwsm
            i_kzwsmx              = 'X'
            i_exit_by_first_error = 'X'
            i_user                = sy-uname
            i_buffer_refresh      = 'X'
            i_no_update           = ' '
          TABLES
            i_meinh_ws_upd        = gt_meinh_ws_upd[]
            i_meinh_ws_updx       = gt_meinh_ws_updx[]
            e_message             = gt_message
            e_return              = gt_return
          EXCEPTIONS
            error                 = 1
            OTHERS                = 2.
        LOOP AT gt_return WHERE type = 'S'.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        ENDLOOP.
    Any suggestions ...

    Hi Karthik,
    Thanks for your reply. It worked. But now I am facing strange issue. As you see my code above, i am using VBWS_UOM_MAINTAIN_DARK to update Addition data tab. however, the values of internaltable gt_meinh_ws_upd was not updated correctly inside the material master.
    For example, I am filling gt_meinh_ws_upd table with the below values
    gt_meinh_ws_upd-wsm = 'OZT'
    gt_meinh_ws_upd-atnam ' ZABCDE'
    gt_meinh_ws_upd-atwrt = 0.0023
    append gt_meinh_ws_upd.
    but when i see in material master,   gt_meinh_ws_upd-atwrt = 0.0023 is updated with 23, instead of 0.023. I debugged th func. module many times, I didnot come acroos the code what making it to 23.
    Any Idea karthik...
    Thanks in Advance

  • Work scheduling data of material  is not maintained

    Hi,,
    Work scheduling data of material SAREE is not maintained
        Message no. CO070
    Diagnosis
        You are trying to create a production order/process order for a material
        before the work scheduling data has been maintained.
    System Response
        The production order/process order has not been created.
    Procedure
        Maintain the data for material SAREE in the view for work scheduling in
        the material master.
    please kinldy help me to maintain this work scheduling data,. i cant find this in MM01.
    Thanks

    Hi,
    To maintain work scheduling view go to transaction code MM50 & then in selection fields select maintenance status as A (work scheduling, then enter plant no, material no & material type. After this execute this transaction.
    This will lead you to WS view, on work scheduling view maintain the details as needed.
    Hope this will resolve your problem.
    Best Regards,
    Avinash.

  • Classification data in Material master

    Hi
    Is there any FM to read classification data in material master from buffer. I know there is a FM CLAF_CLASSIFICATION_OF_OBJECTS to read, but this reads from database tables. I want to know the FM, which would read this from buffer.
    Thanks
    Karthik

    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[].

  • Palletization data in material master??

    Hi All,
    I have maintained the palletization data in material master as given below
    LE quantity     Un     SUT
    2500               pc     E1
    200                 pc     L4
    100                 pc     L3
    Now when I have 201 pcs and above system picks SUT E1 and when I have 101 pcs and above system picks SUT L4. This is working fine.
    But when I have 100 pcs and less the system does not pick SUT L3 as required. It still picks L4.
    Is this standard or are we missing something here?
    Regards,
    V S

    Hi,
    Please check in IMG if  the storage unit  type L3 is definited in the Storage Type under Strategies-->Activate Storage Bin Type Search.
    Also you can use the User Exit MWMTO007 "Palletization and storage type search for stock placement" to define your palletization data.
    Regards

  • How can we update insp. type in material master on mass basis.

    Hi Team,
    We are using LSMW for material master. I was told that we can not update inspection type  through LSMW. Is it possible thru LSMW if not, how can we update insp. type in material master on mass basis.
    Is there any T-Code to update mass chages for inspection type in material.
    Please suggest.
    Thanks

    Hi,
    You can use  TCode -QA08.
    This Tcode have facility to Inspection Type activation in single  / mass material.
    Also useful for deactivation, special setting at Inspection Type level.
    Regards,
    JM

  • Program to update info record with material master data

    I am trying to determine if there is a standard SAP program that can be run as a batch file  to update the fields in the info record with the same fields that are in the material master?  ie:  Planned delivery time, Tolerance, purchasing group etc.

    Hi,
    There is no standard report or transaction that can do this.
    The data from these fields in the material master is brought in as a default to the info record when it is created. beyond this point the Info record is treated as being the correct data regardless of what happens to the material master data and so no updates occur in the standard system.
    It would not be difficult to build an LSMW job to copy the data from the material master to the info records and this would be the recommendation if you want to do this.
    Steve B

  • Updating Scheduling data for Purchase Order

    Hi,
    I need a function module which can update the scheduling data for purchase order in EKET table. Normally we create Purchase Order as a reference from purchase requisition through BAPI_PO_CREATE1. That time it takes care of all the scenarios. But as per the requirement I want to create a PO which is created from more than one Purchase Requistions so I can't use the said BAPI. But still I am using this BAPI and after creation is completed I am updating the Requistions. The same scenario is taken care in ME59N, but I can't copy that code because of some requirements. So could any one please give me the idea to replicate the same functionality with any function module or other ways.
    Thanks
    Somnath paul

    try to pass all u sheduling related fields to POSCHEDULE and make sure u have enabled POSCHEDULEX along with sheduling related fields .....also (if no changes  are there  leave it with space )...
    this will definetly update not only eket table ....it will update every table regarding to purchase order,ekpo,ekko,eket ...etc
    Example of population of BAPI interface in the Function
    Parameter: POHEADER
    COMP_CODE            =                    1000
    DOC_TYPE             =                    NB
    ITEM_INTVL           =                    00001
    VENDOR               =                    0000001000
    PMNTTRMS             =                     0001
    PURCH_ORG            =                     1000
    PUR_GROUP            =                     001
    CURRENCY             =                     EUR
    Parameter: POHEADERX
    COMP_CODE            =                     X
    DOC_TYPE             =                     X
    ITEM_INTVL           =                     X
    VENDOR               =                     X
    PMNTTRMS             =                     X
    PURCH_ORG            =                     X
    PUR_GROUP            =                     X
    Parameter: POITEM
    PO_ITEM              =                     00001
    MATERIAL             =                    100-100
    PLANT                =                    1000
    STGE_LOC             =                    0001
    QUANTITY             =                    15.000
    TAX_CODE             =                    V0
    ITEM_CAT             =                     0
    ACCTASSCAT           =                    K
      Parameter: POITEMX
      PO_ITEM              =                    00001
      MATERIAL             =                    X
      PLANT                =                    X
      STGE_LOC             =                    X
      QUANTITY             =                    X
      TAX_CODE             =                    X
      ITEM_CAT             =                    X
      ACCTASSCAT           =                    X
      Parameter: POSCHEDULE
      PO_ITEM              =                    00001
      SCHED_LINE           =                    0001
      DELIVERY_DATE        =                    02.12.2002
      QUANTITY             =                    6.000
      PO_ITEM              =                    00001
      SCHED_LINE           =                    0002
      DELIVERY_DATE        =                    03.12.2002
      QUANTITY             =                    5.000
      PO_ITEM              =                    00001
      SCHED_LINE           =                    0003
      DELIVERY_DATE        =                    04.12.2002
      QUANTITY             =                    4.000
      Parameter: POSCHEDULEX
      PO_ITEM              =                    00001
      SCHED_LINE           =                    0001
      PO_ITEMX             =                    X
      SCHED_LINEX          =                    X
      DELIVERY_DATE        =                    X
      QUANTITY             =                    X
      PO_ITEM              =                    00001
      SCHED_LINE           =                    0002
    Parameter: POACCOUNT
    PO_ITEM              =                    00001
    SERIAL_NO            =                    01
    QUANTITY             =                    15.000
    GL_ACCOUNT           =                    0000400000
    COSTCENTER           =                    0000001000
    CO_AREA              =                    1000
    Parameter: POACCOUNTX
    PO_ITEM              =                    00001
    SERIAL_NO            =                    01
    QUANTITY             =                    X
    GL_ACCOUNT           =                    X
    COSTCENTER           =                    X
    CO_AREA              =                    X
    Parameter: POCOND
    ITM_NUMBER           =                    000001
    COND_ST_NO           =                    001
    COND_TYPE            =                    PB00
    COND_VALUE           =                    79.900000000
    CURRENCY             =                    EUR
    CURRENCY_ISO         =                    EUR
    COND_UNIT            =                    KG
    COND_P_UNT           =                    1
    CHANGE_ID            =                    U
    Parameter: POCONDX
    ITM_NUMBER           =                    000001
    COND_ST_NO           =                    000
    ITM_NUMBERX          =                    X
    COND_TYPE            =                    X
    COND_VALUE           =                    X
    CURRENCY             =                    X
    CHANGE_ID            =                    X
    Parameter: POPARTNER
    PARTNERDESC          =                    OA
    LANGU                =                    EN
    BUSPARTNO            =                    0000001100
    PARTNERDESC          =                    GS
    LANGU                =                    EN
    BUSPARTNO            =                    0000001200
    PARTNERDESC          =                    PI
    LANGU                =                    EN
    BUSPARTNO            =                    0000001000
    reward points if helpful....

  • Costing error while change mrp data in material master

    Hi dears,
    This is Rem process. when i try to change the material master MRP data ex. ( mrp type M1 to M0)
    system not allow to change and show the error as
    Product cost collector 000000750122 is still active (assigned to PrCtr 50601-025)
    i need to change the mrp data in mm02 and i donot want to do delete the pcc .
    any process to carryover
    thanks
    Edited by: raj on May 24, 2010 12:22 PM

    Hi,
    MRP is mainly configured for a material so that tere would not be any need for manual checking of the stock so as to create a PR. 
    The parameters which you have specified for a particular material like reorder point and lot size will help in planning for a particular material.
    If you need only Qty of two (Less) then  there s no need of configuring a MRP for that material
    And lot size is also decided basing on certain other factors like
    1) Lead time
    2) Transportation costs involved in procuring the material etc
    So ifyou want to generate PR for a qty of 100 then you need ot change the lot size
    I hope this gives you clarity
    Thanks & Regards
    Pavan

  • Update of Price in Material Master  when standard costing is released.

    Hello SAP gurus,
    When we created standard cost estimate, various cost estimate is created in various views Cost of good sold, cost of good manufactured and Inventory ( commercial ). Different view have different cost estimate.
    But we I release costing , the material master is updated by cost estimate of Inventory ( commercial). The cost estimate from Cost of good manufactured should be update?
    I am not able to solve the above issue , please help with customizing link
    Regards,
    Anand Agrawal

    Hi Anand,
    While you configure the Cost Componenet structure you define the attributes of cost Components in OKTZ.
    When defining the cost components, you must specify whether the cost component plays a role in the creation of the different prices that are transferred into the material master record. You have the following options:
    Standard price
    Costs that are flagged as relevant for stock valuation form part of the standard price if the results of the standard cost estimate are marked and released. These costs also serve as a basis for the following:
    The calculation of target costs in variance calculation
    The valuation of scrap in variance calculation
    The valuation of work in process for the confirmed yield for the operation (order-related production, process manufacturing) or at the reporting point (repetitive manufacturing)
    Commercial price
    Costs that are flagged as relevant for inventory valulation for the purposes of commercial law form part of the commercial price. This price is calculated in an inventory cost estimate and can be written to the material master record.
    Tax price
    Costs that are flagged as relevant for inventory valuation for the purposes of tax law form part of the tax price. This price is calculated in an inventory cost estimate and written to the material master record.
    The above information will prove helpful.
    Regards,
    amol

  • Default values set  for Tax data in material master

    Hi
    Can anyone tell me how to set default values for  TAx dat in sales view  while creating material master.
    so that it automatically take  values while creating material master.
    Regards
    Vijay Shukla

    Mary and Vijay,
    I probably understood your question wrong.
    I was somehow assuming you were referring to classification data.. Sorry abt that.
    The tax data gets populated automatically while creating the material master.
    Th key lies in configuration..  You would have to use Tcodes OVK1, OVK4 to define the material and the tax categories by country
    The tax data is populated by the assignment that you make in OVX6.. I believe.. assigning plants t Sales org. Th country code defined in the plant OX10 is used to determine the tax data and once you customize this part.. You should start seeing the tax data populate when you use that sales org while creating MM
    Hope this answers your query.
    Edited by: Pavan Kumar on May 2, 2008 8:10 AM

  • Update Termination while creating Material Master MM01

    Hello,
    While creating the Material Master system is throwing the error Update was Terminated.
    Before that we have client copied.
    Can anybody throw some light??
    Regards,
    Kumar Rayudu

    Hi,
    Check the material number ranges are copied ?
    in SPRO>LOGISTICS GENERAL>MAT.MASTER>BASIC SETTING>NUMBER RANGES FOR MAETRIAL TYPES
    BR
    Diwakar

  • Excise data in material master (India)

    We are upgrading from 4.6C to ECC6.0
    I have added the 'Excise data' subscreen in Material master 'Foreign trade IMport' and 'Foreign Trade Export' tab. But facing the following problem. please help.
    There are two buttons called 'More' and 'PreVals' in that subscreen. If I click either of them, it gives an error message as below
    "Record 21 MORE does not exist in table T133E
    Message no. M3748"
    and
    "Record 21 J1PR does not exist in table T133E
    Message no. M3748"
    What is wrong ? How to go about it ?

    Hello ,
    Yes this   is absolutely possible .
    Excise data is maintained at plant level , hence the foreign trade import view will be maintained only at the "Indian plant " level .
    Secondly , The valuation level in your case shud be plant. This will take care of all the valuations .
    Regards
    Anis

  • Uploadind consumption data to material master

    Hi Gurus,
    Is there a program to load previous consumption data for a material into the material master as part of data migration, so that it could be used later for forecasting etc.
    Thanks,
    M2202

    Hello,
    Refer the OSS Note: 200547.
    Clear instructions on how to use the OSS Note and the report MVER_DI is given in this..
    Regards,
    Siva

Maybe you are looking for