Material master Upload with LSMW

Hi
When I make Material master Upload with LSMW, I could not find any entry in planning file.
Please explain.

Mayuresh,
Not all LSMW transactions properly update Planning file.
You can run transaction MDAB to set up planning file in Background
You can run transaction MDRE to detect and correct Planning file inconsistancies in Background.
It is probably a good idea to run these jobs periodically, say, weekly, in most production environments.
Regards,
DB49

Similar Messages

  • What is the standard program for Material Master upload using LSMW

    Dear All
    I am trying to use the MM upload using DATMIG_INF4. I want to know what are the different standard projects that are used for Material master upload.

    Hi Amol,
    You can load the material master using direct input method  in LSMW ,details of which are as follows:
    Object               0020   Material master
    Method               0000                 
    Program name         RMDATIND             
    Program type         D   Direct input    
    Please revert back in case of any doubt.
    Cheers
    VJ

  • Problems in Material Master Upload by LSMW

    Dear Experts,
    The question was asked to me in interview, What Problems you face while uploading your material master data by LSMW ?
    Please give me some information on this question.
    Thanks in Advance

    hi,
    Check the link it would be usefull:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/c5/213c487a3c11d3bc8100105a6588b2/frameset.htm
    Hope it helps...
    Regards
    Priyanka.P

  • Help reqd on Material Master uploading in LSMW by view steps....

    Hi all....
    Pls understand my requirement and post ur replies...i dont need the basic LSMW learning steps for MM,Vendor etc.,like that...
    My problem is...im want to upload my material master datas by steps like 1st i want to uplaod the basic views 1&2 for all the material types in one shot...
    next thing i want to load the other views like purchasing sales mrp plant qm accounting etc., in single shot......like screen to be extended formats....im mm01 or by mm02...
    when i did....no problem i've  faced upto MRP loading...but the next view like plan,QM,accounting is not coming when recording in RUN batch input session..it says..."the material has been already extended and no input was given for this screen"....
    Hope u understand,my problem....
    if u have answers...pls post me on urgent basis.....
    thanks...
    sankar

    Create purchase requisition by LSMW

  • Problem in material master upload using LSMW

    Dear All
    I am trying to upload material master using LSMW (batch input recording).
    I am facing problem while doing 14 step (Run Batch Input Session). When i'm running the batch input session, on the Create Material (Initial Screen), system picks values for material code, industry sector & material type but gives error message "select at least one view". system is not allowing me select the views which i selected while recording. system allows me to select all the view which i don't want.
    why system is asking me to select the views and also how to select the required view?
    thanks
    manoj gupta

    thanks charu
    do i need to do complete LSMW steps fpr all the view separately? if i do LSMW for basic view1, for other view do i need to go for change TCode or create T Code?
    thanks
    manoj gupta

  • Material master upload with Parallel currency

    Hi,
    I have done a good research on this forum to solve my issue. Could not find any and hence starting a new post. Hope to find a solution. Helpful answers will be rewarded.
    Our company is using Parallel Currency (Hard Currency).
    Whenever a material is created, the Hard currency is calculated automatically in Accounting 1 view
    My query is:
    While uploading the material master using RMDATIND, is there any way we can overwrite the Hard currency? I could not find any suitable fields to fill this value.
    Alternatively i am thinking of using BDC on MM02 to change the Price unit and BDC on MR21 to change the standard price of the hard currency. Which seems very cumbersome.
    Any good solution will be appreciated.
    thanks in advance.

    hi thr...
    i tried searching ur query and founf this material
    www.ficoexpertonline.com/search.cfm?session=&q=variances&fco=yes&page=2
    letsc if it helps...
    do reward and get bak if need any other help...

  • Material Master Upload though LSMW - How to add new custom segments to LSMW

    Hi,
    I have an existing LSMW to create material master idocs (ZMATMAS) from legacy file. Now I need to add new custom segment under E1MARCM, for example say ZMARC1 which will have 2 new custom fields.
    1. I created the segment through WE31 and released it.
    2. I created an extension to ZMATMAS using WE30 and released it.
    Now Im trying to change the LSMW so that I will have the new segment ZMARC1 under E1MARCM so that I can do the field mappings. But I am not able to get it done. i.e. I dont know what should I do so that I can get the new segment in LSMW.
    I tried giving the extension in the first step of LSMW. i.e. Maintain Object Attributes but its not allowing me to give an extension. Do I need to add to the basic type ZMATMAS05 and release it to get it reflected in LSMW.
    Please give your suggestions.
    Thanks a lot in advance.

    Hi
    U can not add u r 'Z' program in Maintian attributes of LSMW.
    But U can create the BAPI and assign Business object, Then u can use u r Business Object in Lsmw.
    Regards,
    Raghu.

  • Material Master upload problem (LSMW)

    Hi
      I am using Standard Batch input program (RMDATIND)  for MM upload i need to validate the old material number if it is already existed in MARA it should throw an error at the end of the processing saying that "Old material number" already existing in MARA . Flat file will have thousands of records.
    One solution like, we can move all the error records in one internal table in code of Filed mapping conversion rule step , but the problem is where we can write the error records?
    Another question when we use Standard program for conversion is it possible to show error log at the end of the processing?
    Its very urgent  Kindly help me ........
    Rgds,
    bhanu.......

    Hi,
      YOu can populate error messages in LSMW. To achieve this you add code in LSMW.  Follow the below procedure to add code in LSMW.
    In Display FieldMapping and Conversion rule Step of LSMW click the button Display Variant. A screen will pop up. Check the boxes - Global Definitions and ABAP Sub Programs. This will allow you to add code in LSMW.
    At check the error records follow the below mentioned procedure...
    <b>Error messages in the conversion log</b>
    How can user-defined error messages be added to the conversion log?
    1.     Use of  WRITE  command in the Coding
    a.     Example: WRITE: ‚Error during conversion of field xxx’
    2.     In the editor use ‚Insert -> Message’ to use a message already existing in the SAP system.
    a.     Example (Coding after using the menu function and filling the fields):
    WA_ERRORTAB-ID = '/SAPDMC/LSMW'.
    WA_ERRORTAB-MSGNO = 012.                         
    WA_ERRORTAB-PAR1 = 'A'.                          
    WA_ERRORTAB-PAR2 = 'B'.                          
    WA_ERRORTAB-PAR3 = 'C'.                          
    WA_ERRORTAB-PAR4 = 'D'.                          
    INSERT WA_ERRORTAB INTO TABLE G_ERROR_TAB. 
    The message will be added to the log.
    For further reference click the link below
    http://www.erpgenie.com/sapgenie/docs/Lsmw.zip.
    Regards,
    Vara

  • I want to upload material master (MM01) using LSMW with BAPI method

    I want to upload material master (MM01) using LSMW with BAPI method and also later on I may need to change the updated data.
    Which business object and Method I should use so that i can do both.
    Thanks
    kumar n

    Hi,
    The business object is BUS1001.
    Thanks,
    Murali

  • Problem with Material Master upload

    Hi All,
    I want to know what the file MTVFP( Group Check Availability) filed gonna do in material master upload bapi "BAPI_MATERIAL_SAVEDATA". When i am trying to upload data i am getting the following error "The field MARC-MTVFP/BAPI_MARC-AVAILCHECK is defined as a required field; it does not contain an entry".
    Thanks

    Hello Ben ,
                    I am getting the same error , could you please let me know how you got it solved.
    Comradely ,
    K.Sibi

  • Mass changes of Material Master field with different values

    Hi,
    How to change a field in Material Master for more than thousand materials. I think MM17 can only be used for mass changes of materials with same values. I need to upload different values for different materials. Is there any other way to do this.
    Thanks,
    K R Vishnu Kumar

    Hi Kumar.
    I think you have to use LSMW for mass updation for Material Master fields with different values.
    Regards,
    Rahul.

  • Material Classification Upload using LSMW

    Hi SAP Experts,
    We are thinking of using LSMW as a means to upload our material master data for the classification view. How is this done?
    Can we use LSMW to upload materials with many class assignments with multiple characteristics?
    Ex. Material A is assigned to class X and class Y. Class X has characteristics 1, 2, and 3. Class Y has characteristics 4, 5, and 6.
    Would appreciate a swift response.
    Thanks in advance!

    Hi All,
        If it is the existing material you need to modify the Classification type. It can be done by BDC. If you instruct the ABAP team they will make it & give. I am not sure about modifying classification type using LSMW. If you need to create a new material master data with classification using LSMW i will give the steps.
    Check out this link for LSMW Steps:
    www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Reward if useful.
    pherasath

  • I have encountered a peculiar problem in MM01 material master upload.

    I have encountered a peculiar problem in MM01 material master upload. The
    BDC program uploads data using Session method. The problem is when i
    process the session in foreground mode the data uploads successfully, but
    when i process it in background mode it gives the following errors in the
    log.
    'Control Framework: Fatal error - GUI cannot be reached'.
    'Runtime error RAISE_EXCEPTION has occurred'.
    When i debugged the program i found that this error is encountered when
    data is being input in 'Purchase Order text' editor of MM01 transaction.
    There is no problem with the BDC recording or the program as i could see.
    The only problem what i believe is the system is unable to call the text
    editor for inputting purchase order text data in background mode.

    Hi
    Try uploading a BAPI it would be better
    http://www.saptechies.com/mm01-upload-using-bapi/
    Regards
    Shiva

  • Material master change with ECN mandatory?

    Dear All:
               How can I make the field of ECN number mandotary in case of  material master changing?  Thx.
    BR
    Kevin Dai

    Hi,
    For making Material Master change  with ECN mandatory you need to activate ECM.
    For more details of ECM, pls go through the following link :
    [Engineering Change Management|http://help.sap.com/erp2005_ehp_03/helpdata/EN/64/a49a382ba4e80fe10000009b38f8cf/frameset.htm]
    Hope this helps.
    Regards,
    Tejas
    Edited by: Tejas  Pujara on Nov 14, 2008 8:29 AM

  • Customer master (XD02) with LSMW

    Hi All,
    I am trying to update customer master (XD02) with LSMW. But i the First step i.e. Maintain Object Atrributes... when I clic batch input recording & try to give a recording name in th second line... it throws an error saying "Enter a vali Value"... It does not accept a recording name & does not allo me to click Recording : Overview button .
    Has this error to do anything with the settings??... The sandbo in which I am working has the component version "SAP R/ Enterprise"(found out by System --> Status) ... Please Help

    hI,
    You will have to create recording first & then select from drop down box of "Batch Input".
    To create recording pls follow this:
    Go TO T code : LSMW
    Create Project, Subproject & objects.
    In Maintain Attributes - press F8
    In menu bar
    Goto---> recording overview
    Now you can create your recorindg which wil be avaliable for selection.
    rgds,

Maybe you are looking for

  • PK and FK importance in EBS

    I just want to know about the custom development standard on EBS. If i am going to create custom table then it will necessary to implement primary key and foreign key. If no then what are the reason to not implementing PK and FK.

  • How to use and configure web services in sap

    Hi, Experts, could you please tell me, how to configure web services in sap. As one of my client using handheld  software for inventory, where in whatever tansaction happens in the depot  it has to update in sap.through non sap software please help m

  • I want to get rid of Imapgmail

    I can not get mail Gmail account. Message comes Imap settings wrong. How to get rid off Imapgmail

  • Using early 2006 Mini as DVR/streaming box to TV

    I've got a Mini with the 1.66 Core Duo processor, 2 GB RAM and 160 GB on board HDD.  I want to know, can I connect it to a TV to use as both, A) a streaming device for Hulu/Netflix/Amazon VOD? and if so, how?  B) Can I also use it as a DVR via EyeTV

  • Why does the airport say there is no airport card installed?

    I have had my MacBook Pro for 4 years now and have never had an issue. I turned my laptop on the other day and all of a sudden I can no longer connect to wifi and the airport button just says there is no airport card installed?