Enhancing master data source.

Hi experts,
How to enhance an master data data source ( 0customer_attr ). Which function exit we need to use.
Is it EXIT_SAPLRSAP_001 or EXIT_SAPLRSAP_002 ?
Regards,
Nishuv.

hi fallow these steps
1. Go To SAP R/3 TCODE-RSA6 
2. Open the SAP R/3 Tab & select the module & the masterdata extractor name for ex.MM -> MM-IO ->0VENDOR_ATTR 
3. Double click on it. It will show you the extract structure name under "ExtractStru" as BIW_LFA1_S. 
4. Double click on it or copy the name & open SE11 & paste the name open the structure. 
5. There you can find append structure field name in ZZ. i.e all append structure fields should start with ZZ as prefix. 
6. To find the source field you have to go to CMOD. 
7. Provide the project name which is created. 
8. Then select the "Enhancement components" option. 
9. Click on display button. 
10. Select the function exits "Exit_SAPLRSAP_002" it will open the include program "include zxrsau02". 
11. Double click on "zxrsau02". 
12.You will find the case program with datasource name. 
13.Choose your master datasource & check the table names & the logic. 

Similar Messages

  • Enhancment CRM data source

    Hi,
    I have enhanced CRM data source 0CRM_LEAD_H with "store"(which is customer master) as a Partner function with component type CRMT_ACTIVITY_PARTNER(Activity Partner) in Extract Structure.Now i need to write User Exit can any one help me out with fom which table and field i should take into ABAP code.When i see in the transanction CRMD_ORDER partner is coming from the STRUCTURE(not like in ECC which comes from VBPA, the same enhancement was done in ECC vbpa-knn1.).
    Can any one help in coding.
    Thanks in advance
    Ram

    you have to do the enhancment for the same.
    it can be done using a badi def .
    in sbiw tcode u can go to setting for appln specific datasource (CRM) and enhance the datasoure using a badi.
    u can check the help there and proceed accordingly...
    for getting the activity partner use FM CRM_ORDER_READ it works in the same fashin as tcode CRM_ORDER.
    I hope this is clear if not let me know.

  • Regarding Enhancing LO Data Source.

    Hi is it possible to enhance LO Data Sources like 2lis_02_bf or 2lis_03_itm etc??

    Hi Jayanth,
    Yes, we can definetly do.. pls check the following links it would be of good help..
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    http://www.ko-india.com/content/weblogs/weblog_custom_fields_1.pdf
    also take a look
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59069d90-0201-0010-fd81-d5e11994d8b5
    Enhancement
    User exit
    Re: Master data Enhancement Exit
    Hope this  helps..
    Best Regards,
    DMK
    *Assign points if it serves your purpose...

  • Enhance Master data 0material

    Dear friends .
    I am in bit confusion , I have one request where i need to activate 0Pur_c01 . the problem is there is one charterstics . which is agency code(0matl_grp_1) .I need to add this charcter to the cube . but 2lis_02_ITM or 2lis_02_SCL does not contain this char.  My question is .
    1. Can i add this char as attribute for 0material .
    2. Agency code (0matl_GRP_1 ) is coming from MVKE Table and Feild is MVGR1. the data for 0material is coming for MARA.
    3.Can i enhance the 0material .
    4. If i can add this char to 0material . please let me know . how to enhance 0material .
    Hope you all can help me on this . points are rewarded for your efforts . thankyou .

    Hi Kumar,
    You can enhance the agency code to master data object 0material for reporting or you can enhnace this for the cube dircetly.
    Method 1. Enhancement for Master data 0material:
    Add 0matl_grp_1 as an attribute in 0material defination.
    Enhace data source 0MATERIAL_ATTR with a new characterstic agency code and make it as navigartional attribute.
    Write  ABAP code in R3 (using T-code :CMOD) in RSAP0001 componet specified and functional exit EXIT_SAPLRSAP_002 specified for master data to populate the agency code from tabel MVGR1 using the key filed Material.(But you have to know the functional relation ship between material and agency code to write the ABAP code in CMOD).
    Replicate the data source and make the necessary assignments for infosource.
    Load the master data for 0material.
    Assign agency code as navigationl attribute in the cube defination, so that agency code is used in reports for navigation.
    Method 2: enhance your data source 2lis_02_ITM or 2lis_02_SCL with agency code ((using T-code :CMOD) in RSAP0001 componet specified and functional exit EXIT_SAPLRSAP_001 specified for transanction data.
    add char agency code to cube and bellow data flow and load the data.
    Method 1 is suggestable for your case.
    regards,
    srinivas.

  • How to find active master data source in the bw system

    Hi
    Can anyone guide me how to find the active master data source in the bw system

    Hi,
        You can use the table ROOSOURCE. The field ROOSTYPE specifies the type of datasource whether Transaction or attributes or text. You could write an abap program to filter the table and give you only master data datasources.
    Assign points if helpful
    Regards.

  • ABAP code to Enhance Master data

    Hi Friends,
    can  you send me a sample ABAP code to enhance the master data
    Regards
    Hari

    Dear Adluru Hari Varma ,
    Hereunder an example of code to enhance Master Data
    0ART_SALES_ATTR for 0MAT_SALES:
    EXIT_SAPLRSAP_002
    DATA: l_biw_mvke_s LIKE biw_mvke_s,
    l_tabix LIKE sy-tabix,
    v_satnr LIKE mara-satnr.
    CASE i_datasource.
    WHEN '0ART_SALES_ATTR'.
    LOOP AT i_t_data INTO l_biw_mvke_s.
    l_tabix = sy-tabix.
    clear v_satnr.
    SELECT SINGLE satnr FROM MARA INTO v_satnr
    where matnr = l_biw_mvke_s-matnr.
    IF sy-subrc = 0.
    l_biw_mvke_s-zzsatnr = v_satnr.
    ENDIF.
    MODIFY i_t_data FROM l_biw_mvke_s INDEX l_tabix.
    ENDLOOP.
    ENDCASE.
    Also
    the user exit code zxrsau02 to populate the new fields .say you add field zzfield1, user exit code zxrsau02 can be like
    data : l_s_custattr like BIW_KNA1_S,
    l_zzfield1 like tablexyz-fieldabc,
    l_tabix like sy-tabix.
    case i_datasource.
    when '0customer_attr'.
    loop at c_t_data into l_s_custattr.
    l_tabix = sy-tabix.
    fill the new field
    select single fieldabc into l_zzfield1
    where ....
    l_s_custattr-zzfield1 = l_zzfield1.
    modify c_t_data from l_s_custattr index l_tabix.
    endloop.
    take a look some links on enhancement
    Enhancement
    User exit
    and download pdf 'enhancements in sap bw'
    here you can find the steps ...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59069d90-0201-0010-fd81-d5e11994d8b5
    hope this helps.
    Re: enhancements
    Check in SDN you will find more programs
    Hope it helps.Revert back to me if you have any queries
    Regards
    Bala

  • Exits to enhance sd data source

    Hi friends,
    I want to know how to enhance sd data source through cmod?
    Thanks.Your help will be appreciated.

    Hi,
    Make a search in SDN you can find similar cases also check the doc below.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0af763b-066e-2910-a784-dc6731660f46
    Regards.

  • Can we enhance LO Data Sources

    Can we enhance LO Data Sources with out own fields ?
    Please let me know how if the field is not available in LBWE Enhancement Pool
    thanks

    Hi,
    One of the note says that:
    <i>
    Add the required fields to the the SD communication structures using the Append method and use the LIS customer exits to fill the field.
               For information on enhancing the communication structures, see the documentation for the enhancements MCS10001, MCS50001 and MCS60001 (provided in transaction SMOD).
    After you enhance the communication structures (for example MCVBAP), you can then enhance the extract structure (for example MC11VA0ITM) with the relevant field in the Customizing cockpit (transaction LBWE), provided that the comunication structure is available in the selection.
               To display a delta, you must make sure that you can determine the status in the user exit before and after the document change.
               This varies from case to case and depends on from which table the field is filled.
               For example, you may occasionally have to obtain the information from the internal document tables (such as xvbap and yvbap).
    Refer to note 216448 for information on correctly populating the before and after image.
    Another way of adding user-defined fields to extract structures is to enhance the document tables, for example, VBAK, VBAP, VBEP tc.
               The fields can be filled in the general sales user exits, the delivery or the invoice.
    The fields added using an append are also available in the LogisticCustomizing Cockpit for enhancing the extract structures.
               With the latter procedure, bear in mind that the fields added to the document tables must be saved to the database with the information they contain.
               An advantage of this method is that there is no need for data retrieval in the LIS UserExit.</i>
    With  rgds,
    Anil Kumar Sharma .P

  • Master Data source for sales district or Region in CRM

    Dear All,
    Please let me know the Master Data source for sales district or Region in CRM.
    Thanks
    Regards,
    Sai

    Hi Tiest,
    Thanx for responding.
    U r right, our clint is upgrading from 4.6 to ECC.
    So as per the clients requirements, we are maintaining all the configs for Services in CRM.
    Services Data which was in 4.6 is being pulled put on flat files which needs to be loaded in CRM. So middleware would not be able to do this.
    What I am looking os some standard upload program.
    LSMW recording does not work.
    This I-Doc "CRMXIF_COND_REC_SLIM_SAVE_M", i am able to load a single record. But I am not able to find , how to make this function for multiple entries.
    IN standard we for loading master data thru I-docs, we map the values to the standard fields which are available in that I-Doc.
    But in this particular i-doc, there is a common field for which I need to define the field name and a field value..
    Till now, I am only able to define just one field name and a field value.
    I want this to word for mutliple entries.
    Hope u get my point.
    Thanx

  • Adding/Enhancing master data with a standard field?

    Dear Friends,
    I have to enhance master data 0VENDOR to add a field LFM1-LFABC (vendor ABC indicator) which is a standard SAP field in LFM1. How do i do that? How do you see which table/s the datasource 0VENDOR_ATTR is pulling data from in R/3.
    Thanks for your time and help
    Raj

    Hi,
    The procedure is like below.
    Take the datasource in which you enhance.
    1. If you enhancing in the LO datasaource, take the aprapriate communication strucute append the structure in that structure add the fields you wnat enhance.
    If you are enhancing other than LO you take extract structure append the structure and add the fields in that structure.
    2. Goto LBWE Tcode take the option called "Maintain Extract structure" take the fields which you enhanced from pool take push in to extract strucure.
    If you enhancing other than LO no need to do this.
    3. Goto RSA6, take datasource, goto change mode. The enhanced fields Hide option checked, reomove that tick and save it.
    4. Goto "CMODE" tcode, If project is already created for that enhancement goto disply mode. If the project is not created give the project name created and give the enhancemet name as "RSAP0001" and save it.
    in the component you can find 4 Function modules
    EXIT_SAPLRSAP_001 -> Transaction Data
    EXIT_SAPLRSAP_002 -> masterdata attributes
    EXIT_SAPLRSAP_003 -> Master data Texts
    EXIT_SAPLRSAP_004 -> Masterdata Hirarchies.
    Take the apprapriate FM and double click on it
    there you can find Include name. If you double click on it you can find ABAP editor.
    there we have to write the code
    example code will be like below.
    data: l_s_icctrcst like icctrcst,
    l_s_icctract like icctract,
    l_s_icctrsta like icctrsta,
    l_tabix like sy-tabix.
    case i_datasource. */ in BW 1.2B case i_isource.
    when '0CO_OM_CCA_1'.
    loop at c_t_data into l_s_icctrcst.
    l_tabix = sy-tabix.
    select single * from z0001 where kokrs = l_s_icctrcst-kok
    and kostl = l_s_icctrcst-kostl.
    if sy-subrc = 0.
    l_s_icctrcst-zfield1 = z0001-zfield1.
    l_s_icctrcst-zfield2 = z0001-zfield2.
    modify c_t_data from l_s_icctrcst index l_tabix.
    endif.
    endloop.
    when '0CO_OM_CCA_2'.
    when '0CO_OM_CCA_3'.
    when others.
    exit.
    endcase.
    This is example code.
    Thnaks
    DST

  • How to trace master data source (table-field)?

    Hello All,
    Please help, its Urgent!!
    I have the following 4 characteristic requirement in BW from PM/PS module.
    Master data source (format: table-field)
    AFVV-FSAVD - early start date
    AFVV-FSEDD - early finish date
    AFVV-SSAVD - late start date
    AFVV-SSEDD - late finish date
    can anyone tell me the procedure, how to find them in R/3 n if there r any standard business content for the same?
    Thanks in advance,
    JP

    Go to RSA5 Tcode in R/3, under SAP R/3 Application component, you can get PO/PS Components, and under that you can get PO-IO/PS-IO Components, here you can check all the vaialble master data datasources.
    KJ!!!

  • No master data source mainatenance for object

    Dear SDN.
    I want to look for master data for object but it gives message.
    No master data source mainatenance for object.
    What is going on wrong.

    Hi,
    When you are prompted for the infoobject in master data read you shoud give the main characteristic name, not the attribute name(attribute which is there in the data target). It will map the attribute automatically.
    Regards,
    Amruth

  • Which Master data Source is available for the field VBUK-GBSTK (Doc Status)

    Hi
    Which Master data Source (Attr) is available for the field VBUK-GBSTK (Document Status).
    Please help me.
    Thanks
    Mannev.

    Hi
    Thanks for your reply.
    That is Transaction data source. I want master data source.
    Thanks,
    Mannev.

  • Which Master data Source (Attr) is available for the field VBUK-GBSTK

    Hi
    Which Master data Source (Attr) is available for the field VBUK-GBSTK (Document Status).
    Please help me.
    Thanks
    Mannev.

    Hi Mannev.
    I don't think that you will find GBSTK in any master data source. It is however available in 2LIS_11_VASTH.
    Hope it helps.
    BR
    Stefan

  • How to enhance copa data source.

    Hi,
    I have to enhance copa data source 1_co_pa300beka_o01. Actually I have to add one field vstel from VBAP table to this data source.
    Can you tell me full procedure about enhancing data source ?
    It can not be done directly. I think i have to delete and re-create data source in R3 system.
    For this i have to do all thing in KEB0 .
    Am i right?
    So please tell me full procedure to enhancing copa data source also tell me if i enhance copa data source , which type of problem can be come at BW side.
    Thanks
    Devesh Babu

    I'm not sure if we can enhance CO-PA datasources. Even if you can enhance, whenever there are changes to the Operating concern in R/3 you would have to delete and re-create the datasource. While doing this you would have to re-do the appends again. DS 2lis_11_VAITM extracts data from VBAP. Check if the datasource already brings this field. Otherwise enhance it. In the CO-PA dataflow lookup the DSO which has VBAP data from the datasource and get the necessary field.
    Other option is to ask functional folks to add the field to the CO-PA operating concern.

Maybe you are looking for

  • Database access problem in JApplet

    Hi, I have a Swing application that accesses MS Access to store, query data. This app is running absolutely fine. I'm using Sun's ODBC-JDBC bridge driver and created a DSN in Windows for this. Now I have changed the main program (the main menu progra

  • Using B2B for sending PAYMUL files in EDIFACT format

    Hi B2B Gurus, One of our client has the following requirement. 1) Create Payment batches in Oracle AP and Format the payments using an EDI format program. 2) Translate the EDI format file into PAYMUL EDIFACT format. 3) Send the PAYMUL file across to

  • Who's Who

    Hi Friends, We moved our ESS objects from Dev to QA both in R/3 and also in Portal.  In QA,  the Who's Who screen is entirely different from the Dev.  It looks like the PZ01 screen.  whereas in Dev, only the fields i have choosen are coming.  Can any

  • Cables to connect my PCI-7334 motion to one UMI and one SSR backplane?

    i want to connect a PCI 7334 to one UMI and one SSR backplane, what cables do i need (number)

  • Best Practices - Transports

    Hi there In my brief Portal experience, I have only ever transported stuff (iviews, roles etc.) using the manual approach provided in the portal under System Admin >> Transports. Now, one of the other portal implementations that our company has done