Transfer Material Master

Hi
which is the best way of transfers Material Master data into SAP system.
LSMW, BDC ( Session/Call Transaction ), or BAPI.
thanks and regrds.

Hi,
Bapi is the Best method,
No screens Calling Direct Updation,
With Regards ,
Kiran.G
REPORT  y_test8.
FLAGS *
DATA: f_stop. " Flag used to stop processing
DATA DECLARATIONS *
DATA : v_empty TYPE i, " No. of empty records
v_total TYPE i. " Total no. of records.
STRUCTURES & INTERNAL TABLES
*--- BAPI structures
DATA: bapi_head LIKE bapimathead, " Header Segment with Control  " "
"Information
bapi_makt LIKE bapi_makt, " Material Description
bapi_mara1 LIKE bapi_mara, " Client Data
bapi_marax LIKE bapi_marax, " Checkbox Structure for BAPI_MARA
bapi_marc1 LIKE bapi_marc, " Plant View
bapi_marcx LIKE bapi_marcx, " Checkbox Structure for BAPI_MARC
bapi_mbew1 LIKE bapi_mbew, " Accounting View
bapi_mbewx LIKE bapi_mbewx, " Checkbox Structure for BAPI_MBEW
bapi_return LIKE bapiret2. " Return Parameter
*--- Internal table to hold excel file data
DATA: it_intern TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
*--- Internal table to hold Matetrial descriptions
DATA: BEGIN OF it_makt OCCURS 100.
        INCLUDE STRUCTURE bapi_makt.
DATA: END OF it_makt.
*--- Internal to hold the records in the text file
DATA : BEGIN OF it_data OCCURS 100,
werks(4), " Plant
mtart(4), " Material type
matnr(18), " Material number
matkl(9) , " Material group
mbrsh(1), " Industry sector
meins(3), " Base unit of measure
gewei(3), " Weight Unit
spart(2), " Division
ekgrp(3), " Purchasing group
vprsv(1), " Price control indicator
stprs(12), " Standard price
peinh(3), " Price unit
spras(2), " Language key
maktx(40), " Material description
END OF it_data.
SELECTION SCREEN. *
SELECTION-SCREEN BEGIN OF BLOCK scr1 WITH FRAME TITLE text-111.
PARAMETER : p_file TYPE rlgrap-filename OBLIGATORY DEFAULT " Input File
'C:\Material_master.XLS'.
PARAMETER : p_max(4) OBLIGATORY DEFAULT '100'. " no.of recs in a
PARAMETERS: p_header TYPE i DEFAULT 0. " Header Lines
PARAMETERS: p_begcol TYPE i DEFAULT 1 NO-DISPLAY,
p_begrow TYPE i DEFAULT 1 NO-DISPLAY,
p_endcol TYPE i DEFAULT 100 NO-DISPLAY,
p_endrow TYPE i DEFAULT 32000 NO-DISPLAY.
SELECTION-SCREEN END OF BLOCK scr1.
AT SELECTION-SCREEN *
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
*--- Validating file
  PERFORM validate_file USING p_file.
START-OF-SELECTION
START-OF-SELECTION.
*--- Perform to convert the Excel data into an internal table
  PERFORM convert_xls_itab.
  IF NOT it_data[] IS INITIAL.
*--- Perform to delete Header lines
    PERFORM delete_header_empty_recs.
  ENDIF.
END OF SELECTION. *
END-OF-SELECTION.
*--- Perform to upload Material Master data
  PERFORM upload_matmas.
Form : validate_input_file
Description : To provide F4 help for file if read from PC
FORM validate_file USING f_file TYPE rlgrap-filename.
  CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
    CHANGING
      file_name     = f_file
    EXCEPTIONS
      mask_too_long = 1
      OTHERS        = 2.
  IF sy-subrc <> 0.
    MESSAGE s010(zlkpl_msgclass). " 'Error in getting filename'.
  ENDIF.
ENDFORM. " validate_input_file
*& Form CONVER_XLS_ITAB
text
FORM convert_xls_itab.
  CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
      filename    = p_file
      i_begin_col = p_begcol
      i_begin_row = p_begrow
      i_end_col   = p_endcol
      i_end_row   = p_endrow
    TABLES
      intern      = it_intern.
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
*--- Perform to move the data into an internal data
  PERFORM move_data.
ENDFORM. " CONVERT_XLS_ITAB
*& Form MOVE_DATA
text
FORM move_data.
  DATA : lv_index TYPE i.
  FIELD-SYMBOLS <fs>.
*--- Sorting the internal table
  SORT it_intern BY row col.
  CLEAR it_intern.
  LOOP AT it_intern.
    MOVE it_intern-col TO lv_index.
*--- Assigning the each record to an internal table row
    ASSIGN COMPONENT lv_index OF STRUCTURE it_data TO <fs>.
*--- Asigning the field value to a field symbol
    MOVE it_intern-value TO <fs>.
    AT END OF row.
      APPEND it_data.
      CLEAR it_data.
    ENDAT.
  ENDLOOP.
ENDFORM. " MOVE_DATA
*& Form DELETE_HEADER_EMPTY_RECS
To delete the Header and empty records
FORM delete_header_empty_recs.
  DATA: lv_tabix LIKE sy-tabix.
  IF NOT p_header IS INITIAL.
    LOOP AT it_data.
      IF p_header > 0 AND NOT it_data IS INITIAL.
        DELETE it_data FROM 1 TO p_header.
P_HEADER = 0.
        EXIT.
      ENDIF.
    ENDLOOP.
  ENDIF.
  CLEAR it_data.
*--- To delete the empty lines from internal table
  LOOP AT it_data.
    lv_tabix = sy-tabix.
    IF it_data IS INITIAL.
      v_empty = v_empty + 1.
      DELETE it_data INDEX lv_tabix..
    ENDIF.
  ENDLOOP.
  CLEAR it_data.
*--- Total no of recs in file
  DESCRIBE TABLE it_data LINES v_total.
  IF v_total = 0.
    MESSAGE i013(zlkpl_msgclass). " No records in the file
    f_stop = 'X'.
    STOP.
  ENDIF.
ENDFORM. " DELETE_HEADER_EMPTY_RECS
*& Form UPLOAD_MATMAS
to upload Material Master data
FORM upload_matmas .
  LOOP AT it_data.
Header
    bapi_head-material = it_data-matnr.
    bapi_head-ind_sector = it_data-mbrsh.
    bapi_head-matl_type = it_data-mtart.
    bapi_head-basic_view = 'X'.
    bapi_head-purchase_view = 'X'.
    bapi_head-account_view = 'X'.
Material Description
    REFRESH it_makt.
    it_makt-langu = it_data-spras.
    it_makt-matl_desc = it_data-maktx.
    APPEND it_makt.
Client Data - Basic
    bapi_mara1-matl_group = '01' . " it_data-matkl.
    bapi_mara1-base_uom = 'TO' . " it_data-meins.
    bapi_mara1-unit_of_wt = it_data-gewei.
    bapi_mara1-division = '01' . " it_data-spart.
    bapi_marax-matl_group = 'X'.
    bapi_marax-base_uom = 'X'.
    bapi_marax-unit_of_wt = 'X'.
    bapi_marax-division = 'X'.
Plant - Purchasing
    bapi_marc1-plant = '0001' . " it_data-werks.
    bapi_marc1-pur_group = '3G0' . " it_data-ekgrp.
    bapi_marcx-plant = '0001' . " it_data-werks.
    bapi_marcx-pur_group = 'X'.
Accounting
    bapi_mbew1-val_area = '0001'.
    bapi_mbew1-price_ctrl = it_data-vprsv.
   bapi_mbew1-std_price = it_data-stprs.
    bapi_mbew1-price_unit = it_data-peinh.
    bapi_mbewx-val_area = 'X' . " it_data-werks.
    bapi_mbewx-price_ctrl = 'X'.
   bapi_mbewx-std_price = 'X'.
    bapi_mbewx-price_unit = 'X'.
*--- BAPI to create material
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
    EXPORTING
    headdata = bapi_head
    clientdata = bapi_mara1
    clientdatax = bapi_marax
    plantdata = bapi_marc1
    plantdatax = bapi_marcx
FORECASTPARAMETERS =
FORECASTPARAMETERSX =
PLANNINGDATA =
PLANNINGDATAX =
STORAGELOCATIONDATA =
STORAGELOCATIONDATAX =
valuationdata = bapi_mbew1
valuationdatax = bapi_mbewx
WAREHOUSENUMBERDATA =
WAREHOUSENUMBERDATAX =
SALESDATA = BAPI_MVKE1
SALESDATAX = BAPI_MVKEX
STORAGETYPEDATA =
STORAGETYPEDATAX =
    IMPORTING
    return = bapi_return
    TABLES
    materialdescription = it_makt
UNITSOFMEASURE =
UNITSOFMEASUREX =
INTERNATIONALARTNOS =
MATERIALLONGTEXT =
TAXCLASSIFICATIONS =
RETURNMESSAGES =
PRTDATA =
PRTDATAX =
EXTENSIONIN =
EXTENSIONINX =
    IF bapi_return-type = 'E'.
  WRITE:/ 'Error:' ,bapi_return-message ,'for material:' ,it_data-matnr.
    ELSEIF bapi_return-type = 'S'.
      WRITE: 'Successfully created material' ,it_data-matnr.
    ENDIF.
  ENDLOOP.
ENDFORM. " UPLOAD_MATMAS

Similar Messages

  • How to transfer Material Master data information from ECC to CRM

    Hi ,
      Changes to the Classification data of Material master for the class type-001 and Custom
    ZFIELDS on mara will trigger the Interface functionality. Any changes to the
    custom zfields and  classes or characteristic values on Material Master must transfer the information from ECC to CRM. By using RFC .
    Regards,
    Pavan

    Hi,
    You need to use change pointer to do this. Go to transaction SALE,
    expand MODELLING AND IMPLEMENTING...
    expand MASTER DATA DIST...
    expand REPLICATION OF MODIFIED DATA
    You may need to maintain distribution model in SALE.
    Cheers.
    Reward if useful

  • Transfer Material Master (MATMAS) Idoc into Retail  Article Master (ARTMAS)

    I need to transfer data from an SAP 4.7 ERP system that is set up for material masters to a different SAP 6.0 system that is set up as Retail.
    The question is which system should be doing the conversion to the ARTMAS
    Option 1: The outbound IDOC would be a MATMAS05 and it would be recieved and converted on the Retail side to an ARTMAS doc to create the articles. 
    If this is the case do you know how this needs to be set up on the retail side, for this conversion to occur.
    Option 2: Translate the material master and send out an ARTMAS IDOC from the ERP system  In this case I think that we will need a lot of custom code, and the SAP sending box will need to perform conversions that are known only on the retail side.  
    I am not really asking for the exact configuration set up
    What I am looking for is how if other companies are doing this which option is considered the standard/best practice

    Question was never answered we will need to determine how best to do this.

  • 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

  • Non-SAP to SAP Material Master Data Transfer

    Hi Experts,
    Please indicate any standard tools in SAP and how to use it wherein we can migrate non-SAP material master data to SAP.
    Points will be awarded.
    Regards,
    LM

    Hello Leo,
    There are a number of options to do this. You can use the standard SAP tool named LSMW - Legacy System Migration Workbench (transaction LSMW) as a starting point.
    Also please read this [Documentation|http://help.sap.com/saphelp_47x200/helpdata/en/0d/414538bc0fe927e10000009b38f8cf/frameset.htm] before undertaking the data migration activity via LSMW.
    Additionally, there is also a Direct Input program available named RMDATIND - please go through the program documentation before you use it. You can use this program to transfer material master data to SAP but
    make sure you assign this program through LSMW for mapping structures etc. The internet link above will give
    more details and step-by-step instructions to follow.
    Hope this helps,
    Cheers,
    Sougata.
    p.s. It is sad to see useful answers remain unrewarded such as this one!
    Edited by: Sougata Chatterjee on May 9, 2008 10:13 PM

  • Transfer of material master data with Classification view

    Dear Experts
    I want to transfer material master data between R/3 using ALE. We are able to send master data using BD10 without classification view.
    Please let me know in detail the configuration, steps invloved in sending materail master along with classification view.
    Regards
    Samal

    HAI FRIENDS,
    CHANGING CLASSIFICATION VIEW FOR MATERIAL USING BAPI
    ->CREATE CHARACTERISTIC USING TCODE CT04
    ->CREATE CLASS USING TCODE CL01 .
    -> RUN THIS PROGRAM TO CHANGE THE CLASSIFICATION VIEW
    PARAMETERS: P_MATNR TYPE MARA-MATNR. "MATERIAL
    DATA: OBJECTKEY TYPE BAPI1003_KEY-OBJECT,
    OBJECTTABLE TYPE BAPI1003_KEY-OBJECTTABLE,
    CLASSNUM TYPE BAPI1003_KEY-CLASSNUM,
    CLASSTYPE TYPE BAPI1003_KEY-CLASSTYPE,
    ALLOCVALUESNUMNEW TYPE TABLE OF BAPI1003_ALLOC_VALUES_NUM WITH HEADER LINE,
    ALLOCVALUESCHARNEW TYPE TABLE OF BAPI1003_ALLOC_VALUES_CHAR WITH HEADER LINE,
    ALLOCVALUESCURRNEW TYPE TABLE OF BAPI1003_ALLOC_VALUES_CURR WITH HEADER LINE,
    RETURN TYPE TABLE OF BAPIRET2 WITH HEADER LINE.
    OBJECTKEY = P_MATNR.
    OBJECTTABLE = 'MARA'.
    CLASSNUM = 'MTS_CABLE_BIN1'. "CLASS(CREATED USING CL01)
    CLASSTYPE = '023'. "CLASS TYPE (023 FOR BATCH)
    CALL FUNCTION 'BAPI_OBJCL_CHANGE'
    EXPORTING
    OBJECTKEY = OBJECTKEY
    OBJECTTABLE = OBJECTTABLE
    CLASSNUM = CLASSNUM
    CLASSTYPE = CLASSTYPE
    STATUS = '1'
    STANDARDCLASS =
    CHANGENUMBER =
    KEYDATE = SY-DATUM
    NO_DEFAULT_VALUES = ' '
    IMPORTING
    CLASSIF_STATUS =
    TABLES
    ALLOCVALUESNUMNEW = ALLOCVALUESNUMNEW
    ALLOCVALUESCHARNEW = ALLOCVALUESCHARNEW
    ALLOCVALUESCURRNEW = ALLOCVALUESCURRNEW
    RETURN = RETURN
    LOOP AT RETURN.
    WRITE: / RETURN-TYPE ,RETURN-MESSAGE.
    ENDLOOP.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT =
    IMPORTING
    RETURN =
    BY VENKATESWARAREDDY D
         MYTEC SOFT LTD

  • Material master data connect to custom data

    Hi Experts,
         I have transfer material master data from ECC to GTS,I also have created tariff code in GTS system,
    but I just know to connect them by manual, Can anybode tell me ,How to connect them by mass ?

    Hi Billy,
    If you want to classify materials in mass, you can use the classification worklist (there are each for compliance/customs tariff/commodity codes) or upload the material classification from a file.
    There you can select several in an ALV and classify them in once..
    Hope this helps a bit,
    Cheers,
    Branio

  • Transferring MATERIAL MASTER DATA USING lsmw

    I am using LSMW to transfer material master data from text file using direct input program RMDATIND.  The problem is that the field WRKST in screen is of 48 characters while the batch data structure BMMH1 of field WRKST contains 14 characters. How can we transfer the full 48 characters in text file to THE FIELD BMMH1 IN DIRECT INPUT PROGRAM. Can we write any translation or routines . If yes, how is it possible. I can do the same using BDC but our client is already using the LSMW , only the new field WRKST for material has to be inserted. It is picking only 14 characters.
    Regards
    Debopriyo

    Hi
    Kindly use the sap note 351557 it is applicable for your release
    if you have any further clarifications let me know
    Regards
    Damu

  • In SOP- transfer forecasted values from material master to info structure?

    Hi All,
    I wanted to test out a few scenarios. Do you know the answers  / can you help simulate and check the below?
    1.     If I run the forecast using different models for different materials using the total forecast run (MP38), the forecast values will get updated in the material master. Can I get these values transferred directly into the SOP (standard or flexible), without re-running the forecast in SOP? What I am looking at is a possible scenario where individual materials have different forecast model, so do not want to run forecast from SOP using one model for all.
    2.       Can you have the capability of selecting diff model (say based on material master data) in SOP for diff materials? When I ran SOP, the model I specify there for forecasting is applied for all materials
    3.       If I upload historical values/forecasted values in the material master, can I directly transfer them to SOP without any change to the value?
    Appreaciate your inputs.

    Hi All,
    I wanted to test out a few scenarios. Do you know the answers  / can you help simulate and check the below?
    1.     If I run the forecast using different models for different materials using the total forecast run (MP38), the forecast values will get updated in the material master. Can I get these values transferred directly into the SOP (standard or flexible), without re-running the forecast in SOP? What I am looking at is a possible scenario where individual materials have different forecast model, so do not want to run forecast from SOP using one model for all.
    2.       Can you have the capability of selecting diff model (say based on material master data) in SOP for diff materials? When I ran SOP, the model I specify there for forecasting is applied for all materials
    3.       If I upload historical values/forecasted values in the material master, can I directly transfer them to SOP without any change to the value?
    Appreciate your inputs.

  • Not able to transfer changes in material master (periodic)

    Hi Friends,
    Got an issue here. I am not able to transfer the changes I made in material master. I want this as periodic, Made the specific setting in CFC9. And for your information 'Activate ALE Change Pointers Generally' and for massege type are activated.
    But when I execute CFP1 I got massege: 'No appropriate master data changes: Transfer has not happen'.
    I made changes in material master (global level),..like gross weight changed. Material is in active IM, no duplication.
    Any help Please? We are on SCM 7.0.
    Thanks,
    Satyajit
    Edited by: Satyajit Patra on Mar 20, 2010 9:12 PM
    OK, Guys I think I need to raise an OOS... It was for SCM 7.0, but was basic config....thts why I edited the thread so many times expecting some responce.
    Edited by: Satyajit Patra on Mar 22, 2010 7:41 AM

    Hi Satyajit,
    Please look at OSS  Note 1069560 - Data inconsistencies: Activating integration. models in parallel, if this helps you.
    Since  Gross data of material is in the basic view, it is common across plants , whereas, IMs are normally designed to have material masters at plant level.
    We may have same material in different IMs with different  plants. Therefore changes of the basic view fields are then contained in multiple IMs.  SAP advises to have a larger IM or sequential activation of IMs.
    I hope this will  help you .
    Regards
    Datta

  • Change of material master during transfer between SRM and R/3

    Hi,
    I have a question for modifying material master data between R/3 and SRM.
    I would like to know if it is possible to change the material number during the transfer. The reason is:
    I have 2 R/3 backends and 1 SRM system. The material codes in the 2 R/3 systems are different but some materials having different numbers in R/3 are referring to the same material. I want to see such materials with the same material number. Is it possible to do this with Middleware plus some interruption in between? The "translation" should be bi-directional.
    Thanks

    Hi,
      No probs if the field is not replicated.No idea how to bring that through replication though.
      Coming to the Product Search...Although the number of such materials is less...You will have to modify the Product search which will take care of the  display of other products as well.
      The Std product search(<b>bbph_product</b>) uses the the search help exit "<b>BBP_F4IF_SHLP_EXIT_PRODUCT_GEN</b>".So you need to replace this one with your custom FM.
      In your custom FM,you will have to check for the HARMINIZED code field for all such materials and accordingly while selecting the Material select the HARMONIZED code as the Material number and in the Product search display that HARMONIZED code as the "PRODUCT ID". Also,you  will have to develop RFC enabled FM which will actually fetch all the Materials from the BAckend at runtime. Also are you displaying the Product List Plantwise?
      Pls give me ur mail ID where i can mail you the  sample code.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • SAP SCM Upgrade to 5.0, Material Master Initial Transfer Issue

    Dear Folks,
    We are doing an upgrade to SCM 5.0 for a client and are facing the issue of material master initial transfer. The changes to exising material like Proc type etc. travel seamlessly but while we try to create a new material in R/3 and transfer it to APO or if we delete an existing product in APO and re-transfer the material from R/3, it simply doesn't happen. We donot get any kind of errors also. We have tried various suggestions and solutions but all have failed. To summarize the activites that we have done to check the issue, please see the track below.
    Action                                                              Observation
    1. Observed queue blocks on R/3 and APO sides:            No blocks.
    2. “Important” logs on R/3 as well as APO side:                No error logs on CIF observed.
    3. Check material master data fields in R/3 relevant and necessary for APO: Done
    4. Check the APOKZ flag in MARC Table:                        Done
    5. Check OSS relevant notes for the issue:                      Done
    6. Check CIFMAT and MATLOC tables in APO:                Done
    7. Check the TRFCQIN and TRFCQOUT tables in APO     Done; nothing relevant to CIF observed.
    8. Debug CIF and find the issue                                       No breakthrough.
    9. Check location and location pre-requisites for CIF         Done
    Now we have raised OSS notes to SAP and are awaiting a solution.
    I request all Gurus to pitch-in and suggest possible issue here and perhaps a solution too. I am very hopeful that some one might have faced similar issue and have found a solution to the same.
    Warm Regards,
    Chandra

    This required packaging materials to be CIFed first before transferring the other materials. Issue resolved, SAP issues a note on this.

  • Material Master transfer by CRM middleware

    Cannot able to transfer material from R/3 to SRM,
    want to know whether system names are specified separately in the CRM middleware config.
    what are the basic settings to be done in the this component

    You can add these fields in your reduced message type /SAPSLL/MATMAS_SLL ( created with reference to MATMAS ) type that you would have created to send the Produc master data to GTS .
    GTS Plugin - Basic Settings ---Activate change pointer for reduced Message type.
    Once you include these field in your reduce message type correcpondinf entry has to be maintaine in table TBD62 so that changes to these fields can go to GTS , you can use Tcode BD52 to maintain the entry in TBD62
    Hope this helps.
    Kind Regards,
    Sameer

  • Material Master data transfer to external system

    Dear All,
    We are creating the Interface between SAP and MES system for transfering the material master. The plan is to use the standard Idoc type/message type i.e is MATMAS05.
    I have done basic settings like defining parnters, port, partner profile etcc. and trying to trigger the IDoc using transaction code POIM. I am getting a message called " "0 Idocs were generated (According to the selection and filter)". I could not findout why system is throwing this message.
    Please help in this issue.
    Regards,
    Senthilraja

    Thanks Uwe,
    I tried to create IDoc with BD10 for material master and I am getting two error msg as below.
    Msg one
    1 master IDocs set up for message type MATMAS
    then Msg two
    0 communication IDoc(s) generated for message type MATMAS
    Is it able to get why this msg is comng and no IDoc's were generated..
    Regards,
    Senthil

  • Material Master data transfer using IDOC

    Hi,
    I am working on integration scenario with SAp ECC. we are using SAp PI wherein SAP PI is posting data In SAP ECC using standard IDOC for Material master i.e MATMAS05
    You might be aware that while material master creation if we pass Plant value then we can activate all Plant related views i.e. Purchasing, sales plant general, MRP views and Accounting etc...
    I have a scenario where I want to activate only Sales plant general view...donot want MRP and purchasing views to get activated
    I tried passing only Plant and profit center value which required for sales plant general data view and keeping all other fields blank but it doesnot work.
    can you suggest a way.
    Cheers
    Rc
    P.s - I am using xml file which will be converted into IDOC by PI.

    you must not create all segments in the IDOC  if you dont want the views.
    e.g. E1MBEWM is used for the accounting data. without this you wont get that view.

Maybe you are looking for