Purchasing set up table

hello,
i am customizing the lo cockpit for purchasing in the following datasources:
2lis_02_hdr
2lis_02_itm
2lis_02_scl
the problem lies when i am filling the set up table using oli3bw. i get the following message:                                                       
"DataSource 2LIS_02_HDR contains data still to be transferred"
this activity was performed 3 days back & that point of time i had given the next day as the termination date.
can anyone help me out on this issue?
any help would be greatly appreciated.

"DataSource 2LIS_02_HDR contains data still to be transferred"
this means that there is data in the update queue or delta queue for this extractor. if your in production follow the exact guidelines that you can find on this forum. you have to do this in the weekend. stop the v3 update job (run it one last time manually), extract your delta twice and transport the modifications.
if you don't care too much about your data cause you have to reinit anyway, just kill the delta queue

Similar Messages

  • Purchasing - Set Up Table in source system - LBWG

    Hi all,
    Currently we are extracting Purchasing data into BI7, and have a large volume already which has been delta'd across.
    We need to apply some notes to the Source System which involve deleting the data out of the set-up table, trnx LBWG.
    Can anyone tell me what the impact of this will have on the deltas being run in BI7...and what steps if any I would need to take?
    Thanks, Lee

    Hi Lee,
    Setting up of set up table is one time activity in general scenario.
    Once setup table data population is done , load data into BW through initialization option . If this init request gets in to status "Green" , then on you dont need to refer to data in setup table .
    As per the wish / space constraint one may keep / delete the setup table data.
    Regards
    Mr Kapadia

  • Reading data volume in Set-up tables - LO Purchasing

    Hi Gurus,
    I performed OLI3BW and it took almost a day to complete for HDR, ITM & SCL structures. I would like to know is there a way we can find out volume of records tranferred to set-up tables. I used TCode: NPRT, this is showing only records from EKKO table. Please advise.
    Thank You,

    Hi,
    I think you can only goto the application tables ekko, ekpo... using transaction se16 to get an estimation of records posted to the setup tables.
    regards
    Siggi

  • How to retrive the Direct purchase entries from table level? S_ALR_87012050

    Hi All
    In our current project we need to retrieve the direct purchase report from table level. Can you please provide me the direct purchase related table? Normally we are executing the standard report S_ALR_87012050
    to extract the direct purchase entries. We need to know which table has the direct purchase entries.
    Regards
    K.Gunasekar

    K,
    Your problem description is still insufficiently detailed.
    It appears now that you are searching for asset numbers.  Please confirm.
    Your selection criteria "Inventory Number NE 0" doesn't appear to make much sense.  Inventory number is not a quantity, it is the name of an object.  I guess it is meaningful you have some inventory numbers named as '0'.  I don't think this setting is causing your problem though.....
    You didn't mention which table you accessed to discover that you had a perceived discrepancy.  Which table did you browse to see the results you mentioned?  Please describe the selection parameters for each table you reviewed, and the results for each table that you examined.
    It is also the practice of many companies to archive asset data.  If this is the case in your company, then the archived data will not reside in the 'A*" tables.
    You mentioned that you used the same parameters to select the data.  How did you select "Report Date" when you did the table extract?  I am not aware of a field that is named "report date' in any of the tables mentioned.
    Rather than slog through tables, you might want to try SE16, view "V_ANLAZ".  This is a preconstructed linkage of ANLA and ANLZ that is used by S_ALR_87012050 as a starting point.
    I really think you should consult with your ABAPers.  In two minutes they can give you your answers.  It will take me several messages and probably several days to get you the same answers.
    Best Regards,
    DB49

  • 2LIS_02_ITM - Set up Table

    All,
        Can we run a set up table job (LO datasources) (in case of purchasing program RMCENEUA) parallely in (R/3)production environment by checking the block documnet option with different document date in selection ?
        The reason for this is that if we go with this option we can schedule maximun set up jobs in parallel and complete the setup table fill up in few hours instead of running series of jobs with different document date...
        please provide your inputs
    Thanks
    Kamal

    Hi kamal,
    We can do parallel execution ,but we have to keep in mind
    that, in case of jobs that were scheduled in parallel, we
    must assign different run names by all means. If a job is
    canceled (on purpose or through an exceptional situation)
    it can only be restarted by means of the correct run name.
    With rgds,
    Anil Kumar Sharma .P

  • How to set the table input in Query template?

    Hi all.
    I need to call a Bapi_objcl_change, with import parameter and a table as an input. I have done this, in BLS. I have set the table input in the
    form of xml. In BLS, I get the output(the value gets change in SAP R3, what i have given in BLS).  But if i set the same xml structure  in
    query template, I didn't get the output. Table input parameter does not take that xml source.  How to set the table input in Query template?
    can anyone help me?
    Regards,
    Hemalatha

    Hema,
    You probably need to XML encode the data so that it will pass properly and then xmldecode() it to set the BAPI input value.
    Sam

  • How can i enter multiple sales order numbers to set up table

    Hi,
    I need to reload about 8,000 sales orders to the set up table and the SO numbers are very scattered, so i can not enter them as a range. In transaction OLI7BW Sales Document field has no multiple selection option, therefore i have to enter the documents ONE BY ONE! Could you please tell me if there any faster way to enter them?
    regards,
    Tansu Aksu @ CHEP

    Try this link..
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Regards.
    PS: if it help you, pls assign points.

  • Extracting similar data from a dynamic set of tables

    I want to select common fields from an arbitrary set of tables, adding an extra field that is the table name, and return all of these rows in a single table. I know the steps but I am getting bogged down in the details (being new to Oracle):
    --Create a temporary table.
    --Generate a dynamic SQL statement to grab the data for each table of interest.
    --Execute that query and store the results in the temporary table.
    --Output the entire temporary table and delete it.
    Here is my latest attempt:
    ================
    Create global temporary table myTempTable
         Title varchar2(30),
         IdType number(8),
         Count number(8)
    ) on commit delete rows;
    declare
    sql_stmt VARCHAR2(200);
    tname VARCHAR2(30);
    begin
    for tname in (
    select distinct table_name from sys.ALL_TAB_COLS
              where owner='me' and table_name like '%ASSIGNS'
    loop
    sql_stmt :=
    'insert into myTempTable(Title, IdType, Count) ' ||
         'select '':1'', IdType, count(*) from me.:1 group by IdType';
    EXECUTE IMMEDIATE sql_stmt USING tname;
    end loop;
    select * from myTempTable;
    commit; -- to delete the temp table
    end;
    ================
    The error messages are:
    --expressions have to be of SQL types
    --an INTO clause is expected in this SELECT statement
    What am I missing here?

    (1) First of all I am executing the whole script in SQL*Plus, thats why I use SQL*Plus command like the SLASH Operator.
    <br>
    (2)
    SQL> VAR cur refcursor
    SQL> CREATE TABLE mytemptable AS SELECT ename table_name, deptno idtype, sal cnt FROM emp WHERE 1=0
    Table created.
    SQL> DECLARE
       sql_stmt   VARCHAR2 (200);
       tname      VARCHAR2 (30);
    BEGIN
       FOR tname IN (SELECT DISTINCT table_name
                                FROM SYS.all_tab_cols
                               WHERE owner = USER AND table_name LIKE '%EMP')
       LOOP
          sql_stmt :=
                'insert into myTempTable select '''
             || tname.table_name
             || ''' table_name, deptno IdType, count(*) cnt from '
             || tname.table_name
             || ' group by deptno';
          EXECUTE IMMEDIATE sql_stmt;
       END LOOP;
       OPEN :cur FOR
          SELECT *
            FROM mytemptable;
       EXECUTE IMMEDIATE 'drop table myTempTable';
    END;
    PL/SQL procedure successfully completed.
    SQL> PRINT :cur
    TABLE_NAME     IDTYPE        CNT
    EMP                10          3
    EMP                20          5
    EMP                30          6
    3 rows selected.Since we DROP the table at the end we don't need an explicit commit, since all DDL statement will implicitly commit anyway.

  • Not getting set up record in Set up tables

    Hi ,
    I am able to see revaluation records in MB5B (Stock on posting date) for one perticular posting date. but this record i am not able to see in Bw side ,even its not avail in RSA3 level.
    So wat cud be the reason its avail in data base table but not filled in Set up tables ?
    regards
    raja

    Hi vishwanath,
    This is bcoz of 
    U have not done the delte delta queue( In LBWQ "MCEX03" entries).
    first U have to delete the MCEX03 Entries ---> then only u have to do fill the setup tables.
    follow these steps:
    1.First goto LBWQ --> delete the MCEX03 Entries.
    2.Refresh .
    3.Check the datasources in RSA3 ( Datasources Should show Zero Records )
    4.Do the Fill setup table.
    5.Then check once again LBWQ ---> It should not have MCEX03 Entries.
    6. Check Datasources in RSA3 ( Datasources should have data).
    7.Do replication & Extarct data.
    for ur problem this is the solution ( I have faced this).
    Thanks,
    kiran.

  • How to extract data into the set-up table for 2LIS_06_INV LIS structure

    We are using ECC 6.0 and SAP BI NW 2004S. I activated the 2LIS_06_INV  (Invoice Verification) structure. Interestingly, I don't see any Events under this structure  (MC06M_0ITM) - my understanding is the events usually determine what type of data is generated for a given structure.
    I see Invoice Verification when I use the Inventory Management -Perform Setup  option when doing the set-up tables. However, when I use this option, I get a message saying " No extraction structure active or no BW connected".
    Can someone list the pre-requisites and the steps to load the set-up table for the 2LIS_06_INV structure.
    Thanks,
    Sanjay

    1: RSA5 Activate Data Source
    2: LBWE Activate datasource again
    3: SBIW Fill setup table 'Settings for Application-Specific DataSources (PI)'-> 'Initialization'->'Filling in the Setup Table'->'Application-Specific Setup of Statistical Data'->'Invoice Verification - Execute Reconstruction'

  • Error while filling the set up table for 2LIS_11_VAITM

    Dear Experts,
    i am facing an error while filling the set up table for 2LIS_11_VAITM in the source system.
    The error was "Company code for sales org 9000 does not exist (document 1326)".
    when i checked the document in the Header table VBAK,company code was blank for the document .
    Company code was there in the selections for the setup table.
    The error means that company code should be maintained for the sales document as per my knolwedge.i think document was not created properly in the source system.
    Could you please help me out to over come the problem.
    Regards,
    Sunil...

    in the selection screen for filling the setup table, there is a parameter No. tolerated faulty documents
    you'll have to enter at least '1' here in your case
    it might be that there are other erronuous records, in that case it will crash again, and you'll have to increase the value for this parameter
    (under "normal" circumstances, all documents in the source should be correct... but apparently it's possible to circumvent this)

  • Error while filling set up table SD-Billing Documents - Perform Setup

    Hello friends,
    while filling set up table of SD-Billing Documents - Perform Setup
    i am getting error 'TSV_TNEW_PAGE_ALLOC_FAILED' . i am executing this job in background process . Please suggest me a solution .
    Regards
    Nilesh Vakil

    Hi,
    Try some other LO extractor in RSA3 to check if you get the same error.
    If you dont then it may not be system memory issue, check if thr is some user exit written for the extractor.The problem could be in the user exit whr the internal table may get overflown and lead to the page overfloen dump.
    If this is also not the case try reducing the packet size.
    Let me know if the issue is resolved.
    Regards,
    Ashwin

  • LO Set up tables deleted while upgrading the source sys from 4.6c to ECC6

    As a part of ECC6.0 upgrade tasks, our BASIS team deleted all the LO set up tables in the source system(4.6C) and . After the upgrade, we are not finding any queues in RSA7 or in SMQ1. But, we have a lot of  Delta's and few full loads are running on BW (3.1) side for these LO's.
    1. What are the steps we need to take inorder to enable/ work the existing delta's and Full Loads in BW(3.1).  With the new ECC6.0, we don't have plan to enhance any data sources. So, do we need to set up / fill up the tables again for LO's? If yes, Since we have huge data in source system , it will take a lot of time to fill the tables,,,,Is there any option to fill the tables only for the specific period and enable deltas?
    Please help urgently interms of providing step by step guidelines.
    2. We also have the following DS (Delta enabled) with the existing source system. Please advise how to make to work for these delta's once after the source system upgrade.
    0PM_OM_OPA_2
    0PM_OM_OPA_1
    0FI_AR_4
    COPA DATA SOURCE
    Advance Thanks.

    BW USA,
    I think the options are given clearly. You will have to reload the data and I hope you have the DSO(Dataware House Layer) used in your BW side before the data is going to the Cube, otherwise you would have to do a slective delete and load that data to avoid duplication.
    There is one other way, but I have never tried it. I am sure your Basis team would have taken a backup of the system before upgrade. Try to find whether you can restore the delta queue (advice from SAP would be helpful as there are many control tables need to be in sync). If this option is not possible then you would have to do what is already given.
    Any 0FI_* data sources, you can go by the last available period and you can reinitialize without data transfer and load the missing whole period, as these are after image data you would have a DSO inbetween and you should not have any problems.
    For CO-PA whether it is Account or Cost based you can easily re-establish the delete and covere the missing by fiscal period load with repair.
    The steps for FI & CO are below.
    1. Reload missing data by period with FULL LOAD WITH REPAIR option.
    2. Re-init with conditions (if you already had any) without data transfer.
    I think this should fix your issues. I have not used the other two data sources.
    Goodluck,
    Alex(Arthur Samson)

  • Error while filling up set up tables in SAP R/3

    Experts,
    I trying to fill up set up tables for application component 11 (SD) for my LO extraction. It gives me the following error
    <b>Error determining rate: foreign curr. RMB local curr. AUD date 06/19/2007 (doc. 100025787)</b>
    when I check in RSA3, I have data before 06/19/2007 but nothing is filled up after that.
    Does anyone know how to fix this?
    Thanks
    Ashwin

    Hi Ashwin,
    Did you get the solution for issue(filling the setup tables for applicaion component 11)
    "Error determining rate: foreign curr. RMB local curr. AUD date 06/19/2007 (doc. 100025787)"
    thanks in advance.
    Bhaskar.

  • How to set dynamic table name in sql query?

    I want set dynamic table name by parameter in sql query,just like:
    select * from :tbname
    but run report is error,BI P report table name is invalidation.
    What can i do? Thanks!

    Hi,
    that's only possible inside a data template with a lexical parameter.
    Regards
    Rainer

Maybe you are looking for