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

Similar Messages

  • 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

  • No. of entries in Set up tables

    Hi,
    I am using 2lis_02_itm and 2lis_02_hdr. we have done initialisation and filled setup tables.
    Wanted to know whether is there any way to find out how many entries are remaining in setup table to be transfered to BW.

    Hi,
    You can see the job logs in SBIW or in T-code NPRT
    Go inside each log and this will give you all the jobs that are run for that application and the number of records tranferred into set up tables.This may give you an idea
    Try to see all the records that got filled in these jobs and then you can check how many records got transferred...
    but again its not possible to find out how many records are still remaining to be pulled into BW.
    Thanks
    Ajeet

  • Lo set up tables

    HI ,
    i want to use 2lis_02_itm and 2lis_03_bf
    Let me know how to fill set up table .
    for these to extractors.

    Hi,
    transaction to fill setup tables are OLI*BW  and LBWG to delete the related content!
    OLI0 C Plant Maintenance Master Data
    OLI1 INVCO Stat. Setup: Material Movemts
    OLI1BW INVCO Stat. Setup: Material Movemts
    OLI2 INVCO Stat.Setup: Stor. Loc. Stocks
    OLI2BW INVCO Stat.Setup: Stor. Loc. Stocks
    OLI3 PURCHIS Statistical Setup
    OLI3BW Reorg.PURCHIS extract structures BW
    OLI4 SFIS Statistical Setup
    OLI4BW Reorganized PPIS Extract Structures
    OLI5 PMIS Statistical Setup
    OLI6 Periodic stock qty - Storage locatn
    OLI7 SIS Statistical Setup: Orders
    OLI7BW Reorganized VIS Ext. Struct. Order
    OLI8 Set Up SIS for Deliveries
    OLI8BW Reorganized VIS Ext. Struct. Del.
    OLI9 SIS Statistical Setup: Billing Docs
    OLI9BW Reorganized VIS Extr. Struct. Bill.
    OLIA C Maintenance Processing
    OLIB PURCHIS: StatUpdateHeader Doc Level
    OLID SIS: Stat. Setup - Sales Activities
    OLIE Statistical Setup - TIS: Shipments
    OLIF PPIS: Setup-RepetitiveManufacturing
    OLIFBW Reorganized Prod. Extract Structure
    OLIIBW Reorg. of PM Info System for BW
    OLIM Periodic stock qty - Plant
    OLIP C Plant Maintenance Planning
    OLIQ Reorganization of QM info system
    OLIQBW Reconstruct QM Infosystem for BW
    OLIS LIS in the IMG
    OLISBW Reorg. of CS Info System for BW
    OLIX Stat. Setup: Copy/Delete Versions
    OLIZ INVCO Stat.Setup:Invoice Verificatn
    OLIZBW INVCO Stat.Setup:Invoice Verificatn
    -Shreya

  • 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

  • How to copy a set of tables from a database to another periodically?

    We have a 4 node RAC primary database(10.2.0.2) with a physical standby(10.2.0.2) on our production site. Offlate we noticed that one of the applications(APP2) is causing heavy loads due large data downloads on the primary database servers. Our primary database has 2 schemas,
    1) one being the main schema with all objects, (USER1)
    2) and the other has views that query some set of tables from the main schema. (USER2)
    The application APP2 uses USER2 views to query and download huge data periodically. We need to be able to give accurate data results to APP2, but in the same time take off the load from the database, as APP2 is not our main application.
    We would like to know if there are any cost effective options in oracle to do this, and if so, what is the best option? Anyone has any experience setting up something like this before?
    We have thought of creating another 10.2.0.2 database on a different server and giving it regular updates(like data feeds) from the current database. The current database data changes quiet often, so the data feeds would have to be done often to keep the data current on the new database. So, we are not exactly sure how to go about it. Would a COPY command help?
    Please advice.

    user623066 wrote:
    Our 4 node RAC is already busy with our main application, which has its connections spread across all 4 nodes.
    Our main applications services are the same on all nodes and use all 4 nodes in the same way.
    There are some other utilities that we run from one of the app servers that connect to only 1 of the nodes.
    APP2 uses all 4 servers, which is again controlled by connection pooling and distributes the load.Wouldn't separate services be more beneficial here? If APP2 is locked down to one node during normal operation, that ensures that other connections aren't going to be competing for hardware with APP2 on 3 of the 4 nodes. If APP2 is generating less than 25% of the total load, you can let the other applications use whatever hardware resources are left idle on the node APP2 is locked down to.
    By Large data downloads, I meant both increase in network traffic and the CPU load on the database nodes.
    We are already using resouce manager to limit the resources allocated to USER2 that APP2 uses.
    And we have also limited the large downloads to take place in the early hours of the day when the traffic from our main application is less.
    But this has still not been optimal for the usage requirements for APP2. APP2 is also doing queries all through the day, but has a limit for the number of rows downloaded during peak hours.Can you explain a bit more about why using Resource Manager hasn't been sufficient? That's normally a pretty good way to prevent one hungry user from drastically affecting everyone else. Perhaps you just need to tweak the configuration here.
    Logical Standby seems a good option. But we need to keep our physical standby in place. Is it possible to have a logical standby and a physical standby? (ofcourse on separate servers)Sure. You can have as many standby servers of whatever type you'd like.
    Could we use a COPY command to copy data for the set of tables to a new database? Or is that also a complex option?You could, yes. COPY is a SQL*Plus command that has been depricated for copying data between Oracle databases for quite a while. It only works from SQL*Plus and would only be designed for one-time operations (i.e. there is no incremental COPY command). I can just about guarantee that's not what you want here.
    How do materialized views work? Wouldn't they still reside on the main database? Or is it possible to have remote materialized views?You probably don't want materialized views, but if you decide to go down that path
    - You'd create materialized view logs on the base tables to track changes
    - You'd create materialized views on the destination database that select data over a database link back to the source database
    - You'd put those materialized views into one or more refresh groups that are scheduled to refresh periodically
    - During a refresh, assuming incremental refreshes, the materialized view logs would be read and applied to the materialized views on the destination system to update the materialized views.
    Justin

Maybe you are looking for

  • Print ical weekly view with fewer hours

    When I print iCal in a weekly view, It prints 24 hours.  Obviously that isn't necessary.  How can I get it to print only 12 hours or the hours I have on my schedule?

  • Calling a report from module pool program

    Hi all,         I had a requirement where I need to call a report from the module pool program where in when we click REPORT button, it should display the report output in the another screen. Can we do by calling screen after pushing REPORT button. I

  • Uploading previous year open items

    Dear all, The project is about to golive 1st of may and i want to upload the open items for vendors, some the open items are dated 01.01.08. Do I upload using the 2008 date and if i do, will i have to run end of year for 2008. Thanks

  • Give me tables linking Sales office to sales area

    Config tables linking Sales Office to Sales Area. how to find whether sales office assign to sales area

  • Do I have an oddly obsolete SB card? ES LS? Europ

    Hello all! On my HP Pavilion (20 months old, 3.06 GHz, GB RAM, 200GB HDD, GeForce 4 video) I have an SB Audigy sound card on it but I've been having some problems with my Cakewalk Plasma program. I've upped the RAM on the puter, put in a better PSU,