CL_SY_IMPORT_MISMATCH_ERROR  for extractor

hi Experts,
First up I am sorry if I am posting this to wrong forum or if u find this as a repost because I absolutely have no idea of the specifications of BW forums and I dont know where i wud get the soltuion from.
I am an abaper and have got this issue for BW to sort. I am using RSA3 transaction for extractor 2LIS_11_VAHDR and there in the Q § A i m getting the error of CL_SY_IMPORT_MISMATCH_ERROR . I do understand that its a mismatch of structure. Now the interesting part comes. the same transaction with the same structure 2LIS_11_VAHDR works fine in Development and it has been transported to Testing. I do not understand where to find the error since the structures too are same in both of the system.
Any solutions??
thanks ,
Gaurav

It not depends by the structure, but how you fill that.
It could bu useful to check the exit below:
EXIT_SAPLRSAP_001
EXIT_SAPLRSAP_004.
Regards,
Sergio
Is it useful for you or not?
Message was edited by: Sergio Locatelli

Similar Messages

  • Need a code for Customer exit for extractor 0WBS_ELEMT_ATTR

    Hi Guys,
    I need a code for following requirement.
    I have appended some fields to standard extractor 0WBS_ELEMT_ATTR which normally takes data from PRPS table. But the new fields will be getting data from PRTE and PROJ table. with common keys. Following is my code which is not working. Please help me out, I am not good in abap. Please note some lines are commented.
    Thanks,
    H
    CODE:::::
    form 0wbs_elemt_attr  tables i_t_data structure biw_prps.
      data: it_wbs_prps like biw_prps occurs 0.
      data wa_prps like it_wbs_prps.
    data: begin of it_wbs_prps occurs 0,
             PSPNR like prps-pspnr,
             POSID like prps-posid,
             PBUKR like prps-PBUKR,
             IZWEK like prps-IZWEK,
             USR10 like prps-USR10,
             USR00 like prps-USR00,
             USR02 like prps-USR02,
             OBJNR like prps-OBJNR,
           end of it_wbs_prps.
    data wa_prps like it_wbs_prps.
      data: begin of it_wbs_prps1 occurs 0,
              PSPNR like prps-pspnr,
              POSID like prps-posid,
            end of it_wbs_prps1.
      data wa_prps1 like it_wbs_prps1.
      data: begin of it_wbs_prte occurs 0,
              posnr like prte-posnr,
              PSTRT like prte-PSTRT,
              PENDE like prte-PENDE,
              ESTRT like prte-ESTRT,
              EENDE like prte-EENDE,
              ISTRT like prte-ISTRT,
              IENDE like prte-IENDE,
            end of it_wbs_prte.
      data wa_prte like it_wbs_prte.
      data: begin of it_wbs_proj occurs 0,
              PSPNR like proj-pspnr,
              PLFAZ like proj-plfaz,
              PLSEZ like proj-plsez,
            end of it_wbs_proj.
      data wa_proj like it_wbs_proj.
    refresh: it_wbs_prte, it_wbs_proj.
    *it_wbs_jest.
    if i_t_data[] is not initial.
    Get data from PRPS WBS Master Data
         select pspnr posid PBUKR IZWEK USR10 USR00 USR02 objnr
           into corresponding fields of table it_wbs_prps
           from prps
            for all entries in i_t_data
          where POSID = i_t_data-POSID.
         sort it_wbs_prps by posid.
    Get data from PRPS1 WBS Master Data
          select pspnr posid
           into corresponding fields of table it_wbs_prps1
            from prps
            for all entries in i_t_data
         where POSID = i_t_data-POSID.
        sort it_wbs_prps1 by posid.
    Get data from PRTE Scheduling Data for Project Item
         if it_wbs_prps1[] is not initial.
         select posnr PSTRT PENDE ESTRT EENDE ISTRT IENDE
           into corresponding fields of table it_wbs_prte
           from prte
            for all entries in it_wbs_prps1
          where posnr = it_wbs_prps1-pspnr.
         sort it_wbs_prte by posnr.
         endif.
    Get data from PROJ Project Master Data
         if it_wbs_prps1[] is not initial.
         select pspnr PLFAZ PLSEZ
           into corresponding fields of table it_wbs_proj
           from proj
           for all entries in it_wbs_prps
          where pspnr = it_wbs_proj-pspnr.
         sort it_wbs_proj by pspnr.
         endif.
    loop at i_t_data.
       clear: wa_prps1, wa_prte, wa_proj.
       read table it_wbs_prps into wa_prps with key
                  posid = i_t_data-posid binary search.
       read table it_wbs_prte into wa_prte with key
                  posnr = wa_prps1-pspnr.
       read table it_wbs_proj into wa_proj with key
                  pspnr = it_wbs_proj-pspnr.
             i_t_data-zzPBUKR = wa_prps-pbukr.
             i_t_data-zzIZWEK = wa_prps-IZWEK.
             i_t_data-zzUSR10 = wa_prps-USR10.
             i_t_data-zzUSR00 = wa_prps-USR00.
             i_t_data-zzUSR02 = wa_prps-USR02.
              i_t_data-zzPSTRT = wa_prte-PSTRT.
              i_t_data-zzPENDE = wa_prte-PENDE.
              i_t_data-zzESTRT = wa_prte-ESTRT.
              i_t_data-zzEENDE = wa_prte-EENDE.
              i_t_data-zzISTRT = wa_prte-ISTRT.
              i_t_data-zzIENDE = wa_prte-IENDE.
              i_t_data-zzPLFAZ = wa_proj-PLFAZ.
              i_t_data-zzPLSEZ = wa_proj-PLSEZ.
        modify i_t_data.
    endloop.
    endif.
    endform.                    " 0wbs_elemt_attr

    Hi,
    it_wbs_prps1 .
    If you are going to use this internal table to check for a null condition, shouldn't you first assign the data package to it?
    For example,   it_wbs_prps1 = i_t_data[].
    Because you are now using  it_wbs_prps1 to select data from a table and it doesn't have any data.
    Please check.
    -RMP
    Edit : Please ignore this. I didn't see that you are actually filling the internal table. Sorry!
    Edited by: RMP on Oct 18, 2010 12:16 PM

  • How to create an interface for extractors from CRM to BI/BW

    Hi Experts,
                    My aim is to bring in data from CRM source to BI/BW target so for that we have found few extractors in CRM side which we need to use in BI. I would like to know how i can achieve this. I knw we can use web services for this, but i want to knw the procedure involved in doing this. I have mentioned few extractors which has to come from CRM system to BI/BW target system. Current we dont have these extractors in our BI/BW system. Also we dont have the connection to that particular CRM source. Please advice what has to be done for the above.
    Extractors
    1. 0CRM_FM_BPO
    2. 0CRM_FM_FND
    3. 0CRM_FM_FND_ATTR
    4. 0CRM_FM_FND_EXPENSE_TYPE_TEXT
    Thanks in advance
    Shiva

    Hi,
    First we need to create a RFC Connection between CRM To BW system. BASIS persons will create this connection.
    [Connection between Source Systems and BW|http://help.sap.com/saphelp_nw70/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm]
    1.After that we can need to activate data sources in RSA5 in CRM system,
    2.post processing in RSA6 in CRM.
    3.Replicate source system in  BW system.
    those data sources will come to BW.
    Do Business content activation in BW. After you can create Info packages and load data.
    Regards,
    Madhu

  • Source System BW - what is "Customizing for extractors" etc.

    Hi,
    Can somebody explain IN DETAIL what is the purpose of
    1)Customizing for the extractors
    2)Transfer Global settings
    3)Transfer exchange rates
    I could not find any documentation in help.sap.com. Is there any documentation?
    thanks a lot

    Jay,
    1)Customizing for the extractors
    This is to modify/control the data transfer settings of the particular source system. It takes you to the SBIW screen (Implementation Guide) directly in the source system. Here you can control your datapacket size, number of datapackets for each IDoc etc. From this screen, you cal also maintain the datasources. All the activities realting to 'maintenance of datasources' can be accessed from here.
    2)Transfer Global settings
    Global tabls such as Fiscal Period tables, Fiscal variant values are transferred to BW from the R/3 system where they are maintained. Do a lookup on tables T00* in SE11 and you can see a bunch of tables.
    3)Transfer exchange rates
    Similar to the above tables, different exchange rates are maintained in the R/3 system. These gets transferred to BW. tables such as TCURR, TCURC, TCURV etc. These are called Global settings.
    Hope it helps
    Gova

  • Sequence issue for Extractor

    Hi All,
    We are facing problems with the delta record sequence in some of our extractors(QM, SD). How do we fix this issue.
    we are of 2004.1 Patch 5, Update Mode - Queued Delta.
    Thanks
    Niveda

    Hi Niveda,
    Please clerify (and check) that where is this sequence problem, at R3 side or in BW.
    In BW if you are using any datamart then chk at data target also. In ODS check via keys, how data is coming.
    My suggestion would be:
    1. if you are sure at R3 side then go for writing a start routine and try to sequence records while extracting them.
    Like say there are 3 records. Record 1, Record 2, Record 3 and thery are in different requests then you should have these requests in sequence, meaning req 1 for rec 1 and so on.
    2. Look for OSS note, may be patch upgrade needed (I am not sure of this but you can write to SAP for this also) .
    3. Check RODELTAM for different delta types and their working, in contrast to your source.
    4. Also check your update rules, is there any additional setting?
    Hope this helps.

  • MetaData Repository for Extractors

    Is there an equivalent to the BW MetaData Repository for R/3 extractors? I am putting together some documentation and need to include details on the R3 extractors? Thanks

    Hi Niten,
    May be this weblog by Roberto will be helpful..
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins
    Ashish....

  • How to transport a Enhancement Project for extractor (CMOD)

    Hi all,
    how can i transport a Function Enhancement for a R/3 extractor (created on the CMOD transaction)?.
    The extractor and the Structure Enhancement is already transported, but I go to SBIW and select the extractor under SAP-R/3 and select Function Enhancement, enter the project name and it's not transported.
    thanks a lot

    Hi Juan,
    Have you tried activating the components (under this project) and project in the target system.
    If you are unable to see the components/projects, you can try activating them in your development system, it will prompt for a transport request, which you can get imported into your target system. Hope it helps,
    Sree

  • PREDEC_OBJKEY not filled for extractor 0CRM_OPPT_H

    Hi all,
    within our customer's dataflow we load data from CRM (5.0) to BW (7.0). For loading opportunity header data (0CRM_C04), extractor 0CRM_OPPT_H is being used. However, the preceding opportunity is not being filled from CRM. I've checked RSA3 and no PREDEC_OBJKEY is filled for a opportunity with preceding opportunity.
    Does anybody know how to solve this problem? Already checked service.sap.com but i haven't found any valid notes.
    Thanks!
    Immanuel

    Note:
    Multiple relationship are possible for preceding opportunity (manually added to document flow), these are filled in Relations tab in transaction CRMD_ORDER within CRM.
    Edited by: Immanuel V on Nov 3, 2008 11:40 AM

  • Looking for extractor

    Hello All
    I am trying to trace back from the purchase order form. I am trying to include a particular field material group in BW. After looking up on the form I see that the field is from a structure ( data field matkl from T023)
    How do i know in which data source this field is present in? SO that I will know if I need to create an extractor for it or not.
    Thanks
    Dee

    Hi Dee:
       If you need to extract Master Data Texts for the InfoObject 0MATL_GROUP then you can use the DataSource 0MATL_GROUP_TEXT, its source is the Table T023T on ECC.
    If what you need is to extract Transaction data for Purchase Orders then you can use the DataSource 2LIS_02_ITM, there you can find the field MATKL. The source is the Table EKPO on ECC. For more details check this link http://help.sap.com/saphelp_nw70/helpdata/en/58/f6383fdb800804e10000000a114084/content.htm
    Regards,
    Francisco Milán.
    Edited by: Francisco Milan on Apr 28, 2011 3:13 PM

  • Which Setup Table for extractor 2LIS_08TRTLP

    Hi,
    Can anyone guide me which setup table i should execute if my extractor is 2LIS_08TRTLP?
    Thanks for your help!!
    Onn

    Hi Swetha:
      Use Transaction code SE11 or SE16 on R/3 to make sure the underlying tables used by the 2LIS_08TRTLP Extractor contain data. The main tables are:
    VTTK - Shipment Header
    VTTS - Stage of Shipment
    VTTP - Shipment Item
    LIKP - SD Document: Delivery Header Data
    LIPS - SD document: Delivery: Item data
    For the relations among the Tables take a look at the paper by Christopher Solomon "SAP Tables Relations", just google it to download a copy of the PDF file.
    Regards,
    Francisco Milán.
    P.S. One more thing: go to Transaction Code LBWE and make sure the DataSource 2LIS_08TRTLP is active, if not, activate it and fiill the Setup Table again.
    Edited by: Francisco Milan on Sep 2, 2010 11:22 PM

  • Looking for Extractor sourced from ECC table VMPA

    Hello Friends,
    Is there any business content extractor sourced from VPMA table in ECC.
    This table holds Project system WBS element to Sales order relationship.
    Thanks

    Hi
    Sorry for confusing you, BASOSOURCE contains Inter name. try with SE11 with where used list and select extraction structure in the next screen.
    If you got any extraction structure, then we can get the data source name
    Hope it helps
    Regards,
    Venkatesh

  • Transaction SAT for extractors

    I have some issues with the performance of some extractors. Can I use the runtime analyis tool (transaction SAT) for BW extractors?

    Hi,
    Yes, You can. You may need to use extractor back end programs.
    but we can find the steps which its take more time thru SM37 job log details.
    Actually at which step your facing performance problem while loading data into bw?
    Can we know the data source name?
    During  extraction time, ECC/BW servers have required free application servers to excute loads in time?
    Have you monitored data loads at SM58 while loading data from source to PSA?
    Thanks

  • Function Modules for Extractors

    Hi,
    how to find the existing Function Modules in Extractors.
    i am using FM like RSAX_BIW_GET_DATA_SIMPLE. please help me out to list all Function Modules.
    thanks in advance
    mageshbabu

    Hi Gurus
    I was just reading this thread and having one doubt.
    Would anybody pl tell me the difference between SMOD and CMOD transaction? As I understood we use CMOD to enhance any functional module .Am I right?
    Whats the use of SMOD. As indicated in this thread it is used to enhance SAP, but we are doing the same enhancement by CMOD. Aren't we?
    Pl help to clear this doubt.

  • Alternative for extractor 2LIS_02_S013  Vendor Evaluation InfoCube 0PUR_C02

    Hi BW Gurus
    Could some one advise me any alternative for 2LIS_02_S013  (Vendor Evaluation).
    Vendor evaluation data is required for my customer.
    At present 0PUR_C02 (Vendor evaluation) deactivated. due to miss match of fields S013, S013BIW1 and S013BIW2.
    We are facing MIGO posting error update terminated. Now i had deactivated S013 at LBW0.
    We already tried as per SAP note  Note 115192 and 818652.
    But thre is no use.
    Look forward to your valuble replays and points will be awareded .
    Thankyou

    Hi,
    There is no alternative alternative for 2LIS_02_S013  to upload the cube  0PUR_C02
    But I hope, we can replace the cube  0PUR_C02  with  0PUR_C05 .0PUR_C05 gets the data by the data source 0MM_PUR_VE_01.
    http://help.sap.com/saphelp_nw04/helpdata/en/e7/daba37d4c2503ee10000009b38f842/frameset.htm
    With rgds,
    Anil Kumar Sharma .P

  • ABAP Code for Extractor Enhancement

    Hi Gurus,
    I enhanced the datasource 0CO-OM_CCA_9. My requirement is to pull the data from COKP (line item table) to COEP (header table). The extract structure will then pull the data from COEP. I wrote an ABAP code but its not working for me. Can you please suggest me some options.
    Thanks,
    Naineesh

    Hi,
    See SAP Help
    http://help.sap.com/saphelp_nw04s/helpdata/en/6e/fe6e420f00d242e10000000a1550b0/content.htm
    See the simple example code, so follow the same.Take ABAPer help.
    CASE i_datasource.
      Data: l_s_data1 LIKE mc13vd0itm,
            l_tabix   LIKE sy-tabix,
      WHEN '2LIS_13_VDITM'.
        LOOP AT c_t_data INTO l_s_data1.
          l_tabix = sy-tabix.
          SELECT SINGLE auart INTO l_s_data1-zzprdtyp FROM vbak
                 WHERE  vbeln  = l_s_data1-aubel.
          IF sy-subrc = 0.
            MODIFY c_t_data FROM l_s_data1 INDEX l_tabix.
          ENDIF.
        ENDLOOP.
    ENDCASE.
    See article on Step by Step Guide to Enhance a Data Source:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00c1f726-1dc2-2c10-f891-ddfbffdb1a46?quicklink=index&overridelayout=true
    Thanks
    Reddy

Maybe you are looking for

  • Caller id propagation from WebLogic Express to WebLogic Server

    Hi all, I'm planning on a WebLogic configuration where Servlets executing in WebLogic Express invoke EJBs executing in WebLogic Server. The Web container and the EJB container are thus executing in different processes. Given that a user is authentica

  • Create organization -- parent organization

    I have inserted a new organization using the API hr_organization_api.create_organization successfully. Also I have inserted the classification information using the API hr_organization_api.create_org_classification successfully. Now I need to insert

  • Making F3 key on external non apple keyboard work

    I am switching from pc to mac... I have an external monitor and keyboard (neithger apple). On the MBP, the F3 key displays all open windows, which I find helpful. F3 on the external key board does nothing. How do I make it have the same functionality

  • SAP Standard change - How to find ?

    Hello experts, i was wondering... is there any way of finding all SAP ABAP Standard Change in a System without having the S-User of the customer. I want to undo those changes but i need to find them first. Thanks Regards Khalil

  • HT3209 why can't I rent an HD movie on my Mac Pro Retina

    What is a Pro Retina for if I can't rent HD movies from iTunes?