About material master creation

hi all,
i want to create a material withall views i.e.,
basic data-1,basic data-2,classification,sales organaisation data-1,sales organisation data-2,general plant data,foreign trade:export data,sales text,purchasing,foreign trade:import data,purchase order text,MRP-1,MRP-2,MRP-3,MRP-4,work scheduling,production resource/tools, accounting1,accounting2,costing1,costing2.
plz explain me how to create material with all these views,if not how to select views for the particular material type.

Check the BAPI BAPI_MATERIAL_SAVEDATA
Check the below sample code.
REPORT YGECICI MESSAGE-ID 00
No Standard Page Heading
Line-Size 200
Line-Count 65.
*TO CREATE MATERIAL USING BAPI.
* STRUCTURE DECLARATIONS *
TABLES: BAPIMATHEAD, “Headerdata
BAPI_MARA, “Clientdata
BAPI_MARAX, “Clientdatax
BAPI_MARC, “Plantdata
BAPI_MARCX, “Plantdatax
BAPI_MAKT, “Material description
BAPI_MBEW, “VALUATION DATA
BAPI_MBEWX,
BAPI_MARM,
BAPI_MARMX,
bapi_mean,
BAPIRET2. “Return messages
DATA:V_FILE TYPE STRING. “input data file
DATA:
BEGIN OF LSMW_MATERIAL_MASTER,
MATNR(018) TYPE C, “Material number
MTART(004) TYPE C, “Material type
MBRSH(001) TYPE C, “Industry sector
WERKS(004) TYPE C, “Plant
MAKTX(040) TYPE C, “Material description
DISMM(002) TYPE C, “Extra Field Added In the Program as itsrequired
MEINS(003) TYPE C, “Base unit of measure
MATKL(009) TYPE C, “Material group
SPART(002) TYPE C, “Division
LABOR(003) TYPE C, “Lab/office
PRDHA(018) TYPE C, “Product hierarchy
MSTAE(002) TYPE C, “X-plant matl status
MTPOS_MARA(004) TYPE C, “Gen item cat group
BRGEW(017) TYPE C, “Gross weight
GEWEI(003) TYPE C, “Weight unit
NTGEW(017) TYPE C, “Net weight
GROES(032) TYPE C, “Size/Dimensions
MAGRV(004) TYPE C, “Matl grp pack matls
BISMT(018) TYPE C, “Old material number
WRKST(048) TYPE C, “Basic material
PROFL(003) TYPE C, “DG indicator profile
KZUMW(001) TYPE C, “Environmentally rlvt
BSTME(003) TYPE C, “Order unit
VABME(001) TYPE C,
EKGRP(003) TYPE C, “Purchasing group
XCHPF(001) TYPE C, “Batch management
EKWSL(004) TYPE C, “Purchasing key value
WEBAZ(003) TYPE C, “GR processing time
MFRPN(040) TYPE C, “Manufacturer part number
MFRNR(010) TYPE C, “Manufacturer number
VPRSV(001) TYPE C, “Price control indicator
STPRS(015) TYPE C, “Standard price
BWPRH(014) TYPE C, “Commercial price1
BKLAS(004) TYPE C, “Valuation class
bwkey(004) type c,
END OF LSMW_MATERIAL_MASTER.
* INTERNAL TABLE DECLARATIONS *
*to store the input data
DATA:
BEGIN OF it_matmaster OCCURS 0.
INCLUDE STRUCTURE LSMW_MATERIAL_MASTER.
DATA:
END OF it_matmaster.
*for material description
DATA:BEGIN OF IT_MATERIALDESC OCCURS 0.
INCLUDE STRUCTURE BAPI_MAKT .
DATA:END OF IT_MATERIALDESC.
*FOR gross wt
data: begin of it_uom occurs 0.
include structure BAPI_MARM.
data:end of it_uom.
DATA: BEGIN OF IT_UOMX OCCURS 0.
INCLUDE STRUCTURE BAPI_MARMX.
DATA:END OF IT_UOMX.
data:begin of it_mean occurs 0.
include structure bapi_mean.
data:end of it_mean.
DATA:BEGIN OF IT_MLTX OCCURS 0.
INCLUDE STRUCTURE BAPI_MLTX.
DATA:END OF IT_MLTX.
*to return messages
DATA:BEGIN OF IT_RETURN OCCURS 0.
INCLUDE STRUCTURE BAPIRET2.
DATA:END OF IT_RETURN.
* SELECTION SCREEN *
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
PARAMETERS:P_FILE LIKE RLGRAP-FILENAME OBLIGATORY.
SELECTION-SCREEN END OF BLOCK B1 .
* AT SELECTION SCREEN *
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
CALL FUNCTION ‘F4_FILENAME’
EXPORTING
PROGRAM_NAME = SYST-CPROG
DYNPRO_NUMBER = SYST-DYNNR
FIELD_NAME = ‘P_FILE’
IMPORTING
FILE_NAME = P_FILE.
* TO UPLOAD THE DATA *
START-OF-SELECTION.
V_FILE = P_FILE.
CALL FUNCTION ‘GUI_UPLOAD’
EXPORTING
filename = V_FILE
FILETYPE = ‘ASC’
HAS_FIELD_SEPARATOR = ‘X’
* HEADER_LENGTH = 0
* READ_BY_LINE = ‘X’
* DAT_MODE = ‘ ‘
* IMPORTING
* FILELENGTH =
* HEADER =
tables
data_tab = IT_MATMASTER
EXCEPTIONS
FILE_OPEN_ERROR = 1
FILE_READ_ERROR = 2
NO_BATCH = 3
GUI_REFUSE_FILETRANSFER = 4
INVALID_TYPE = 5
NO_AUTHORITY = 6
UNKNOWN_ERROR = 7
BAD_DATA_FORMAT = 8
HEADER_NOT_ALLOWED = 9
SEPARATOR_NOT_ALLOWED = 10
HEADER_TOO_LONG = 11
UNKNOWN_DP_ERROR = 12
ACCESS_DENIED = 13
DP_OUT_OF_MEMORY = 14
DISK_FULL = 15
DP_TIMEOUT = 16
OTHERS = 17
IF sy-subrc 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
*ELSE.
*DELETE IT_MATMASTER INDEX 1.
ENDIF.
* DATA POPULATIONS *
LOOP AT IT_MATMASTER.
*HEADER DATA
BAPIMATHEAD-MATERIAL = IT_MATMASTER-MATNR.
BAPIMATHEAD-IND_SECTOR = IT_MATMASTER-Mbrsh.
BAPIMATHEAD-MATL_TYPE = IT_MATMASTER-Mtart.
BAPIMATHEAD-BASIC_VIEW = ‘X’.
BAPIMATHEAD-PURCHASE_VIEW = ‘X’.
BAPIMATHEAD-ACCOUNT_VIEW = ‘X’.
*CLIENTDATA
BAPI_MARA-MATL_GROUP = IT_MATMASTER-MATKL.
BAPI_MARA-DIVISION = IT_MATMASTER-SPART.
BAPI_MARA-DSN_OFFICE = IT_MATMASTER-LABOR.
BAPI_MARA-PROD_HIER = IT_MATMASTER-PRDHA.
BAPI_MARA-PUR_STATUS = IT_MATMASTER-MSTAE.
BAPI_MARA-ITEM_CAT = IT_MATMASTER-MTPOS_MARA.
BAPI_MARA-NET_WEIGHT = IT_MATMASTER-NTGEW.
* BAPI_MARA-PO_UNIT = ‘KG’.
* BAPI_MARA-UNIT_OF_WT_ISO = ‘KG’.
BAPI_MARA-UNIT_OF_WT = ‘KG’.
* BAPI_MARA-PACK_VO_UN = ‘KG’.
* BAPI_MARA-BASE_UOM_ISO = ‘KG’.
bapi_mara-size_dim = it_matmaster-groes.
BAPI_MARA-MAT_GRP_SM = IT_MATMASTER-MAGRV.
BAPI_MARA-OLD_MAT_NO = IT_MATMASTER-BISMT.
BAPI_MARA-BASE_UOM = IT_MATMASTER-MEINS.
BAPI_MARA-BASIC_MATL = IT_MATMASTER-WRKST.
BAPI_MARA-HAZMATPROF = IT_MATMASTER-PROFL.
BAPI_MARA-ENVT_RLVT = IT_MATMASTER-KZUMW.
BAPI_MARA-PO_UNIT = IT_MATMASTER-BSTME.
BAPI_MARA-VAR_ORD_UN = IT_MATMASTER-VABME.
BAPI_MARA-PUR_VALKEY = IT_MATMASTER-EKWSL.
BAPI_MARA-MANU_MAT = IT_MATMASTER-MFRPN.
BAPI_MARA-MFR_NO = IT_MATMASTER-MFRNR.
BAPI_MARAX-MATL_GROUP = ‘X’.
BAPI_MARAX-DIVISION = ‘X’.
BAPI_MARAX-DSN_OFFICE = ‘X’.
BAPI_MARAX-PROD_HIER = ‘X’.
BAPI_MARAX-PUR_STATUS = ‘X’.
BAPI_MARAX-ITEM_CAT = ‘X’.
BAPI_MARAX-NET_WEIGHT = ‘X’.
BAPI_MARAX-UNIT_OF_WT = ‘X’.
* BAPI_MARAX-UNIT_OF_WT_ISO = ‘X’.
bapi_maraX-size_dim = ‘X’.
BAPI_MARAX-MAT_GRP_SM = ‘X’.
BAPI_MARAX-OLD_MAT_NO = ‘X’.
BAPI_MARAX-BASE_UOM = ‘X’.
BAPI_MARAX-BASE_UOM_ISO = ‘X’.
BAPI_MARAX-BASIC_MATL = ‘X’.
BAPI_MARAX-MFR_NO = ‘X’.
BAPI_MARAX-HAZMATPROF = ‘X’.
BAPI_MARAX-ENVT_RLVT = ‘X’.
BAPI_MARAX-PO_UNIT = ‘X’.
* BAPI_MARAX-PACK_VO_UN = ‘X’.
BAPI_MARAX-VAR_ORD_UN = ‘X’.
BAPI_MARAX-PUR_VALKEY = ‘X’.
BAPI_MARAX-MANU_MAT = ‘X’.
BAPI_MARAX-MFR_NO = ‘X’.
*PLANT DATA
BAPI_MARC-PLANT = IT_MATMASTER-WERKS.
BAPI_MARC-PUR_GROUP = IT_MATMASTER-EKGRP.
BAPI_MARC-BATCH_MGMT = IT_MATMASTER-XCHPF.
BAPI_MARC-GR_PR_TIME = IT_MATMASTER-WEBAZ.
BAPI_MARCX-PLANT = IT_MATMASTER-WERKS.
BAPI_MARCX-PUR_GROUP = ‘X’.
BAPI_MARCX-BATCH_MGMT = ‘X’.
BAPI_MARCX-GR_PR_TIME = ‘X’.
*VALUATION DATA
BAPI_MBEW-PRICE_CTRL = IT_MATMASTER-VPRSV.
BAPI_MBEW-STD_PRICE = IT_MATMASTER-STPRS.
BAPI_MBEW-COMMPRICE1 = IT_MATMASTER-BWPRH.
BAPI_MBEW-VAL_AREA = IT_MATMASTER-BWKEY.
BAPI_MBEW-VAL_CLASS = IT_MATMASTER-BKLAS.
BAPI_MBEWX-PRICE_CTRL = ‘X’.
BAPI_MBEWX-STD_PRICE = ‘X’.
BAPI_MBEWX-COMMPRICE1 = ‘X’.
BAPI_MBEWX-VAL_AREA = IT_MATMASTER-BWKEY.
BAPI_MBEWX-VAL_CLASS = ‘X’.
IT_MATERIALDESC-LANGU = ‘EN’.
IT_MATERIALDESC-MATL_DESC = IT_MATMASTER-MAKTX.
append IT_materialdesc.
IT_UOM-GROSS_WT = IT_MATMASTER-BRGEW.
IT_UOM-ALT_UNIT = ‘KG’.
IT_UOM-ALT_UNIT_ISO = ‘KG’.
IT_UOM-UNIT_OF_WT = IT_MATMASTER-GEWEI.
APPEND IT_UOM.
IT_UOMX-GROSS_WT = ‘X’.
IT_UOMX-ALT_UNIT = ‘KG’.
IT_UOMX-ALT_UNIT_ISO = ‘KG’.
IT_UOMX-UNIT_OF_WT = ‘X’.
APPEND IT_UOMX.
it_mean-unit = ‘KD3′.
append it_mean.
it_mltx-langu = ‘E’.
it_mltx-text_name = it_matmaster-matnr.
APPEND IT_MLTX.
CALL FUNCTION ‘BAPI_MATERIAL_SAVEDATA’
EXPORTING
headdata = BAPIMATHEAD
CLIENTDATA = BAPI_MARA
CLIENTDATAX = BAPI_MARAx
PLANTDATA = BAPI_MARc
PLANTDATAX = BAPI_MARcx
* FORECASTPARAMETERS =
* FORECASTPARAMETERSX =
* PLANNINGDATA =
* PLANNINGDATAX =
* STORAGELOCATIONDATA =
* STORAGELOCATIONDATAX =
VALUATIONDATA = BAPI_MBEW
VALUATIONDATAX = BAPI_MBEWX
* WAREHOUSENUMBERDATA =
* WAREHOUSENUMBERDATAX =
* SALESDATA =
* SALESDATAX =
* STORAGETYPEDATA =
* STORAGETYPEDATAX =
* FLAG_ONLINE = ‘ ‘
* FLAG_CAD_CALL = ‘ ‘
IMPORTING
RETURN = IT_RETURN
TABLES
MATERIALDESCRIPTION = IT_MATERIALDESC
UNITSOFMEASURE = IT_UOM
UNITSOFMEASUREX = IT_UOMX
INTERNATIONALARTNOS = it_mean
* MATERIALLONGTEXT = IT_MLTX
* TAXCLASSIFICATIONS =
* RETURNMESSAGES =
* PRTDATA =
* PRTDATAX =
* EXTENSIONIN =
* EXTENSIONINX =
read table it_return with key TYPE = ‘S’.
if sy-subrc = 0.
CALL FUNCTION ‘BAPI_TRANSACTION_COMMIT’
* EXPORTING
* WAIT =
* IMPORTING
* RETURN =
*else.
*CALL FUNCTION ‘BAPI_TRANSACTION_ROLLBACK’
** IMPORTING
** RETURN =
endif.
WRITE:/ IT_RETURN-TYPE,
2 IT_RETURN-ID,
22 IT_RETURN-NUMBER,
25 IT_RETURN-MESSAGE.
* IT_RETURN-LOG_NO,
* IT_RETURN-LOG_MSG_NO,
* IT_RETURN-MESSAGE_V1,
* IT_RETURN-MESSAGE_V2,
* IT_RETURN-MESSAGE_V3,
* IT_RETURN-MESSAGE_V4,
* IT_RETURN-PARAMETER,
* IT_RETURN-ROW,
* IT_RETURN-FIELD,
* IT_RETURN-SYSTEM.
ENDLOOP.
Hope this helps.
Thanks,
Balaji

Similar Messages

  • Standard Adobe Form for SAP Material Master Creation

    Hi,
    Did SAP develop standard adobe interactive form for Material Master Creation?
    I heard SAP delivered standard forms for Customer Master and Vendor Master. I am not sure about Material Master Form. If any one knows about Adobe Forms for Material Master... please rerply.
    Thanks in advance.

    Check yourself here:
    List of SAP standard Adobe forms: Go to http://service.sap.com/erp  (SAP ERP) -> Media Library - SAP ERP Overview -> Detailed information cross ERP -> Adobe Forms for SAP ERP
    Standard programs: Standard program for Adobe forms
    Regards Otto

  • Approval for Material Master Creation !

    Dear All ,
    My requirement is to have approval process for Material master. is it possible.?
    My Client is expecting approval process same like PO ( release strategy )
    Is there any standard approval  process for every masters which are  created as part of MM transactions.
    Can it  be achieved by means of any workflow.?
    Thanks
    Jinoy

    Hi,
    Yes it can be achieved by Work flow & also through the Enterprise Portal development.
    If you have Workflow consultant you can take a help in setting up the approval for Material master creation.
    If you want high fund & centralization of Material master you can go for EP development but Cost & effort will be on higher side.
    Discuss with your Workflow consultant he will help you.
    rgds
    gsc

  • Material Master creation workflow

    Hi everyone....
    Last week I went on the BIT601 training course and I'm now tryinig to create my first workflow for material master creation, so please forgive my rather noobish questions. I think this must be a common workflow but I'm sure every company has a different process.
    My process is as follows:
    - User creates basic data view for material master in MM01.
    - Workflow is triggered when material is saved.
    - Work item arrives in inbox of master data enigneer who completes all material master views.
    - Mail is sent to workflow initiator to inform that material is complete.
    - End of workflow
    I have defined the start event CREATED from business object BUS1001006 in my workflow definition. I have defined a standard task for the first step in my workflow using bus object BUS1001006 with method Create. The workflow starts correctly however ...
    My question is how do I get the material number to pull through to my first step? I am assuming I need to setup some binding to pull the material number into the workflow container? 
    Can someone please point in the right direction.
    Many thanks,
    Neil

    wow, thanks for the super quick reply Rob!
    I figured it must be some binding I had not done.
    So ... I go to my Start events in my workflow header, I see I have only the "auto-generated" binding i.e. EVTCREATOR > WFINITIAOR ....
    now, I see EVTOBJECT as a possible container object from the event side of the window (left hand side) but what do I link it too? I was kinda expecting to see my business object as a possible container object in the workflow side of the screen (right hand side).
    I really hope that makes sense... If I understand correctly, the idea is to link the event object to the business object container element ... but if thats the case why can't I see my business object in the workflow side of the binding window?
    Many thanks for taking the time to help a noob
    [edit] ... I may have partially answered my own question ... I think I need to define the properties of my business object in my workflow container element such that its is an input field? ...
    I'm going home now... will carry on with this in the morning.
    Edited by: Neil Ward on Oct 4, 2010 6:17 PM

  • Workflow to approve Material Master creation

    Dear all,
    I would like to create workflow to approve Material Master creation as below:
    When Material is created -> Check & Approval (Yes) -> Material is active
                           -> Check & Approval (No)   -> Material is inactive
    How can I do that?
    Could you pls help me to solve this?
    Thanks,
    CH

    Hi,
    Before designing the workflow, you need to find what is the business object and what is the event which gets triggered when material master is created... you can do that using event trace....
    1. SWELS - switch on trace
    2. Create material
    3. SWEL - check trace to find which event is fired
    This will give you business object name..
    Now start building workflow using SWDD... Go thru basic steps for designing workflow...

  • Defaulting values in material master creation

    Hi,
    I want to have some filed values to be appeared as default in all the views while creation of material master.
    By user settings, I can restrict Org level values such as C Code,S Org Distribution Channel etc etc.
    But how to make field values such as account assignment grop,division,valuation class,price control,transport grp,loading grp etc appearing default so that user does not have to think.
    Regards,
    manOO

    Hi,
    You can set values for Parameter IDs of the fields that you want to default.
    Set values in system -> user profile -> own data under parameters tab.
    For example Disision's parameter id is 'SPA'. You can set a default value for division by giving proper value for SPA under parameters data in own data.
    Hope this will help.
    Regards,
    Naveen.

  • Bydefault selection of profit centers during material master creation.

    Dear SAP Experts,
    My business wants that when ever they want to create a new material the profit center field should come bydefault after the selection of the plant.
    Each plant has been associated with a profit center.
    Is it possible , If yes then How.
    Please guide me.
    Regards
    Debjeet Banerjee

    There is no direct link of profit center and plant , the profit center is linked with plant via material master.So you cannot default the profit center when you select the plant while creating the MMR.
    Better try with any custom table were you can make this link and default it while creation of material master.

  • Automatic activation of batch during material master creation

    Dear All
    Is it possible to activate batch management in material master while creation. This is required for specific material type and field MARA-XCHPF should be set automatically.
    Thanks in advance
    Regards
    Yogesh

    Dear,
    In OMS9 field for batch management MARC-XCHPF
    first check which field selection key is assigned to your material type in the filed slection group 212 (OMSR) there is field called MARA-XCHPF, and MARC-XCHPF.
    couble click on these fields and there is an indicator " prapose field content" , you need to select that indicator.
    Regards,
    R.Brahmankar

  • Material master creation error through LSMW

    Hi,
    I have a problem with creation material master through LSMW with object type BAPI.  I use below import methods
    Business Object BUS1001006 
    Method                SAVEDATA
    Message Type    MATMAS_BAPI
    Basic Type          MATMAS_BAPI03
    Material number is configured length of 12 with leading zeros.
    In my text file material number is given as XXXXXXXXXXX which is 11 digits. When I start IDoc processing it issues an error message u201CMG019 the numeric material number & was transferred without leading zerosu201D.
    Then I add 0 to material number in the file (it becomes 0XXXXXXXXXXX) and run IDOC processing it issues same error message again.  
    How I can resolve this issue?
    Thanks

    Hi,
    Please check the below link...
    Re: Creating new material using i/b MATMAS IDOC
    and also check the OSS note 707602.
    Hope it may help you.
    Kuber
    Edited by: kuberk on Aug 14, 2011 4:00 AM

  • Material Master Creation Using BAPI

    Hi,
    I m using BAPI_MATERIAL_SAVEDATA for Material creation using BAPI.
    Now the problem is , i have created a Screen exit long back in Purchasing view.. the corresponding Z field is created in table MARC..
    How can i pass value to this Z field using BAPI.
    i tried with BAPI_MARC.. my Z field is not coming in that structure.
    Can anyone guide me how can this be achieved.
    Thanks in Advance
    Aravindh Mani

    Hi,
    The Function Module BAPI_MATERIAL_SAVEDATA has the options to pass the Z fields. There exits a structure parameters
    EXTENSIONIN
    EXTENSIONINX
    in BPAI. In EXTENSIONIN pass the data and value part you can pass  in EXTENSIONINX. So this will update the Z fileds in material
    master .

  • Default material code during material master creation

    Dear All,
               While I am trying to create any material in MM01 screen , system automatically takes a material code .So I have to remove that code from there then put my desired material code and then proceed .
                I want to know why system takes that perticular  code during material code creation .I want to remove it permanently .
                Please suggest what I have to do ?
    Regards
    Abhijit Das

    Dear Abhijit,
    Material Number range & Internal or external number range setting is done in SPRO under
    Logistic General>material master>basic setting>material type>Define number range for a perticular material type.
    Now if u want to have your own desired code go on above path,Select your material type & tick for external number range & give range of external number( interval).
    This will solve your problem,
    Vivek

  • Error-Material Ledger currency were changed in material master creation

    Hi all,
    Iam trying to create a material master record in IDES database.
    When iam entering into accounting 1 tab system is throwing the following error "Material Ledger currency were changed".
    Without entering necessary information in the accounting tab i cannot proceed further , so kindly suggest me what is the necessary  setup that i need to do to avoid this error.
    Expecting a reply from you all.
    Thanking You
    Gopala

    Hi,
    In the configuration the material ledger might be active in the valuation area.If it is active in the valuation area then the check box in the material master is automatically checked.
    If the material ledger is active for a particular valuation area, all materials in the valuation area are valuated using the material ledger.
    If you activate the material ledger for a plant, you should also activate it for all the other plants in the company code. This ensures that the accounts in Financial Accounting and Materials Management are reconciled.
    You can deactivate this in SPRO-Controlling -General controlling--Multiple valuation approaches-Basic settings-Check material ledger settings.
    But be careful about the controlling settings while changing this.

  • During Material master creation

    hi friends,
    in my system during material creation  system will through the material number,
    my doubt is, i entered into material master and system thrown the number too but half way i exit that transaction with out saving the material,  for my next transaction of material master system through the next number why
    and whenever i entered into mmo1 view screen system counted and throw a material number why and how can i delete the numbers
    thanks
    ganesh

    hi,
    >
    Can flag for deletion from
    Logistics --> Materials management --> Material master -->Other --> Archiving --> Material.
    >
    Can see these Deleted numbers in SARA tables or DB15..
    >
    You can see all normal material numbers in MARA...IN SE16 Tcode...
    Regards
    Priyanka.P
    AWARD IF HELPFULL

  • About material master

    Dear gurus,
    i want to add one value range in search of material code no.
    when we do mm03 & pop up the screen there are restrict value range like material by old material no etc.,   the that range i want to add search by  design drawing no.  ( taable : MARA , field :ZEINR )
    how to do this
    suhas inamdar

    hi
    check following
    [Material Master Search Help Creation: Step by Step Guide|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8047f84e-7973-2c10-548a-ab4cb1c3c498?quicklink=index&overridelayout=true]

  • Problem with BAPI of Material Master creation

    Hi,
    I am creating material master(mm01) through BAPI_MATERIAL_SAVEDATA.
    Program is working fine but when i m checking in MM03 to display uploaded data through BAPI, i cant able to see material which i created to through BAPI but i can see in MARA table.
    i dont know wht is the problem ?
    can anybody let me know abt this ?

    then u are not committing the work.
    flow will be like this
    call ' BAPI'
    if return[] is initial.
    commit work.
    else.
    endif.
    Regards
    peram

Maybe you are looking for

  • How can I make a video feed in Muse?

    So, I have a youtube channel, and I really want to have a website that people can go to see my videos as well. So I am wondering, is there any way that I can set up an automatic video feed in adobe muse so that every time I upload a video, it will be

  • LVOOP technique for passing classes down to subVIs

    Hello LVOOP experts, A quick question regarding performance of LVOOP. I finally got around to implementing something non-trivial with LV classes, just for fun though. If my architecture consists of a state machine, with a typedef'ed shift-registered

  • Java API - Needs to be more confusing for beginers (API translation)

    Hi, I have found a great method in which has some code that is exactly what is required to put my concept into computer science; although I do not have enough knowledge of Java to create a class which will enable me to access the required methods wit

  • Taxes in Purchase Requisition

    Hi all, We have a requirement to get item wise taxes in PR.  for this the approach that was decided is to create a PO with all the items of PR, and the PO will any how calculate the taxes for all items; then read the PO and get the taxes back to PR f

  • SLT and Archiving Question

    We have here an ERP System running on Oracle being replicated to HANA (Side-car) using SLT. When we archive a lot of data from ERP, SLT is taking a very long time to empty the replication queue. What is traveling through network? Every record deleted