Problem in 2LIS_02_SCL(0pur_c01)

Hi,
we are using cube 0pur_c01 and in the update routine for 2LIS_02_SCL ,
in the update routines its calculating 'Actual goods receipt quantity'  through some routine but we are not able to get it can anyone let me know how its calculating the actual goods receipt quantity.
thnx.

2lis_02_SCl has many problems. Many key figures are empty.
We are using EKKO-EKPO-EKET tables directly

Similar Messages

  • Problems with  2LIS_02_sCL

    Hi,
    I am facing  more or less the similar problem.
    I am using 2LIS_02_SCL to pull  purchasing data from R3.
    and using 3 process keys for Po, GR,Invoice for this extractor.
    the extract structure is  enhanced to add the delivery indicator and is populated by the code by looking up at the EKPO  table irrespective of the process key.
    Which means  that ideally if  indicator  was set for Po,item  for process key 1 then the indicator should be set for   process keys 2 and 3 as well. But I have identified some records where  DELEIVERY COMPLETED INDICATOR was set for process key 1 but  not for 2 and 3.
    Can any one help me on this.
    Regards
    Sudheer

    Hi Andrea,
    As far as I know there are some problems with extractor 2lis_02_scl. In my previous client we had problems with the "delivery completed" flag, that was not always correctly updated.
    What we finally got from SAP is that we should update R/3 Plug-in to latest version, cause there that extractor behaved better (it was version 3.1).
    Maybe you have to open a customer message to SAP...
    Regards,
    David.

  • How to use EXIT_SAPLEINS_001 for delta with 2LIS_02_SCL datasource ?

    Hi,
    I'm facing a problem using 2LIS_02_SCL: the field MCEKET-WAMNG is not populated during delta extraction (it is populated correctly when I fill setup tables).
    I have been told that I should use customer exit EXIT_SAPLEINS_001 in order to fill MCEKET-WAMNG at event ML u2013 delivery, because 2LIS_02_SCL does not takes this event into account (only MA, MB, MC and MD which can be verified in LBWE Events), this field is not passed to BW in delta.
    I need help to implement this solution.
    An example with ABAP code will appreciated.
    M.B.

    Hi,
    May helpful to you
    EXIT_SAPLRSAP_001 vs EXIT_SAPLEINS_001
    EXIT_SAPLEINS_001
    Regards,
    Suman

  • Identifying of Missing PO's with 2LIS_02_SCL

    Hi!
    I have problem with 2lis_02_scl. By accident some one  have deleted the  queue SMQ1 from R3.  Now we are missing the data from  time we have schedulled the  last load to BW upto time of deletionof Queue. I am trying to identify those records which  have missed by that deletion of queue.  So  that I can fill the set uptable and do the repair full request for those PO.
    Can any one suggest me is there any way I can find out the PO which are missing. Are there any tables/Fields  by which I can identify the PO which are missing with reference to date and time.
    Suitable points will be awarded.
    Regards
    Sudheer.

    Nice to know, and interesting too.
    All incomplete PO's will not be extracted by std. extractors 2LIS_02_ITM.
    One can check the incompleteness using EKKO-MEMORYTYPE.
    This may be useful.
    Thank-You.
    Regards,
    Vinod Bokade

  • Routine for GR Value as at postig date

    HI all,
    I have problem in 2lis_02_scl transformation Routine in 0pur_c01 cube where i am using a routine for GR as at posting date (0GR_Val_pd) KF. But problem is that I am using routine in BI 7.0 version.but routine is working as GR Value as shown in below Code but i want to correct the routine for GR Value as at posting Date(GR_VAL_PD).
    IF ( SOURCE_FIELDS-PROCESSKEY = '002' or     "WE-Wert
         SOURCE_FIELDS-PROCESSKEY = '012' or
         SOURCE_FIELDS-PROCESSKEY = '022' )
         AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'
         AND SOURCE_FIELDS-CPPVLC <> 0.
        RESULT = SOURCE_FIELDS-CPPVLC.
        ELSE.
    RESULT = ' '.
    Can anyone tell me how GR value will come as at posting date.
    Thanks n Regards,
    Gaurav Sekhri
    Edited by: gaurav sekhri on Aug 30, 2010 10:52 AM

    Hi,
    Use the following code. It w ill be fine.
    Source fields:
    BWAPPLNM     Application comp.     CHAR     30               
    BWGEO     BW:CValLocCrcy     CURR     19               
    BWVORG     Transfer process     NUMC     3               
    HWAER     Local Currency     CUKY     5               
    Target Fields:
    0GR_VAL_PD     Goods receipt value as at posting date     CURR     9     
    0LOC_CURRCY     Local currency     CUKY     5     
    Update routine at KF level:
    IF ( SOURCE_FIELDS-BWVORG = '002' or
           SOURCE_FIELDS-BWVORG = '012' or
           SOURCE_FIELDS-BWVORG = '022' )
        AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'
        AND SOURCE_FIELDS-BWGEO <> 0.
        RESULT = SOURCE_FIELDS-BWGEO.
      else.
       raise exception type CX_RSROUT_SKIP_VAL.
      endif.
    Also keep the following options in your TRFN rule:
    Aggregation: Summation
    Target Currency : 0LOC_CURRCY
    Currency: from source
    Source Currency: HWAER
    Post your queries if any.
    Cheers,
    VA

  • Transformation routine used for GR as at posting date (0GR_VAL_PD KF)

    HI all,
              I have problem in 2lis_02_scl transformation Routine where i am not getting corect data for GR as at posting date (0GR_Val_pd) KF.
    Can anyone tell me what routine shall i try to use.
    Thanks n Regards,
    Gaurav Sekhri

    HI Gaurav,
    The code which you have given does not specify the desired result which you want. Also one more thing you have written a code as follows:
    IF ( SOURCE_FIELDS-PROCESSKEY = '002' or  "WE-Wert
    SOURCE_FIELDS-PROCESSKEY = '012' or
    SOURCE_FIELDS-PROCESSKEY = '022' )
    AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'.
    RESULT = SOURCE_FIELDS-CPPVLC.
    endif.
    What is the above condition does not satisfy. you need to specify a RESULT if the above condition is not met like.
    IF ( SOURCE_FIELDS-PROCESSKEY = '002' or "WE-Wert
    SOURCE_FIELDS-PROCESSKEY = '012' or
    SOURCE_FIELDS-PROCESSKEY = '022' )
    AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'.
    RESULT = SOURCE_FIELDS-CPPVLC.
    ELSE.
    REULT  = " Your desired result if condition is not met".
    endif.
    Hope it helps.
    Regards,
    Satyam

  • 2LIS_02_SCL : Extracting problem

    Hi,
    I tried to load 0PUR_C01 with 2LIS_02_SCL ( FULL method ),
    but in the monitoring I've got 0 record and an <b>Extraction error</b> which deals with data selection.
    <i>Note : I do no selection in my infopackage.</i>
    In R/3 my setup tables are filled :
    MC02M_0ITMSETUP
    MC02M_0SCLSETUP
    When I check with RSA3 I've got a lot of records.
    For information, I had the same problem with 2LIS_02_ITM
    when I used INIT or DELTA infopackage.
    But <u>it's work with a FULL infopackage</u>.
    Nevertheless, nothing work with 2LIS_02_SCL.
    What can i do ?
    Thanks
    ps : I'm working on SAP 3.5

    1. Replicate the data sources and activate the info source.
    2. Check the update rules and activate them.
    3. Double click on the step -by step in load monitor, what does the error say?
    4. Can you copy and paste the error message here we can look at .
    Ravi Thothadri

  • Problem while filling the Setup Table for the DS 2LIS_02_SCL.

    Hi All,
    When I am trying to fill the Setup table for the DataSource 2LIS_02_SCL and only for one specific Purchase Order, it is showing me a message like
    u201CDataSource 2LIS_02_ITM contains data still to be transferredu201D
    I have deleted the Setup Table and I want to delete the entries from SM13, but I do not have Authorization.
    Also, here I am trying to fill the Setup Table for 2LIS_02_SCL and not for 2LIS_02_ITM, but the message displayed above is showing as 2LIS_02_ITM DataSource. I think the Setup Table will be same for both the DataSources.
    Waiting for your valuable inputs.
    Thanks in Advance.

    Hi,
    When you want to fill the setup tables first you need to delete setup tables to avoid the duplicate entires in setup tables ( you can delete the setup tables by using t.code LBWG with application no is 02)
    In your case, the data souce is 2LIS_02_SCL for purchasing.
    when you want to delete the setup tables by using t.code LBWG with 02 application no it will delete all the purchasing related data from all the data sources like
    2LIS_02_SCL
    2LIS_02_ITM
    Before the deletion of setup tables you need to clear the delta Queues and stop the V3 jobs, which loads the data to Delta Queues (RSA7) and Update tables(LBWQ).
    you need to run the V3  jobs manually by using LBWE > Job control > and schedule the jobs until the delta queues will get 0 records. that means no data will be available in RSA7 and LBWQ
    go to SM37 to see the jobs LIS-BW-VB_APPLICATION_02,
    once the delta queues gets 0 records by running V3 Jobs manullay.
    Then remove the released state jobs > remove from schedule means delete the jobs in LBWE > Go to job control > you can delete the released jobs.
    Becuase No postings to be done in application tables, while running setuptable filling you should take some down time to fill the setup tables.( OLI*BW)  *=Application number.
    Once you clear the Queues and delete the v3 jobs, then you need to fill the setup tables after deletion of setup tables.
    once you fill the setup tables , by running intialization to BW side the delta Queue is formed for the data source in R3 side
    Now the postings can be done in R3 side, so you need schedule back the V3 jobs, which you already delted from LBWE to load the data from application tables to RSA7 or LBWQ.
    I hope this may help yoou.
    Regards.
    Rambabu
    Edited by: Rambabu velanati on Jun 9, 2010 4:41 PM
    Edited by: Rambabu velanati on Jun 9, 2010 4:52 PM

  • 0GR_VAL_PD KF has not mapped with source in 0Pur_C01 but value comes

    HI All
    I have problem with 0GR_VAL_PD kf in 0PUR_C01 cube. 0GR_VAL_PD KF has not mapped with source in 0Pur_C01 but in report level, value is coming for purchase organisation,material group . 
    But GR value as at posting date (0GR_VAL_PD)value not coming for particular material group or purch. org. but some days before, values were coming for particular material group or purch. org..
    so need your help.
    Thanks n Regards,
    Gaurav Sekhri
    Edited by: gaurav sekhri on Aug 18, 2010 11:41 AM
    Edited by: gaurav sekhri on Aug 18, 2010 11:43 AM

    Hi Susan
    Which datasource you are using at present. Normally 0PUR_C01 gets loaded from 2LIS_02_ITM and 2LIS_02_SCL. The keyfigure that you have mentioned will come from 2LIS_02_SCL with the code that you have written.
    The code that you have written should work. Please check if the code is in the transformation from 2LIS_02_SCL.
    Share the details on why do you think the solution didn't work.
    Regards
    Karthik

  • Implementing BI content (0PUR_C01 and 0PUR_C04)

    Hi Experts,
    while consulting help.sap regarding the standard BW cubes 0PUR_C01 and 0PUR_C04, i get the following information (in regards to extractors to activate):
    0PUR_C01
    You can supply this InfoCube with data using either the conventional extraction method or the new one:
    Conventional method: Purchasing (2LIS_02_S012)
    New method: Purchasing Data (Document Item Level) (2LIS_02_ITM) and Purchasing Data (Document Schedule Line Level) (2LIS_02_SCL)
    0PUR_C04
    You can supply this InfoCube with data using either the conventional extraction method or the new one:
    Conventional method: Purchasing Groups (2LIS_02_S011)
    New method: Purchasing Data (Document Header Level) (2LIS_02_HDR), Purchasing Data (Document Item Level) (2LIS_02_ITM), and Purchasing Data (Document Schedule Line Level) (2LIS_02_SCL)
    My questions are:
    1) why would you activate/use 2LIS_02_S012 or 2LIS_02_ITM and 2LIS_02_SCL for the 0PUR_C01. What are the differences between those 2 methods and why would one chose one over the other
    2) why would you activate/use 2LIS_02_S011 or 2LIS_02_HDR, 2LIS_02_ITM and 2LIS_02_SCL for the 0PUR_C04. What are the differences between those 2 methods and why would one chose one over the other
    Many thanks
    Joana

    Hi Joana,
    Can you please list out the differences? I've the same problem but was unable to figure out why we need both extractors 0PUR_C01 and 0PUR_C04.
    Thanks.

  • 2LIS_02_SCL and 2LIS_02_ITM missing records

    Hi,
    We have a problem with DS: 2LIS_02_SCL and 2LIS_02_ITM. We load data in 0PUR_C01 throu Bi content standard objects (0PUR_C01 2LIS_02_ITM / ...SCL). ... there seem to be problem with DS because In infocube 0PUR_C01 we don't get consigment records (consigment records - possition on PO). I have already checked DSs in RSA3 and those records are missing?
    Any ideas?
    JN.

    Hi,
    are you sure you have PO's for your consignments? I would recommend to check the source tables EKKO, EKPO and EKET first. Once you are sure to have PO's there for consignments you can run  RSA3 for the DS with the EBELN (PO Number) and confirm that the extractor does not extract them. One thing to watch out for the RSA3 does not pull from the delta queue but from the setup tables. So you need to make sure that the Consignment Document you are missing are the setup tables.
    Hope that helps,
    Michael
    PS the extractor also pulls BSTYP Document Category K (Contracts) and L (Scheduling agreements)
    Edited by: Michael S on Jul 14, 2009 12:20 PM

  • Currency Conversion Issue in Infocube Purchasing Data (0PUR_C01) Routine

    Hi Gurus,
         We are using SAP BI 7.0, We are having reports on Purchasing Data (0PUR_C01) under that 2 updates rules are there.
    For the field Effective purchase order value (0ORDER_VAL), there is one standard routine only from the Datasource 2LIS_02_SCL.
    My problem is that when there is Currency other than Local currency in field Order Currency, we dont get the Purchase Order Value though there is PO Quantity.
    Thanks in advance.
    Regards,
    Rajdeep.

    Hi Rajdeep,
    Please verify that the PSA contains data in the fields mapped to the objects below, as they are all used in the currency conversion routine:
    ORDER_VAL
    DOC_DATE
    ORDER_CURR
    LOC_CURRCY
    EXCHG_RATE
    If something is mapped incorrectly or something like that the currency conversion might fail.
    Hope it helps.
    BR
    Stefan

  • Problem in 2LIS_02 for Keyfigures 0INV_RC_QTY or 0IV_REC_QTY ?

    Hi, i need understand how working fill for keyfigure 0INV_RC_QTY or 0IV_REC_QTY, Processkey concept is ok value needed is 003 and 013.
    Using RSA3 or PSA in BI7 for analisis the data in extractor 2LIS_02_SCL, we look for all records values : 14257 in Field "BWMNG" and multiple values for PROCESSKEY.
    After update rules for 0PUR_C01, we have bad total values for EM when PROCESSKEY EQ 002 OR 022 and Bad values when is INVOICE PROCESSKEY EQ 003 or 023.
    For extractor 2LIS_02_ITM we not look use this Keyfigure 0INV_RC_QTY or 0IV_REC_QTY in update rule.
    We have in BI7:
    SAP_BW     700     0017
    BI_CONT     703     0009
    So in ERP:
    SAP_APPL     600          0010     
    SAP_BASIS     700          0012
    SAP_ABA                     700          0012
    PI_BASIS          2005_1_700     0012
    My code in Update rutine in 0PUR_C01 is :
    0IV_REC_QTY 
    IF ( COMM_STRUCTURE-PROCESSKEY = '023' or
        COMM_STRUCTURE-PROCESSKEY = '003' )
        AND COMM_STRUCTURE-BWAPPLNM EQ 'MM'
        AND COMM_STRUCTURE-CPQUAOU <> 0.
        perFORM QUANTITY_CONVERT
           USING    COMM_STRUCTURE-CPQUAOU
                    COMM_STRUCTURE-po_UNIT
                    COMM_STRUCTURE-base_uom
                    COMM_STRUCTURE-numerator
                    COMM_STRUCTURE-denomintr
           CHANGING RESULT.
    0INV_RC_QTY
    IF ( COMM_STRUCTURE-PROCESSKEY = '023' or
        COMM_STRUCTURE-PROCESSKEY = '003' )
        AND COMM_STRUCTURE-BWAPPLNM EQ 'MM'
        AND COMM_STRUCTURE-CPQUAOU <> 0.
        perFORM QUANTITY_CONVERT
           USING    COMM_STRUCTURE-CPQUAOU
                    COMM_STRUCTURE-po_UNIT
                    COMM_STRUCTURE-base_uom
                    COMM_STRUCTURE-numerator
                    COMM_STRUCTURE-denomintr
           CHANGING RESULT.
    We need correct value in 0IV_REC_QTY and 0GR_QTY for PROCESSKEY (002 & 022).
    Any idea how fix the problem ?
    Thank you.

    Problem was detected in User-Exit code, other project was modify the standar values.
    Thank you.

  • Why displaying cube 0PUR_C01 content runs forever?

    We conducted data load to 0PUR_C01 through two different datasources 2LIS_02_ITM and 2LIS_02_SCL.  Check the cube, find the initial request for 2LIS_02_ITM did add 1648 records, but when we try to display this cube content by only selecting a few fields for selections like Company Code, Purchasing doc category, and etc., and take the default Max no. of hits of 200, but when hit the execute button to try to display the cube content, find it always runs forever at the selection screen with going no where!
    Any reason?
    Thanks

    Kevin,
         I never had this problem, while displaying the data. better check with your basis, they can help who is working on the system they can guide you. If you do RSRV tests in the parrllel it will take time.
    I'm thinking, some of your colleague is doing some thing at that time. Check with your basis.
    All the best.
    Reagrds,
    Nagesh Ganisetti.

  • Getting error while activatinb update rule 2LIS_02_SCL

    Hello BW gurus,
    I have activated and replicated datasources for PP and activated the 0PUR_C01 infocube now I am activating the update rule 2LIS_02_SCL but while activating the update rule iam getting error message
    "Object UPDR CD2NYEJKIIFCCFA9FW1OQRONE could not be found"
    which is nothing but the technical name of 2LIS_02_SCL. in GROUPING TAB I have selected " only necessary objects" option.
    Any help on this is greatly appreciated can you please suggest me how I can troubleshoot this.
    I will assign points to all appropriate answers.
    Thank you,
    Krish

    Hi Krish
    Don't worry about the error message.
    RSA1-> Business content-> here select the update rules from 2LIS_02_SCL to cube 0PUR_C01 and with only necessary objects option-> Install update rules with applicable routines. Then refresh RSA1 and check for update rules. If still you don't get update rules, please let me know
    Regards
    Pradip

Maybe you are looking for

  • Failover not working while connecting to Oracle 11g database

    Hi, We have a J2EE application that connects to Oracle 11g database. The connection URL we are using is as below jdbc:oracle:thin:@(DESCRIPTION =(SDU=32768)(ADDRESS=(PROTOCOL=TCP)(HOST=abc.hostname.com)(PORT=1525))(ADDRESS=(PROTOCOL=TCP)(HOST= xyz.ho

  • HR master data  issue

    Hi    our  user have noticed lately when processing hires/rehires that there is no percentage on the org assignment. This has not been the case before and I'm concerned that whatever the missing link is could be affecting time entry in some way. The

  • Overide on-error with when-new-button-pressed

    Hi, I have a big problem and not much time to solve it so posting on here hoping someone will know the answer. I have put an exit button on my form which calls a method that uses GO_FORM to return to a menu page. I don't want to close oracle forms do

  • Multiple Standby Dataguard Configuration

    Hi, Sorry if this has been posted before, but I could not find the answer. I have a Primary site (PRIM) and one Standby site(STBY1). The standby receives archive log changes from the primary. Also using dataguard to manage the Standby. I would like t

  • How do I remove the Inprivte option from my system?

    I'm looking for a way that will allow me to completely remove the Inprivate option off of my system.