Number of records in setup tables

Hi all,
How do we find out the number of records extracted into setup tables ?
Thanks in advance
Kiran

Hi Kiran,
You can check in the RSA3 for the data source.
In TA NPRT check for the no.of records and then cross check in SE16.
Assign points if it helps
Regards,
Sinivas
Message was edited by:
        Srinivas
Message was edited by:
        Srinivas

Similar Messages

  • Number of records in SETUP table

    Hello
    I am working with PO extractor. Is the number of records in XXXXXXSETUP table equal to the number of records setup?

    Hi if I understand the question the answer is no.  For example I have recently carried out a setup run for Stock Initialisation MC03BX0SETUP.
    The number of records in this table is just over 4000 and when I carry out an opening balance load to BW for the 2LIS_03_BX the number of records are just under 2million
    The setup tables are cluster tables

  • Records in setup table

    Hi Gurus,
    I had a query regarding the total no. of records in setup table of a particular datasource say for 2LIS_13_VDKON
    If i want to know the number of entries in the setup table for this datasource how can i do that ? RSA3 extractor can do this but i just want number of entires only.
    Is there any database table to store the data of setuptable for it ?
    Sonal...

    Hi Sonal,
    U can try in SE16 --> MC13*KONSETUP which is a structure name (F4).. and then select ur structure name and then enter. And check for the number of entries.
    Or u can use RSA3 to findout the same where u need to provide the proper celll info to get the total count.
    Or u can check NPRT T-code to get the total count for that application from the previous setups.
    thanks
    Hope this helps

  • NUMBER OF RECORDS IN EACH TABLE???

    Hi!
    how can i find the number of records in each table in the database. the result should be like this
    table_1 123
    table_2 60
    table_3 88
    thanks!!
    also if we want to see it only for a particular schema???

    You can get all the table names and schemas from ALL_TABLES table.
    then you can stored that on a cursor,
    then you can create a function where you use an execute_immediate to run the queries dinamically. with that you can run a COUNT for each TABLE
    That's the idea give it a shot :)
    Regards

  • How  to retrieve one row from the number of records in a table

    i want to retrieve the rows from the number of records in a table without using the perticular column name.

    select count(*) from table
    /If you have your table currently analyzed, and no changes have been made, then you could
    select num_rows from user_tables where table_name = 'table'

  • No of records in Setup table

    Hi Gurus,
    I loaded LO sales data(11) into setup table.
    How do I find out how many order item records loaded in SETUP table.
    How to find out how many records are there in SETUP table(SALES)
    Thanks
    Liza

    It is always hard to find a number of recores since the setup table is some kind if clustered table it many not show you the exact number, but you can see how in se11 setup11* and you will find tables for each extractor. At the same time you can go to transaction code NPRT history of the setup table who created and how many records were loaded.
    hope that answers your question.
    thanks.
    Wond

  • How to restrict the number of Records into the Table?

    Is there any way that I can restrict the number of records can be entered into the table?
    For example I have created a table TAB1 with size category 0( zero).
    User dont want to enter more than 100 values, How to restrict the number entries? Whether Basis can do it?
    Regards,
    Prathap

    Hi Prathap,
    You can write a code in table maintenance events to restrict the number of Records added into the Table to constant.
    Solution:
    Se11 -> enter table name (TAB1) -> F6 -> Utlities -> Table maint. generator -> Envirnment -> modification -> events -> write here the form routine name.
    Double click on routine name. You will get into include section of the code. Write here code like:
    IF current_rec_num > 100.
       messgae error 'Entry restriceted to 100'
    ENDIF.
    Somewhat this way you can achieve your target.
    Regards,
    Sachin

  • Number of Records in one table

    Hi All,
    Can anybody let me know that in Oracle9i lite database, one table can have how many records. I mean is their any restriction on maximum number of ROWs for a table, like Palm database (PDB files) has a restriction that one table can have maximum 64000 rows.
    Is the same thing happen with Oracle lite database also
    Thansk in advance.

    We have had several tests of hundreds of thousands of rows using 9iLite on a PocketPC host. The upper bound appears to be based upon the physical limit of the host and not 9iLite.
    RP.

  • Number of records in internal table

    Hi
    How can I tjeck an internal table for the number of records it contains (even if it contains 0).
    Thanks in advance, regards
    Torben

    Hi,
    DESCRIBE TABLE itab.
    Effect
    Returns the attributes of the internal table itab. You must use at least one of the additions listed below:
    Note
    The DESCRIBE statement cannot be used for all ABAP types. In connection with ABAP Objects, SAP has introduced a RTTI concept based on system classes to determine type attributes at runtime. This concept applies to all ABAP types and as such covers all the functions of the DESCRIBE TABLE statement.
    Extras:
    1. ... LINES n
    2. ... OCCURS n
    3. ... KIND   k
    Addition 1
    ... LINES n
    Effect
    Places the number of filled lines of the table t in the field lin. The value returned to lin has type I.
    Note
    The number of filled lines of the table itab can also be ascertained using the predefined function lines( itab ).
    Example
    DATA: N    TYPE I,
          ITAB TYPE TABLE OF I.
    CLEAR ITAB.
    APPEND 36 TO ITAB.
    DESCRIBE TABLE ITAB LINES N.
    Result: N contains the value 1.
    Addition 2
    ... OCCURS n
    Effect
    Passes the size of the OCCURS parameter from the table definition (as defined with DATA) to the variable n. The value returned to n has type I.
    Example
    DATA: N1    TYPE I,
          N2    TYPE I,
          ITAB1 TYPE TABLE OF I INITIAL SIZE 10,
          ITAB2 TYPE I OCCURS 5.
    DESCRIBE TABLE ITAB1 OCCURS N1.
    DESCRIBE TABLE ITAB2 OCCURS N2.
    Result: OCC contains the value 10 and N2 the value 5.
    Addition 3
    ... KIND k
    Effect
    Writes the table type from itab to the variables n. The value returned to k is of type C. The constants SYDES_KIND-STANDARD, SYDES_KIND-SORTED and SYDES_KIND-HASHED are defined in the type group SYDES for the return values.
    Example
    Generic FORM routine any table type
    TYPE-POOLS: SYDES.
    FORM GENERIC_FORM USING ITAB TYPE ANY TABLE.
      DATA: K TYPE C.
      DESCRIBE TABLE ITAB KIND K.
      CASE K.
        WHEN SYDES_KIND-STANDARD.
        WHEN SYDES_KIND-SORTED.
        WHEN SYDES_KIND-HASHED.
      ENDCASE.
    ENDFORM.
    Notes
    Performance: The runtime for executing the DESCRIBE TABLE statement is approximately 4 msn (standardized microseconds).
    The DESCRIBE TABLE statement also passes values to the SY-TFILL and SY-TLENG System fields
    Additional help
    Determining the Attributesof Internal Tables
    Thanks,
    Sankar M

  • Number of records in FAGLFLEXT table

    Dear colleagues,
    Could You please tell me what the maximum number of records FAGLFLEXT table may contain.
    I was said during FI-GL migration project in 2008 that the optimal number of records is 500 000 per year.
    After having implemented new project we expect the number of records to increase approximately up to 1 500 000 - 3 500 000 records for 1 year. Is this critical?
    I read at the forum that SAP recommends to have maximum 10 000 000 records in this table but it was not clarified for what period: for one year or for the whole life of the system.
    Regards,
    Stanislav.

    - hope below notes help.
    [Note 820495|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=820495]
    [Note 1045430|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1045430]
    Rgds.

  • RFC function to return number of records in a table

    Hello,
    I am looking for a RFC function to return just the number of records in a SAP table.
    I don't want to use RFC_READ_TABLE since it takes too long when I query a big table.
    Any advices?

    Check the following post: Link: [Re: RFC function module to count records in DB table;

  • Number of record  with multi-table insert

    Hi,
    I need to insert into 3 different tables from one big source table so I decided to use multi-table insert. I could use three inserts statements but the source table is an external table and I would prefer not reading it three times.
    I wonder if there is a way to get the exact number of records inserted in each one of the tables?
    I tried using rowcount but I all I get is the number of rows inserted in all three tables. Is there a way to get this info without having to execute a "select count" in each table afterward?
    Thanks
    INSERT /*+ APPEND */
    WHEN RES_ENS='PU' THEN
    INTO TABLE1
    VALUES(CD_ORGNS, NO_ORGNS, DT_DEB, SYSDATE)
    WHEN RES_ENS='PR' THEN
    INTO TABLE2
    VALUES(CD_ORGNS, UNO_ORGNS, DT_DEB, SYSDATE)
    ELSE
    INTO TABLE3
    VALUES(CD_ORGNS, NO_ORGNS, DT_DEB, SYSDATE)
    SELECT ES.CD_ORGNS CD_ORGNS, ES.RES_ENS RES_ENS, ES.DT_DEB DT_DEB, ES.NO_ORGNS NO_ORGNS
    FROM ETABL_ENSGN_SUP ES

    I have a large number of data to load in those three tables. I do not want to use PL/SQL (with loops and lines of codes) because I can do the insert directly from the source table and it saves a lot of time.
    INSERT /*+APPEND*/
    WHEN condition1 THEN
    INTO table1
    WHEN condition2 THEN
    INTO table2
    SELECT xx FROM my_table
    For example, if my_table has 750000000 rows, I only need to read it once and the INSERT..SELECT is a really fast way to load data.
    As I was saying, the only problem I've got, is that I cannot get the number of rows in each table. Do you know a way to get it?

  • How to prevent record from setup table from deletion if it is used in atabl

    i have two table setup table and master table
    the setup table contains data from countries and i use this countries in master table
    i want to prevenet a user from deleting country if it is used in master table
    i know i can do this if i make a foreing key in setup table
    but in this cases the exception message are raised from the data base
    can i make this from the jdeveloper by asscociation and view object and customise the message that are raised to the user
    thanks in advance

    The question is why to program this yourself if it's available by the framework?
    You can customize the error message raised by the db in the framework (there is a whole chapter in the docs).
    Timo

  • No Free document number range possibility in Setup table filling of Sales roder

    Hello
    If we have many documents to be reloaded in BW through setup table especially for Sales order / delivery /  Invoices datasources, then there is not facility to load selectively by document numbers.  One has to specify only ranges ? I dont have ranges , I have scattered document numbers.
    Is there any alternate solution for this ?
    Regards
    Saurabh

    Hi Saurabh,
    There is a workaround which I am not aware of completely.
    A custom Abap program can be written which can take the required sales documents through a flat file load interface which will not require the use of manual input;s for all the documents.
    I used this program long time back. It was created by one of our ABAP's teammate.
    It will take long time to run but reduces the manual effort.
    You can check with your ABAP team if they can create something like that.
    Best Regards,
    Arpit

  • Procedure inserting different number of records in GT table

    I have procedure, in the procedure a dynamic query is get created. Then query is open using OPEN for statement into refcusror. Then I'm fetching the data into record type object within a loop..end loop and inserting the records in a GT table.
    But problem is for the same data procedure is inserting less records, when i recomplie the procedure it began to insert correct number of data.
    I wonder whether is environment issue or something else? Please advise if any one faced such type problem.

    Hi upennit. Not much info to go on there.
    Have a read of Re: 2. How do I ask a question on the forums?
    then post back with some relevant info.

Maybe you are looking for

  • DVI adapter?

    What DVI adapter do I need for my Intel-based iMac? I have one that came with my G4 iBook, but it doesn't fit. I don't want to purchase the wrong one, and it isn't clear to me in the Apple ads which one I need so I can connect to a VGA projector. Mes

  • Email Completed Form, Not Data

    Hello, I have created a form in designer with a "submit by email" button. It works perfectly as it should. What I would like to do is have the completed from sent back to me instead of the XML. Is this possible? The users are filling out the form as

  • DVD or CD won't display or appear on hard drive list of devices

    I insert a new CD-R or DVD-R I get no response or recognition that it's there--no icon appears on the desktop or anywhere else I can find. The only way I've found to eject one is to go open Disk Utility and Eject. In Disk Utility the only option I'm

  • Hp 6250 printer - Color Graphics Display came off machine

    The graphics display screen pulled right out of the machine. I have opened it up but I can not find where the white cable (more like a flat ribbon) should be located and inserted inside the machine. If anyone can provide me with a picture of the insi

  • Help with BW iView

    Hello, Is it possible to have parameters for a BW report be passed right from the iView?  For example, we have a BW report that generates a large amount of data organized by cost center - our wish is to have the iView effectively break down (or burst