2LIS_11_V_ITM Set up table name

hi,
I would like to make INITIALIZATION of delta but  I can't find the transaction code for it in SBIW.
Whats the transaction code.
thanks
Bhat

Hi Bhat
You can use below transaction code for filling set up tables for LO extractors, let me know if i can provide you more information
OLI1BW               INVCO Stat. Setup: Material Movemts
OLI2BW               INVCO Stat. Setup: Stor. Loc. Stocks
OLI3BW               Reorg.PURCHIS BW Extract Structures
OLI4BW               Reorg. PPIS Extract Structures
OLI4KBW              Initialize Kanban Data
OLI6BW               Recompilation Appl. 06 (Inv. Ver.)
OLI7BW               Reorg. of VIS Extr. Struct.: Order
OLI8BW               Reorg. VIS Extr. Str.: Delivery
OLI9BW               Reorg. VIS Extr. Str.: Invoices
OLIABW               Setup: BW agency business
OLIFBW               Reorg. Rep. Manuf. Extr. Structs
OLIGBW               Reconstruct GT: External TC
OLIIBW               Reorg. of PM Info System for BW
OLIKBW               Setup GTM: Position Management
OLILBW               Setup GTM: Position Mngmt w. Network
OLIQBW               QM Infosystem Reorganization for BW
OLISBW               Reorg. of CS Info System for BW
OLIZBW               INVCO Setup: Invoice Verification

Similar Messages

  • 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

  • JSP sql - set table name in variable

    I'm trying to set my table name in variable, what is the syntax in sql of selecting from a table which name is set with a variable name?

    That's easy :
    Say, ur table name is MY_TABLE.
    Now, set a variable say x as :
    var x = "MY_TABLE"; (Javascript)
    or
    String x = "MY_TABLE" (JSP/Servlet);
    Finally, use the SQL as,
    String SQL = "SELECT * FROM " + x + "WHERE condition". (JSP/Servlet).
    or
    var SQL = "SELECT * FROM " + x + "WHERE condition". (Javascript).
    and BINGO !!
    Do keep me posted.
    Cheers !!
    Sherbir

  • Problem about fill set up table

    Hi all,
    I got a problem when I run the fill set up table for sales billing data source. what I did is:
    first delete the setup table then oli9bw->type in a sales document no.(as I only want this order data), then give a run name, last execute, but I got the message as follow:
    Data source 2LIS_13_VDITM contains data still to be transferred
    Could you pls explain what this means, and what should I do to solve the problem
    Thanks

    Set up table definition
    Setup table is store the historical data, where as the delta records are updated in delta queue not to set up table.
    So once historical data is loaded you can delete the contents of the set up table.
    name is extract sturcture of your data source + setup
    also data is taken from setup table when an init / full/ full repair load is done.
    so in order to take ur records from the table delete the setup table(LBWG) and initialize it with ur records.
    You can find the contents SE16
    Filling set up tables
    transac LBWG
    + SBIW -> Logistics -> Managing Transfer Information Structures-> Setup of Statistical Data-> Application-Specific Setup of Statistical Data
    set up tables
    Set up tables
    Set up tables
    view of set up tables data in se11??????????
    Set Up tables..
    lo: delete set up tables: DOUBT
    LBWQ is the extraction queue and RSA7 is delta queue. Data is sent to delta queue from extraction queue through collective job scheduled in transaction LBWE.
    when we want to extract the data using LO Cockpit, the data will be come to the extraction queue first and from there it will processed to the delta queue. SO lbwq works as a outbound queue.
    If the update mode is Unserialised V3 then as soon as the document is posted it comes update table which you can see in Tr. Code SM13. After the jonb is scheduled the records come to RSA7 i.e delta queue from which BW pulls the data
    If you use u201CQueued Deltau201Dupdate method then the data moves to Extraction queue(LBWQ). Then run Collective update to move the data from LBWQ into Delta Queue (RSA7). Then schedule the data using the infopackage by selecting Delta Load in the update tab.
    So in If you are going to do Setup table filling, delete the data from LBWQ.
    The usage of Extraction queue(LBWQ) comes in to picture in delta loading. But actually system starts collecting the data (whenever there is document creation in R/3) after activating the EXtraction structure.
    Steps to Be Performed
    We know that there are 4 types of delta extraction that are available in LO. If you use u201CQueued Deltau201Dupdate method then the data moves to Extraction queue(LBWQ). Then run Collective update to move the data from LBWQ into Delta Queue (RSA7). Then schedule the data using the infopackage by selecting Delta Load in the update tab.
    Here is Roberto's weblog:
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    check this out...
    LBWQ - T code is for what?
    Ttransaction LBWQ
    What is LBWQ?
    Assign points if it helps
    Hope it helps
    regards
    Bala

  • PreparedStatement and table name

    Hi,
    I have the following snippet, and it seems that I cannot use the function
    prepStmt.setString(1, TABLE_NAME);
    to set the table name for the SQL prepared statement. What function should I use?
    Thanks,
    Rocky
    final String[] TABLE_NAME =
    "Borrower",
    "Loan",
    "Depositor",
    "Account",
    "Customer",
    "Branch",
    final String DATA_DELETE = "DELETE * FROM ?";
    try
    PreparedStatement prepStmt = dbConn.prepareStatement(DATA_DELETE);
    for (int i =0; i < TABLE_NAME.length; i++)
    System.out.println(TABLE_NAME[i]);
    prepStmt.setString(1, TABLE_NAME[i]);
    prepStmt.execute();
    prepStmt.clearParameters();
    dbConn.commit();     //     not needed
    prepStmt.close();
    catch(SQLException e)
    System.out.println(e.getMessage());

    setString is just a specific case of setting a field value should not be used to set table name
    what u want to do should be done at the sql String level and it's not necessary prepared statements
    This would be my suggestion (didn't test it):
    final String[] TABLE_NAME =
    "Borrower",
    "Loan",
    "Depositor",
    "Account",
    "Customer",
    "Branch",
    final String DATA_DELETE = "DELETE * FROM TABLE_NAME";
    try
    Statement stmt = dbConn.createStatement();
    for (int i =0; i < TABLE_NAME.length; i++)
    System.out.println(TABLE_NAME);
    stmt.executeUpdate(
    sql.replaceFirst("TABLE_NAME",TABLE_NAME[i])
    dbConn.commit();     //     not needed
    stmt.close();
    catch(SQLException e)
    System.out.println(e.getMessage());

  • Dynamic table name - error

    After run (or test) of procedure
    create or replace procedure tmp_select_dymanic
    ( AInTable IN VARCHAR2,
    ACount OUT NUMBER
    ) as
    begin
    EXECUTE IMMEDIATE 'BEGIN SELECT count(*) INTO :Count FROM :InTable END;'
    USING ACount, AInTable;
    end tmp_select_dymanic;
    error message: invalid table name.
    I know the table exists and contains data. I can make SELECT in SQL (not dynamic).
    What a reason for error? May be privileges in database? But i make SELECT on my own table?
    How can i set dynamic table name in other way?
    My Oracle Version 10g.

    What you are asking can be done by REF_CURSOR;
    look this example and try your self the rest:
    CREATE OR REPLACE PROCEDURE insert_to_table_dinamic (
       table1   IN   VARCHAR2,
       table2   IN   VARCHAR2
    AS
       rc         sys_refcursor;
       v_sql      VARCHAR2 (2000);
       v_deptno   NUMBER;
    BEGIN
       v_sql :=
             'SELECT DEPTNO FROM '
          || table1
          || ' WHERE ROWNUM = 1 AND DEPTNO IS NOT NULL';
       OPEN rc FOR v_sql;
       LOOP
          FETCH rc
           INTO v_deptno;
          EXIT WHEN rc%NOTFOUND;
          v_sql :=
                'UPDATE '
             || table2
             || ' SET DEPTNO = '
             || v_deptno
             || ' WHERE DEPTNO IS NULL';
          EXECUTE IMMEDIATE v_sql;
       END LOOP;
    EXCEPTION
       WHEN OTHERS
       THEN
          DBMS_OUTPUT.put_line (SQLCODE || SQLERRM);
    END insert_to_table_dinamic;when i give DEPT , EMP as my 2 parameters above code will set the deptno in EMP table where deptno is null;
    --Just a test proc.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • View of set up tables data in se11??????????

    Hi,
    can we view the data in se11 thru set up tables names? if so then how do we find set up tables names, say for example if i am using 2lis_13_VDHDR then how can i view the data apart from RSA3 after filling up of set up tables? is there any chance to view the data thru se11 and with the set up table name? and if so then how do we find set up tables name?

    Hi
    set up table names starts with 'MC' followed by application component '01'/'02' etc and then last digits of the datasource name and then followed by set up..
    we can say the <b>communication structure</b> (R/3 side,you can check it in LBWE also) name followed by 'setup'
    for your example below is the name of setup table
    MC13VD0HDRSETUP
    If you want to check data in set up tables you better look at the transaction NPRT here you can see the table name from which data is picking also
    Hope it helps
    Thanks
    Teja

  • EF 5 Model First Approach- How to avoid Table names from pluralized

    I'm using Entity Framewrok 5.0 Model First approach using Visual Studio 2012 express. The generated database tables are pluralized. How do I avoid this? Please advice. I'm using Model First approach (Designed the entities in the EF designer and generated
    the Database.) . Please note that following technic does not apply to this scenario as it applies to code - first approach.
    using System.Data.Entity.ModelConfiguration.Conventions;
    protected override void OnModelCreating(ModelBuilder modelBuilder)
    modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();

    Hi Arasheed,
    Welcome to the MSDN forum.
    I tested your problem. It seems a default setting that Table names are pluralized. If you want to avoid pluralizing, you can do it manually:
    Right click the empty area and select “Generate Database from Model…”.
    Choose the correct connection and click “Next”.
    You will see the generated DDL. Please copy all the content, then click “Cancel”.
    Click “Data” on the Visual Studio bar and select “Tansact-SQL Editor”. Then click “New Query Connection…”.
    Connect to the right server.
    Paste the DDL we copied before.
    Modify the table creation lines. Note: do not forget to change the corresponding name in constraints.
    Right click the empty area and click “Execute SQL”.
    In addition, you can submit your feature requests here to improve Entity Framework:
    http://data.uservoice.com/forums/72025-ado-net-entity-framework-ef-feature-suggestions
    Good day.
    Alexander Sun [MSFT]
    MSDN Community Support | Feedback to us

  • Help me with set up table error message please

    Hello
    I am trying to fill set up tables for application 12 in background as I try to schdule the job, I was getting the message " datasource 2lis_12_vchdr contains data still to be transfred".
    I tried twice and both the time i got same message. so I schdule it for running it immediately and it was runnning for 2 hrs and after that I got the same message that " datasource 2lis_12_vchdr contains data still to be transfred".
    so what does this mean ? are the set up tables already filled or I need to do someting else before filling set up tables
    can you please guide where I can check the set up tables have been filled sucessfully.
    I tried in RSA3 and it is showing data there but I am not sure which mode I should select to see the data and  I am also not sure weather this is right place to check the data.
    This is kind of urgent pl. help
    I will assign full points to right answer.
    Krish

    Hello Thank you all for your quick replies,
    can you please suggest the set up table name I have to look in se16 to see the set up table data for application 12 ??
    also as I said I did not checked in RSA7 for any records and starte filling set up tables and now I have started the loading as well, is it ok as I am in dev. system and i have to repeat filling the set up tables ?
    Please suggest.
    note: I will assign points to all the answers
    Regards
    Krish

  • How to get the table name of a field in a result set

    hi!
    i have a simple sql query as
    select tbl_customerRegistration.*, tbl_customerAddress.address from tbl_customerRegistration, tbl_customerAddress where tbl_customerAddress.customer_id = tbl_customerRegistration.customer_ID
    this query executes well and gets data from the database when i get ResultsetMetaData from my result set (having result of above query) i am able to get the field name as
    ResultSetMetaData rsmd = rs.getMetaData();//rs is result set
    String columnName = rsmd.getColumnName(1);
    here i get columnName = "Customer_id"
    but when i try to get the tabel name from meta data as
    String tableName = rsmd.getTableName(1); i get empty string in table name....
    i want to get the table name of the respective field here as it is very important to my logic.....
    how can i do that.....
    please help me in that regard as it is very urgent
    thanks in advance
    sajjad ahmed paracha
    you may also see the discussion on following link
    http://forum.java.sun.com/thread.jspa?threadID=610200&tstart=0

    So far as I'm aware, you can't get metadata information about the underlying tables in a query from Oracle and/or the Oracle drivers. I suspect, in fact, that the driver would have to have its own SQL parser to get this sort of information.
    I'm curious though-- how do you have application logic that depends on the name of the source table but not know in the application what table is involved? Could you do something "cheesy" like
    SELECT 'tbl_customerRegistration' AS tbl1_name,
           tbl_customerRegistration.*
    ...Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Set the column name of a table in a list box

    is there any code to set the column name of a table in a list box at oracle devloper 6i?
    pls help.

    I dont want to go for pl/sql . It should work any table.You want Dynamic SQL without using PL/SQL? Tricky. I'm sure there's a possible way using some very complex and convoluted XML functionality of SQL but in reality you are asking for something that isn't natural to SQL queries, especially if you are expecting a dynamic number of columns to be produced for each row of data. SQL expects a table structure, including output formats, to be a defined number of columns with any number of rows, not a defined number of rows with any number of columns.
    Perhaps if you explain why you need this sort of functionality then we may be able to offer a better solution.
    ;)

  • ORA-00903: Invalid table name - running Set based mapping

    Hello,
    Using OWB 10.2.04.36 and have created a mapping which reads data from Non-Oracle, ODBC source table, actually a worksheet in an Excel workbook which has been defined/set up using the Heterogeneous Service components.
    I can view the data in the worksheet using the Design Center, Data Object Editor, Data Viewer tab so I know the data is accessible.
    The mapping is performing a Loading Type: INSERT/UPDATE into a View which has an INSTEAD OF INSERT OR UPDATE OR DELETE ON view.
    The mapping validates okay and is deployed successfully.
    Yet when it is run in "Set based" Operating Mode from Control Center Manager the Execution Results show an "ORA-00903: Invalid table name" error is raised.
    You cannot run the mapping in any Row based operating mode as Row based running fails with "ORA:22816: Unsupported feature with RETURNING clause" due to the generated code for the INSERT/UPDATE of the view using a RETURNING clause which is actioned on an INSTEAD OF trigger.
    Looking at the generated package code I can strip out the SELECT statement from the MERGE statement for the alias "MERGE_SUBQUERY" and it runs and displays the expected result, however when the complete MERGE statement is taken and run I get the same ORA-00903 error that was reported in Control Center Manager.
    Any ideas what the problem could be? I have another mapping that reads from the same source Excel workbook/worksheet and INSERT/UPDATE into a table without an INSTEAD OF trigger, this mapping deploys, runs successfully so the issue seems to be with the INSERT/UPDATE into the view. The views are what we require to be populated.
    Thanks.

    Hi,
    But changing V_EMP_DEPT to EMP is not INSERTING/UPDATING to the view V_EMP_DEPT, what you propose is INSERTING/UPDATING into the table EMP. The code was only an example showing that the MERGE does not work when INSERTING/UPDATING into a view based on joining tables. For example say you wanted to INSERT/UPDATE the DNAME of V_EMP_DEPT then the MERGE statement generated by OWB PL/SQL mapping would use the code structure/template:-
    MERGE INTO "V_EMP_DEPT" "V_EMP_DEPT"
       USING (SELECT 5369 "EMPNO",
                     'SMITH' "ENAME",
                     'CLERK' "JOB",
                     7902 "MGR",
                     To_Date('17/12/1980','DD/MM/YYYY') "HIREDATE",
                     800 "SAL",
                     'New Dept Name" "DNAME"
              FROM   Dual,
                     "DEPT" "DEPT"
              WHERE  ("DEPT"."DEPTNO" = 20)) "MERGE_SUBQUERY"
       ON (    "V_EMP_DEPT"."EMPNO" = "MERGE_SUBQUERY"."EMPNO")
       WHEN NOT MATCHED THEN
          INSERT("V_EMP_DEPT"."EMPNO",
                 "V_EMP_DEPT"."ENAME",
                 "V_EMP_DEPT"."JOB",
                 "V_EMP_DEPT"."MGR",
                 "V_EMP_DEPT"."HIREDATE",
                 "V_EMP_DEPT"."SAL",
                 "V_EMP_DEPT"."DNAME")
          VALUES("MERGE_SUBQUERY"."EMPNO",
                 "MERGE_SUBQUERY"."ENAME",
                 "MERGE_SUBQUERY"."JOB",
                 "MERGE_SUBQUERY"."MGR",
                 "MERGE_SUBQUERY"."HIREDATE",
                 "MERGE_SUBQUERY"."SAL",
                 "MERGE_SUBQUERY"."DNAME")
       WHEN MATCHED THEN
          UPDATE
             SET "ENAME" = "MERGE_SUBQUERY"."ENAME",
                 "JOB" = "MERGE_SUBQUERY"."JOB",
                 "MGR" = "MERGE_SUBQUERY"."MGR",
                 "HIREDATE" = "MERGE_SUBQUERY"."HIREDATE",
                 "SAL" = "MERGE_SUBQUERY"."SAL",
                 "DNAME" = "MERGE_SUBQUERY"."DNAME";
    {code}
    This was only an example my target view has a lot more columns being MERGE'd into the view and joined tables.
    Cheers,
    Phil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Tcode for setting FI-SL planning: Summary table name

    can any body suggest Tcode for  for setting FI-SL planning: Summary table name.

    Hi,
    Check Tcode : GB01.
    CHECK THESE ALSO,
    GLPLINST.
    GLPLINSTALL.
    THANKS,
    REWARD IF HELPFUL.

  • Value set table name in fusion app

    Hi Team,
    Can any one please tell me the table name which is used in fusion app to store the value set name which we create.
    Thanks,Ajay

    Sorry for the confusion, the FND tables are indeed in the OER and the FND_VS_VALUE_SETS can be found there. There is a data issue where content (prior of R8) was in correctly categorized such that its not available under "technology" product family and my query failed since used combination of both criteria. In any case just use "All versions" for the version criteria and the data will be returned. They are internally working to fix the product family for previous releases..
    Jani Rautiainen
    Fusion Applications Developer Relations                              
    https://blogs.oracle.com/fadevrel/

  • Table name for operation Set-up time

    Hello -
    I want to know the table name which stores the operation set-up time of a production order, that has been changed manually. I tried to see it in S022, but it saved as zero values.
    Please reply. Thanks.

    DD02L Table contains the SAP Tables.
    DD02T Table contains the SAP Table Texts.
    DD01L Table contains the Domains
    DD01T Table contains the Domain Texts.
    DD03L Table contains the Table Fields.
    DD03T Table contains the Table Field Texts. (Language Dependent)
    DD04L Table contains the Data Elements.
    DD04T Table contains the Data Element Texts.
    DD05s Table contains the Foreign Key Fields
    last words with L and T only. L->Database Fetch T-> Text
    Regards,
    Chandru

Maybe you are looking for

  • Routine calculation in MIRO

    Hi, I am using routine for calculating tax in PO and the same routine gets called at MIRO also.Now the requirement is like that when the user enters the PO no. against which he is doing MIRO tax gets calculated from PO.Also user can change the value

  • Need a help in the Select statement

    How to use the table name dynamically in the Select Statement in Oracle 9.i ?

  • Internet Connection Message at startup and various moments of the day

    I started out using a dial-up connection, then later upgraded to ethernet. Now, everytime I start up my iMac I get a Internet Connection message. Here's what it says, The selected communications device does not exist. Please verify your settings and

  • Object status - Get description instead of code (J_STATUS) for OBJNR

    Hi, I am modifying a report, in which one of the fields on output is "Object status," which is pulled from table "Jest". The field is called "Stat" and pertains to the specific OBJNR (object number.) However, the status is a code (5 Char) but the use

  • Multiple selection of various levels of hierarchy

    I have a 5-level hierarchy, but I think the question can be asked thinking of just a two level hierarchy:  Suppose we have Continent and Country, and I want to select North America and Europe.  The country field should filter down to show only countr