Problem enhancing 0CUSTOMER_ATTR extractor

Hi gurus!
I´ve tried to enhance the standard datasource 0CUSTOMER_ATTR , appending some custom fields to the extraction structure.
I followed the following procedure:
1. Go to RSA6.
2. Select the Data Source.
3. Select display Data Source (Ctr+F2).
4. Double click on the Extract structure.
5. Click on the Append Structure.
6. Add the required field .
7. Activate the Append Structure.
8. Go to CMOD.Give the Project, select Display.
9. Click on ZXRSAU01.
10.you have the bellow exits:
a).Transaction data: EXIT_SAPLRSAP_001
b).Master data attributes: EXIT_SAPLRSAP_002
c).Master data texts: EXIT_SAPLRSAP_003
d).Master data hierarchies: EXIT_SAPLRSAP_004
11. select Master data attributes: EXIT_SAPLRSAP_002,then you have to write the ABAP CODE
12. save and activate.
13. check the data in RSA3.
When i returned to the RSA6 transaction to unhide the fields they are not there!
I tried to test with the RSA3 and the enhanced field is being populated. Then i tried to replicate the Data source in the BW system, but the new field is not transferred to BW.
I also check with RSA2 and in the fields TABS, my custom included fields appear with the 'A' .
Please can someone help me with this bug??
Best Regards,
Telmo S.

Hello!
Thank you all for your answers but my problem is not yet solved.
Arminder Singh: I´ve followed that procedure. It´s not the first time i enhance a standard datasource and i´ve never had this problem.
Pankaj@bcone: When i try to generate the datasource an information message appear saying that there is a standard field with a DEC definition and that could lead to a short dump if the length of the field grows too much. This information message is blocking the datasource generation?  
debajyoti08: I don´t even have the fields available to unmark the "Hide" option...
Is there some kind of a problem with the field "UMSAT" in this standard datasource??
Best Regards,
Telmo S.
Edited by: Telmo S. on Dec 16, 2009 11:52 AM

Similar Messages

  • How to enhance Standard Extractor for 0CUSTOMER_ATTR

    Hi,
    I need to enhance the standard extractor of 0CUSTOMER_ATTR in order to populate the newly added attributes.
    I have few questions:-
    1) Will there be any impact of manually adding attributes to 0CUSTOMER on the data flow/where used list of 0CUSTOMER.
    2) In order to get the master data for newly added attributes we will need to enhance the extractor. Could you let me know the entire process of enhancing the standard extractor.
    3) Will it be safe to make a copy of 0CUSTOMER as ZCUSTOMER, add the new attributes in ZCUSTOMER and use ZCUSTOMER for our requirement. In this case also we will need to enhance the extractor.
    Your inputs will be helpful.
    Thanks,
    Naveen Kr. Choudhary

    1) Will there be any impact of manually adding attributes to 0CUSTOMER on the data flow/where used list of 0CUSTOMER.
    No there will not be any impact for the where used list of 0CUSTOMER info object, there will be effect once the enhanced data source is replicated to BI side.
    2) In order to get the master data for newly added attributes we will need to enhance the extractor. Could you let me know the entire process of enhancing the standard extractor.
    SE11 --> create the Structure
    Tcode: RSA6 -> Double click on the Data source --> Now in the DS:customer version screen you can see the extract structure name --> double click on it -->Next you will find an option of Append Structure button --> click on it -->
    Add the necessary field's in the Append Structure with Component Type:. Before you exit, make sure that you activate the
    structure by clicking on the activate button.
    Next
    -->You need to confirm that the Added filed has been added to the DataSource and that it will be available to BW. When you go  back at the Postprocess Datasource and Hierarchy screen(RSA6), select the same DataSource again and press the Change DataSource button .
    Check for the filed that you had appended, it will be appeared at the bottom of the extract structure.
    Once this is done now the appended fileds are ready in DS, now we need to populate the data from the corresponding tables.
    For this Select the Data source 0customer_attr --> click on Function enhancement --> enter the project name and next enter the Enhancement RSAP0002 This enhancement has four components that are specific to each of the four types of R/3
    DataSources:
    Transaction data EXIT_SAPLRSAP_001
    Master data attributes EXIT_SAPLRSAP_002
    Master data texts EXIT_SAPLRSAP_003
    Master data hierarchies EXIT_SAPLRSAP_004
    With these four components , any R/3 DataSource can be enhanced suing the above 4 Function module. In this case, you are enhancing a Master data DataSource, so you only need EXIT_SAPLRSAP_002 .
    Next we need ABAP developer in order to enahance the DS and write the logic to populate the values to the filed from the source table.
    once this is done save the code and activate it.
    Next fill the set up tables and  Goto RSA3 tcode check the data source and check for the fileds that were appened are populated with the values or not.
    (for more detailed steps our friend Chowdary has send u the links go through them)
    3) Will it be safe to make a copy of 0CUSTOMER as ZCUSTOMER, add the new attributes in ZCUSTOMER and use ZCUSTOMER for our requirement. In this case also we will need to enhance the extractor.
    I dont think there is a need for creating a new ZCUSTOMER , you can use the standard one.
    Edited by: prashanthk on Aug 13, 2010 9:02 AM

  • Enhance BW Extractor - coding problems

    hi gurus
    i need to enhance extractor 0customer_attr so that field from KNKK-GRUPP is pulled in along with 0customer_attr extraction
    so i enhance the extractor using append and type it in the data element, PROVIDED zzxyzno in the field name and extracted it and UNHIDE it.
    now i wrote below code:
    GRUPP
    DATA: L_S_INFOSTRU LIKE biw_kna1_s.
    CASE I_DATASOURCE.
    WHEN '0ustomer_attr'.
      DATA: biw_kna1_s_data LIKE biw_kna1_s.
      LOOP AT C_T_DATA INTO L_S_INFOSTRU.
        L_TABIX = SY-TABIX.
    biw_kna1_s_data-ZZXYZNO = KNKK-GRUPP
      ENDLOOP.
    ENDCASE.
    but it is still not pulling in values from extractor...
    can you please correct my code ???

    thank u sir
    can you please give me the correct code?
    what needs to be written in Read **
    where read needs to be inserted etc. etc.
    if u refering some thread can u please give that thread
    or let me know !!

  • Enhance BW Extractor -abap coding error

    hi gurus
    i need to enhance extractor 0customer_attr so that field from KNKK-GRUPP is pulled in along with 0customer_attr extraction
    so i enhance the extractor using append and type it in the data element, PROVIDED zzxyzno in the field name
    Activated it and UNHIDE it.
    now my abap code in CMOD in ZXRSAU01 for EXIT RS*01 DOESNT WORK...
    now i wrote below code:
    DATA: L_S_INFOSTRU LIKE biw_kna1_s.
    CASE I_DATASOURCE.
    WHEN '0ustomer_attr'.
    DATA: biw_kna1_s_data LIKE biw_kna1_s.
    LOOP AT C_T_DATA INTO L_S_INFOSTRU.
    L_TABIX = SY-TABIX.
    biw_kna1_s_data-ZZXYZNO = KNKK-GRUPP
    ENDLOOP.
    ENDCASE.
    but it is still not pulling in values from extractor...
    can you please correct my code ???

    Try something like
    FIELD-SYMBOLS: <customer_attr> TYPE biw_kna1_s.
    CASE i_datasource.
      WHEN '0CUSTOMER_ATTR'. " Upper case
        LOOP AT c_t_data ASSIGNING <customer_attr>.
          SELECT grupp INTO <customer_attr>-zzxyzno
            FROM knkk UP TO 1 ROWS
            WHERE kunnr = <customer_attr>-kunnr.
          ENDSELECT. " not whole primary key
        ENDLOOP.
    ENDCASE.
    If performance problems arise ("SELECT in a LOOP"), first fill an internal table with a FOR ALL ENTRIES IN c_t_data in a sorted internal table (kunnr and grupp field, key kunnr) , then in the LOOP use a READ TABLE. (mandatory if you use such exits on big extractions.
    Regards,
    Raymond

  • Enhance BW Extractor - Transactional data ABAP CODING ERROR

    i need to enhance CRM extractor with additional field.
    This is transactional data so i used Exit_rs_001
    Here is the extractor result -
    Guid...date...........objectid...item guid
    1122......1.1.10....901..........8811
    1122......2.1.10....901..........8812
    1123......1.1.10....902..........8813
    1123......2.1.10....902..........8814
    now i need field Product id in it which is called from DB Table CRMD_SRV_REFOBJ
    itemguid...referencekey...product
    8811............01.................110011
    8812............02.................110012
    8813............03.................110013
    now i want to extract data--
    Guid...date...........objectid...item guid...product
    1122......1.1.10....901..........8811.........110011
    1122......2.1.10....901..........8812.........110012
    1123......1.1.10....902..........8813.........110013
    so i appended the extractor...with field zproduct
    FOLLOWING Code doesnot work:::
    DATA: L_S_INFOSTRU LIKE ziw_orderma_i.
    CASE I_DATASOURCE.
    FIELD-SYMBOLS: <PRO_01> TYPE ziw_orderma_i.
    CASE i_datasource.
    WHEN 'ziw_orderma_i.'. " Upper case
    LOOP AT c_t_data ASSIGNING <PRO_01>.
    SELECT PRODUCT_ID INTO <PRO_01>-zZPRODUCT
    FROM CRMD_SRV_REFOBJ UP TO 1 ROWS
    WHERE ITEM_GUID = <PRO_01>-CRMD_SRV_REFOBJ.
    ENDSELECT. " not whole primary key
    ENDLOOP.
    ENDCASE.

    actually
    coding doesnt give any error
    but in output in rsa3 i dont see any data
    it worked fine wit the same code for master data datasource in exit...2
    now same code different parameters doesnt work in exit..1 for transactional data.

  • Enhance CRM extractor for BW

    Hi all,
      To enhance CRM extractors we enhance the BDoc and then used the BADI CRM_BWA_MFLOW or CRM_BWA_SFLOW whichever is applicable to extract the data for the enhanced fields and fill the data source.
    Also we go to transaction RSA6 enhance the datasource structure.
    Now my basic question is why User exists are also enhanced. The procedure is
    In transaction RSA6 select the datasource structure and choose the menu "Function enhancment". This goest to CMOD transaction and there the user exit "EXIT_SAPLRSAP_001" is enhanced
    Could someone explain me why some coding is done in the user exit when the data which needs to be send from the BDoc is already filled in the badi implementation. When does this user exit actually used. In what scenarios do we use this user exit along with the badi implementation.
    Any idea. Thanks for the continued support and I wish "Happy new year" to all of you.
    Thanks in advance
    Jothi

    Hi all,
      To enhance CRM extractors we enhance the BDoc and then used the BADI CRM_BWA_MFLOW or CRM_BWA_SFLOW whichever is applicable to extract the data for the enhanced fields and fill the data source.
    Also we go to transaction RSA6 enhance the datasource structure.
    Now my basic question is why User exists are also enhanced. The procedure is
    In transaction RSA6 select the datasource structure and choose the menu "Function enhancment". This goest to CMOD transaction and there the user exit "EXIT_SAPLRSAP_001" is enhanced
    Could someone explain me why some coding is done in the user exit when the data which needs to be send from the BDoc is already filled in the badi implementation. When does this user exit actually used. In what scenarios do we use this user exit along with the badi implementation.
    Any idea. Thanks for the continued support and I wish "Happy new year" to all of you.
    Thanks in advance
    Jothi

  • Enhancing HR Extractors

    Hi Gurus,
    I am getting into a HR project where we have to enhance some of the HR data sources (Benefits, PA, time and payroll). i want to know the procedure to enhance HR extractors. Is it the same as other datasources or do we have to do different when handling cluster tables?
    normally we append fields to our extract structure and write code in cmod is it the same for HR datasources?
    can someone give me guidence or necessary steps to be taken when enhancing HR datasources especially when handling fields from cluster tables?
    would be great help
    Pallavi

    Hi,
    It is same for HR  too.First append structure adding new filed that you need then feed this with code in cmod.Please check the link below that is showing HR  datasource enhancement.
    How to enhance 0HR_PT_2 DataSource.
    Regards.

  • Field is blank after enhancing 0Customer_attr master data in R3

    Hi,
    As per requirement to provide "Risk Category" ( filed - CTLPC) in Customer master data.
    I enhanced 0Customer_attr Master data and added one filed ZZCTLPC.
    I also written a user exit in Include ZXRSAU02 (Function Module - EXIT_SAPLRSAP_002) -
    CASE I_DATASOURCE.
      WHEN '0CUSTOMER_ATTR'.
      break-point.
        DATA: LV_BIW_KNA1_S TYPE BIW_KNA1_S,
              LV_KNKK TYPE KNKK.
        LOOP AT I_T_DATA INTO LV_BIW_KNA1_S.
          SELECT SINGLE * FROM KNKK INTO LV_KNKK
          WHERE KUNNR = LV_BIW_KNA1_S-KUNNR.
          IF SY-SUBRC = 0.
            LV_BIW_KNA1_S-ZZCTLPC = LV_KNKK-CTLPC.
          ENDIF.
          MODIFY I_T_DATA FROM LV_BIW_KNA1_S INDEX SY-TABIX.
        ENDLOOP.
    ENDCASE.
    I am able to see data in RSA3 for 0Customer_attr - ZZCTPLC filed in Dev system.
    When I transported the things to Quality, it shows me blank field.
    I have checked that extract structur eis active, Include is active but it shows blank.
    Even in debugg mode it does not stop at braek-point given in exit code, while same works fine in Dev system.
    Please suggest the solution.

    hi, thats why i am also puzzled.
    I have done transactional , masterdata source enhancement before.....but never faced such prob..
    if it is working correct in dev, it used to work correct in qa..
    any way si give u all details..
    project - zbiw i sactive.
    it has function modules..EXIT_SAPLRSAP_001, EXIT_SAPLRSAP_002, both are active..
    inside EXIT_SAPLRSAP_002 , include ZXRSAU02 is also active...
    any input from ur side will be a gr8 help..i m lost !!

  • Problem Enhancing 2LIS_03_BX and BF  - no records added

    Problem Enhancing 2LIS_03_BX and BF
    Hi, i am enhancing 2LIS_03_BX and 2LIS_03_BF
    as i added to the cube 0MAT_PLANT.
    In order to get the value i update the UPDR (3.x)
    with formula: RIGHT( 11, 0Material )
    which is correct.
    So far is fine.
    The UPDR get activated.
    And if i load the cube gets fine.
    But i face an issue when transporting it to QAS as, despite the Transport going fine and the UPDR being fine, when i load data using BX or BF it does not add records.
    I already set up all necessary stuff in RC, MCNB, LBW, OLI1Bw...
    I tested it with and without such little enhancement and without enhancement works perfect.
    With enhancement described here does not add records.
    Did any face a similar situation ?
    thanks a million
    alex

    Thank you all for your input.
    Points awarded.
    Though here is the case:
    alright.
    is all a bit weird.
    The scenario is as follows. having a cube copy
    from 0IC_C03 fed from 2LIS_03_Bx and 2LIS_03_BF.
    I enhanced the cube with 0DISMM and 0MAT_PLANT
    on UPDR from 2LIS_03_BX I included
      0DISMM is updated with a small rotine
      0MAT_PLANt updated with brief formula
    I saved + activated.
    Was working on DEV.
    But once transported to QAS all was fine (activated and so on).
    All preliminary steps were done on ECC side (tnx BF11,... LBWG, then mCNB,load...)
    But when loading data was transfering records but not adding them
    I went through all the custo on R3 side.
    Loaded and delted several times from cube and loaded again.
    I finally tried to undo the changes in DEV thus leaving the flow to its original status.
    Then loading again -in DEV.
    All went fine but in DEV even with the changes all was fine.
    I decided to move the flow that put it to its original status to QAS.
    Loaded BX  => went fine
    added records to cube.
    So basically i removed the changes (a formula plus a little routine)
    Transported to QAS.
    Then added the changes again.
    Transported including changes to QAS.
    All is working fine now.
    Just lost few days going through the entire pieces Stocks is entailed of.
    Hope this weird solution comes to someone´s mind if in a similar scenario as a last resort.

  • Problem with COPA extractor 1_CO_PA ...

    Hi all,
        I am facing a problem with COPA extractor where delta is bringing in records which have been commited to database more that 6 hours ago.  I understand that according to a note that COPA extractors have a default safety interval of 30 minutes but 6 hours is too much.
    Is there any way I can change that?  Is there any customizing option?  Note 392876 explans how to change the safety interval to 5 minutes but I dont know if it is applicable for our patch level? 
    We are at PI->2004_1_500 patch SAPKIPZI69.
    Also the safety limit is also maintained in ROOSOURCE-DELTASAFE2 field, should I just change it there?
    any help is appreciated...
    thanks

    I see that you are not so novice!
    Please, how can I check the time and time zone in R/3 and BW?
    Thank you in advance

  • Enhancing CRM Extractors

    Hello Gurus,
       I have done some enhancement for 0CRM_SRV_PROCESS_I data source using user exit program by calling CRM_ORDER_READ function module.
    With this we are experiencing some performance problem as CRM_ORDER_READ is bit slow.
    That was my concern till today......
    But today when I start debugging the DS, I came to know that standard extractor   itself calls CRM_ORDER_READ FM to fill some standard fields. So, I thought of enhancing the DDS at WA by adding segments and it's fields and thought that we dont need to write code for this (I mean no user exit program, but need minimum code in MAP FM). But, even I assigned segments to fields, data is not populating. The reason I found here that these enhanced filed's are not included into standard DS's ..MAP_I function module.
    Here my question is, do we have to generate any thing to include those fields into the FM? If Yes, from where? Or do we have to write user exit program to fill the fields?
    Or any other ways can we solve this problem?
    appreciate your help....
    Thanks
    RKR...

    Hi RKR,
    Yes if you're using the function crm_order_read, it take quite time,,, but it's very powerfull, since it will take a lot of information from there. You just use 1 function to get so many information about order.
    I suggest you 2 ways :
    1. Instead using that function, you can fetch the directly to the table according to your data's need. e.g. table crmd_orderadm_h, etc.
    Or.
    2. You make small program in BW to get data from CRM (using fm: crm_order_read), then you put the data to some table in BW.
    Then, you create generic datasource whose type is <b>view -> get data from that table in BW </b> ( not a function module).
    That small program can be scheduled periodically / you use process chain in order to run :
    1. the small program
    2. fetching those data from table using generic datasource whose type is view.
    Hopefully it can helps you a lot ...
    Best regards,
    Niel.
    (Many thanks for any points you choose to assign).

  • Problems enhancing

    Hello, I've just started evaluating Kodo and JDO in general this week.
    After several successful days of playing, a new problem has cropped up, and
    I'm not quite sure why....
    I've been using the eclipse plugin, and I started getting build problems
    during the enhancement process. The dialog box gives me the following
    error:
    "The Enhancer failed. The message includes was:
    javax.jdo.JDOFatalInternalException:
    java.lang.IllegalArgumentException:java.lang.NullPointerException
    NestedThrowables:
    java.lang.IllegalArgumentException:java.lang.NullPointerException"
    I tried to get more a specific message by running the enhancer from the
    command line, but when I run either jdoc or java
    com.solarmetric.kodo.enhance.JDOEnhancer <jdo file> I get the following
    error:
    Exception in thread "main" sun.misc.InvalidJarIndexException: Invalid index!
    at sun.misc.URLClassPath$JarLoader.getResource(Unknown Source)
    at sun.misc.URLClassPath.getResource(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Neither of these enhancement methods gave me any trouble until yesterday,
    when I must have done ..... something (no idea what) that would cause them
    to fail. Anyone seen these before? Any ideas?
    Laura

    I changed the logging properties for kodo, and I have a slightly more
    informative stack trace from the command prompt:
    - com.solarmetric.kodo.meta.JDOMetaDataParser@52068d: parsing source:
    file:/C:/views/SlaybaughLJ_ATOS_local/ATOS_src/bin/busserv/ATOSCoreAbstracti
    ons/ATOSCoreAbstractions.jdo
    Exception in thread "main" sun.misc.InvalidJarIndexException: Invalid index!
    at sun.misc.URLClassPath$JarLoader.getResource(Unknown Source)
    at sun.misc.URLClassPath.getResource(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Does that help any?
    "Laura Slaybaugh" <[email protected]> wrote in message
    news:[email protected]...
    Sorry about the delay in replying to this, I thought I sent this out
    Thursday...
    "Patrick Linskey" <[email protected]> wrote in message
    news:<[email protected]>...
    Is it possible to get the full stack trace for the NPE from the dialog
    box, or are you only presented with the message that you posted?What I posted was all that appeared in the dialog box. Is there a way toget
    at the full stack trace?
    The error from the command line seems to indicate that an error happened
    when dealing with a corrupt jar file. Did you make any modifications to
    your jar files recently?I haven't been compiling my program into a jar. And I have not touched any
    other jars that I am aware of. But I did notice that shortly before I
    started recieving the message, Eclipse crashed on me. Could that have
    corrupted the jars, somehow? And if so, why would it seem that building
    through eclipse would bypass the InvalidJarIndexException and give me a
    different error?
    Finally, can you send us the complete stack trace for the
    command-line-generated exception? It looks like that's only a partial
    stack.What I provided was the entire stack trace that was printed to screen.
    Laura
    "Patrick Linskey" <[email protected]> wrote in message
    news:[email protected]...
    Is it possible to get the full stack trace for the NPE from the dialog
    box, or are you only presented with the message that you posted?
    The error from the command line seems to indicate that an error happened
    when dealing with a corrupt jar file. Did you make any modifications to
    your jar files recently?
    Finally, can you send us the complete stack trace for the
    command-line-generated exception? It looks like that's only a partial
    stack.
    -Patrick
    On Thu, 01 May 2003 11:07:15 -0400, Laura Slaybaugh wrote:
    Hello, I've just started evaluating Kodo and JDO in general this
    week.
    After several successful days of playing, a new problem has croppedup,
    and I'm not quite sure why....
    I've been using the eclipse plugin, and I started getting buildproblems
    during the enhancement process. The dialog box gives me the following
    error:
    "The Enhancer failed. The message includes was:
    javax.jdo.JDOFatalInternalException:
    java.lang.IllegalArgumentException:java.lang.NullPointerException
    NestedThrowables:
    java.lang.IllegalArgumentException:java.lang.NullPointerException"
    I tried to get more a specific message by running the enhancer fromthe
    command line, but when I run either jdoc or java
    com.solarmetric.kodo.enhance.JDOEnhancer <jdo file> I get thefollowing
    error:
    Exception in thread "main" sun.misc.InvalidJarIndexException: Invalid
    index!
    at sun.misc.URLClassPath$JarLoader.getResource(Unknown Source)
    at sun.misc.URLClassPath.getResource(Unknown Source) at
    java.net.URLClassLoader$1.run(Unknown Source) at
    java.security.AccessController.doPrivileged(Native Method) at
    java.net.URLClassLoader.findClass(Unknown Source) at
    java.lang.ClassLoader.loadClass(Unknown Source) at
    sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at
    java.lang.ClassLoader.loadClass(Unknown Source) at
    java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Neither of these enhancement methods gave me any trouble until
    yesterday, when I must have done ..... something (no idea what) that
    would cause them to fail. Anyone seen these before? Any ideas?
    Laura--
    Patrick Linskey
    SolarMetric Inc.

  • Enhance 0CRM_MKTATTR_ATTR extractor

    Hello all,
    I would like to enhance 0CRM_MKTATTR_ATTR standard CRM extractor to be able to view in reporting the field "attribute set"
    Could anybody give some ideas about how to do it?
    Thanks in advance.
    Carmen

    hi Carmen,
    there is another solution rather than to enhance the 0CRM_MKTATTR_ATTR DataSource. Unfortunately I'm currently on a project where I don't have access to a CRM system and can't give you the exact steps.
    In CRM3.0 there was another way to go... similar to extracting Classification data from R/3. The option is still there in CRM4.0 (and probably even in CRM5.0, but that's a pure guess on my side) and you can get there via the IMG (transaction SPRO). I believe you'll find the necessary info here:
    http://help.sap.com/saphelp_crm40/helpdata/en/2b/59dc49c50911d3b29b0050da3ee986/frameset.htm
    If not I'll have to contact some colleagues from my previous project or have a look at my docu at home.
    Cheers,
    Raf

  • Steps - Enhancing an extractor

    I have added the new field in the extractor. When I checked the Datasource using RSA6, The new field appears.
    I will need to update the user exit to populate this field.
    Is that all ? Do we need to do anything with Data source to add the new fields or something ?

    i dont think so,
    if you have added the field and is visible in rsa6 and u have done the function enhancement ins cmod > rsap001 > exit_saplrsap_001/2/3/4 that should be it..
    if it is LO extractor it has a differenct process for doing a full load
    Regards,
    BWer
    Assign points if helpful.

  • Problem in 2LIS_02_SCN Extractor

    Hi All:
         We are facing problem in purchasing 2LIS_02_SCN extractor.To explain the problem, (i.e) One purchase order has many line item and more than one schedule line based on the size .
                  2LIS_02_SCN extract incorrect information when the vendor confirms more/less quantities than schedule quantity.
    1. In purchase order , for line item , we have scheduled line item 1 and 2 as 200 qty, 500 qty respectively.
    2. If vendor confirms 215 quantity for 1st schd.line and
       180 qty for 2nd sched qty.The extra quantity 15 goes to 2nd schedule line ... Extractor 2LIS_02_SCN
        displays:
    Seq.  .     CNFQTY      (OPNQTY     SCLQTY      TTLQTY     ( Sch
    3     200     0     200     200     1
    3     15     485     500     15     2
    4     480     5     0     495     2
    Waiting for your inputs...
    Thanks alot in advance..
    Rgds
    MSK

    Hi Kedar!!
        Its not possible to write start routine for this problem..
    Rgds
    MSK

Maybe you are looking for

  • Error in Directory Cache Update

    Hi, because we changed from two SLDs (PROD & DEV) to one (DEV) we did all changes like given in note 720717. Everything seems to run fine except the Adapter Engine - ok parts of it. When checking the Cache-Infos in Integration Directory we get follow

  • Background job Problem

    Hi, I scheduled a Program for background job running for every 10 minutes. When i go to SM37  I am seeing all the background jobs, it is creating a newline for every 10 min in the list. my problem is , Is there any settings to change for showing only

  • Next previous button in gallery

    Hi guys, been a while, hope everyone is well.  I am having a problem implementing a next/previous button on an image once it has been enlarged in my gallery.  I have done it in pure as3 but all tutorials seem to use the timeline.  I will post my code

  • Oracle Apps Adapter issues

    Hi, I have just downloaded and installed SOA 11.1.1.4.0 and am trying to work through the basic labs. I would like to be able to use the Oracle Apps adapter, but am getting the below error when trying to update the apps adapter (to change the status

  • BAPI to get the manager of a vacant postion

    Hi all, I have a requirement where i have to get the manager of the vacant position.Is there any BAPI or FM for the same? Regards Prathima