Any table to see Added Record amount

Hi All,
I am analyzing a DSO data loads and need to compare Added Records for each request. It is kind of inconvenient to look each request one by one in manage option. Does anyone know any table which I can find this information by date?
Thanks

Hi,
check this table u will get all required things
RSSTATMANPART
Bhaskar
Edited by: shanthi bhaskar on Feb 26, 2009 12:10 AM

Similar Messages

  • Refresh table automatically after adding record in dynpro

    I have a table element in my layout which is bind to a dictionary table and displaying the records correctly.I have input fields in the same view along with the add buttoon which inserts the entered record into the dictionary table successfully.
    Till now its fine but what I want is after adding the record, the displayed record in the table should be refreshed automatically.I guess one method would be that in action of button click  i  fetch the records using select query into an internal table and bind it again to the table.
    Is there any other method to do this. Also will supply function be helpful in this case???
    THanks

    @sarbjeet:
    Here is the code of supply method
    method SUPPLY_FILLNODE.
    DATA:
                  NODE_TABLE_EMP                      TYPE REF TO IF_WD_CONTEXT_NODE,
                  ELEM_TABLE_EMP                      TYPE REF TO IF_WD_CONTEXT_ELEMENT,
                  STRU_TABLE_EMP                      TYPE wd_this->ELEMENT_TABLE_EMP,
                  ITAB                                TYPE TABLE OF wd_this->ELEMENT_TABLE_EMP.
              navigate from <CONTEXT> to <TABLE_EMP> via lead selection
                NODE_TABLE_EMP = WD_CONTEXT->GET_CHILD_NODE( NAME = `TABLE_EMP` ).
               SELECT EEMP_NO ENAME ECITY DDEPT_NAME INTO CORRESPONDING FIELDS OF TABLE ITAB FROM ZEMPLOYEE_MASTER AS E  INNER JOIN ZEMPLOYEE_DEPT AS D ON EDEPT_NO = DDEPT_NO order by E~EMP_NO  .
             CALL METHOD NODE_TABLE_EMP->BIND_TABLE
               EXPORTING
                 NEW_ITEMS            = ITAB
                SET_INITIAL_ELEMENTS = ABAP_TRUE
                INDEX                =
    endmethod.

  • Is there any table for see  Authorization object for Function code?

    Hi,
    I am facing problem in finding autho. object for function code.
    My problem is, in tcode cor2 there is function Approval (in Menubar->process order->function->approval), I want to restrict this to some users.
    So is there any way or table to see function code's authorization object..
    Thanks...

    Hi ,
    I such scenario the best way is to run trace (ST01) and analyse to find used/missing authorization objects.
    Regards,

  • Table to see the Tax amount of the PO item.

    Hi Experts,
    I have a requirement that the Tax amount of the PO item should display in  PO print preview. I have searched for the tables where the tax data stores to guide to the ABAPer. But none of the table I found. Only the structures I am able to see.
    Could any one please suggest as how to implement this.
    BR,
    Cherry k

    Check in tables,
    T007S
    EKKO-KNUMV
    KONV

  • Payment Program Creation Date and User (is this in any table in SAP R/3)?

    Dear Experts!
    The treasury guy asked me whether there would be a way to recover the "Payment Program" Creation Date and Created by (User) from Payment Program Executions (F110 transaction).
    I searched on the REGU* tables and I didn't find out this information.
    Does anybody know whether there is any table where this is recorded?
    NOTE: We cannot use the information from "Proposal Log" because the log is removed from the Productive System and only the last 3 (three) days are remaining.
    Thanks and Kind Regards,
    Daniel Carvalho.

    Hello "The Wirtschaftsmann",
    Thanks for the reply. However, I need the Creation Date and Creation by of the Proposal / Payment Run steps.
    Not sure if this information is available nowadays at SAP. I opened an incident with SAP, let's see what they reply to us.
    Regards,
    Daniel

  • Any table or program to get the number of records in P, A and F tables

    HI all
    any table for program to get the number of records in P, A and F tables. I want to create SQ01 queries to get the status of number of records. We are gng for a production cutover next week. Want to capture all the data before and after Upgrade cutover.
    Also suggest me how to create sq01 queries.
    Thanks in advance
    regards
    Janardhan KUmar K.

    Use Transaction LISTSCHEMA to see all the tables assosciated with ur cube
    Total number would be what you find in both the E & F fact tables. If there is no compression in the cube then E table will be empty.
    Alternatively u can use se16 transaction and enter E table and F table manually
    E table - /BIC/E(Cube name) and Ftable -  /BIC/F(Cube name)
    Or else u can go to the manage of the cube and without selecting any field for O/P and ticking the option output number of hits execute. The total of Row Count will give u the total no of records in the cube.

  • How can we see status of all Requests at a time using any tables?

    How can we see status of all Requests at a time in the Info cube or ODS using any tables? what I am facing was while I run a Process Chain in some data targets red requests remains and due to this all other requests doesnot available for reporting.
    Now is there any T-Code or Table to view all requests in a single shot.
    Thanks in advance,
    Raj

    Hi Go for RSMONICDP give timestamp and u'll have it.
    Please assign points if useful
    Edited by: Aadil on Jan 21, 2008 7:43 AM

  • Loop in any Table of Record

    Hi
    Somebody know how can I to do a loop in Table in any table record ?
    I want to build a Generic Procedure or function
    tks

    I did not understand
    I wanted something like :
    PROCEDURE Mount_RecA(p_RecA IN t_RecA, p_Str IN OUT VARCHAR2, p_StrAux IN OUT VARCHAR2) IS
       BEGIN
          FOR i IN p_RecA.FIRST..p_RecA.LAST LOOP
             IF p_RecA(i).Auxiliar THEN
                p_StrAux := p_StrAux || Mount_Str(p_RecA(i).Conteudo,i);
             ELSE
                p_Str := p_Str || p_RecA(i).Conteudo;
             END IF;
          END LOOP;
       END Mount_RecA;

  • Is there any table or report  to see basic price  billing doc wise in mass

    Dear  experts,
                  is there any table or report  to see basic price  billing doc wise, in mass, please help
    regards
    rajakarthik

    Hi
    If your basic price is same as Net price then you can check it in table VBRK.
    If Basic Price is not same as Net Price then from the table VBRK you will have to take the value of KNUMV and then with respect to this KNUMV go to table KONV and take the value of KWERT.
    To check the value in mass you may make a report with the help of ABAP or by your own using SQVI transaction.
    Regards
    Amitesh Anand

  • Can we create a cursor that can hold records of any table

    DECLARE
         CURSOR cr_tablenames IS
              SELECT tname
              FROM tab;
         v_tablename tab.tname%TYPE;
    BEGIN
         OPEN cr_tablenames;
         LOOP
              FETCH cr_tablenames INTO v_tablename;
              EXIT WHEN cr_tablenames%NOTFOUND;
              DBMS_OUTPUT.PUT_LINE('Table: '||v_tablename);
              -- HERE, I WANT TO PERFORM SELECT * OPERATION ON
              -- EACH TABLE WHOSE NAME COMES INTO v_tablename
              -- AND DISPLAY THE RECORDS
         END LOOP;
    END;
    I want to perform SELECT * operation on each table whose name comes into the variable and display the records. How to achieve it? I am clueless.
    Can this be achieved by something like... using cursors which can be defined dynamically and which can hold records of any table?
    Or, do I need to have some different approach to this problem?
    Edited by: kartins on Nov 5, 2009 11:41 PM

    something like
    SQL> create or replace
      2  function getContent (p_tn in varchar2)
      3     return sys_refcursor
      4  is
      5     retval sys_refcursor;
      6  begin
      7     open retval for
      8       'select * from '||p_tn;
      9     return retval;
    10  end;
    11  /
    Function created.
    SQL>
    SQL> var rc refcursor
    SQL>
    SQL> begin
      2     :rc := getContent ('emp');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print rc
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        900                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1700        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1350        500         30
          7566 JONES      MANAGER         7839 02-APR-81       3075                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1350       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2950                    30
          7782 CLARK      MANAGER         7934 09-JUN-81       2551                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3100                    20
          7839 KING       PRESIDENT            17-NOV-81       5100                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1600          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1200                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81       1050                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3100                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1400                    10
    14 rows selected.
    SQL>
    SQL> begin
      2     :rc := getContent ('dual');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print rc
    D
    X

  • Is there any table which records the no. of Jobs run in day in BIP ?

    Hi All,
    I want to create a metadata report on what all jobs ran in my BIP production in a day. Is there any repository where this is recorded?
    Please let me know.
    I am in 10.1.3.4 and using oracle database
    Thanks,
    Ronny

    Hi Ronny
    All the reports the are scheduled the history will be stored in the backend table XMLP_SCHED_JOB.It will create a unique job_id.
    Based on this table u can create a report in BIP using the RTF template.....

  • Stay on the edit page once saved and see the record as a table

    I like to click on the edit of an interactive report to go to the edit page.
    Once in the edit page, I like to see not only the form to edit the record but also
    the record as a table to see what the record looks like once the save button is clicked below the edit form.
    Thanks.

    Look at the page branches. There will be one or more which goes to the first page. Change it to go to the current page instead of the first page.

  • Any way to restore deleted record from VBAP table.

    Hi Guru,
    Is their any way to restore deleted record from vabp.
    Back is taken but , All quality server back is taken, any way to restore only
    deleted VBAP data from all Back.
    Regards
    Durgesh

    Hi Sahu ji,
    you will not be able to get those records.
    Check this : If this issue is in Development than no need to worry.
    If in quality and production , then usually a copy of the system is there , and this can help you.
    Also , check is there any report that exports this data in some other form for backup.
    Hope it help you.

  • RMAN Last Completed Backup recorded in any table/view?

    Hi Friends,
    we are running RMAN backup of Full Database every day on 11g R2 Database.
    I would like to know where can i query the last completed backup date/time (in any table/view...) so that i will put a script to query that table/view to verify that the backup is completed .
    Regards,
    DB

    Hello;
    if you are using a catalog you can try this :
    select
            db_name,
            start_time,
            end_time,
            status,
            time_taken_display,
            output_bytes_display,
            output_device_type,
            session_key,
            session_recid,
            session_stamp
    from rc_rman_backup_job_details where end_time > sysdate -1If you not using a catalog V$RMAN_BACKUP_JOB_DETAILS should provide similar information.
    Best Regards
    mseberg

  • Added records in DB are not show in page until start a new browser

    I am inserting a record in my DB table by writing a code in my App Module Impl class. The code is shown below:
    EntityDefImpl productDef = ActivitySubtype_EOImpl.getDefinitionObject();
    ActivitySubtype_EOImpl newSubActivityType = (ActivitySubtype_EOImpl)productDef.createInstance2(getDBTransaction(),null);
    newSubActivityType.setAttribute("SubActivityName",subActivityType);
    getDBTransaction().commit();
    getDBTransaction().clearEntityCache(null); // Here I have tried lot of other function like refresh(), setClearCacheOnCommit() but noting works.
    For updating the cache I have tried many functions but nothing is working. I mean that I when I go to the same browser and view the rows, the row is added but without any PK (which is being generated by a sequence fired by trigger in my DB), until I start a new browser to see the record. When I start a new browser and view the rows I can see everything in sync with the DB table. Can someone let me know how to update the View Object cache?
    Appreciate your kind help.
    Thanks,
    Sanjay

    Hello John,
    Many thanks for your reply. I have marked the configuration you have talked about, but still it does not work.
    I understand that the problem is that my VO cache is not getting updated on its own. When I open a new browser, for this new session when the SQL query gets fired, the VO cache gets updated from the DB and the changes are visible in the new page.
    To overcome this problem I tried adding row using my VO (and not EO, as in my previous case). But I am getting some NullPointerException in that.
    Here is the code and exception.
    Code:
    String amDef = "model.activity.subtype.Second_AMImpl";
    String config = "Second_AMLocal";
    ApplicationModule secondAM = Configuration.createRootApplicationModule(amDef, config);
    ActivitySubType_VOImpl svcReqs = (ActivitySubType_VOImpl) secondAM.findViewObject("ActivitySubType_VOImpl");
    if(svcReqs != null)
    System.out.println("I am NOT NULL");
    else
    System.out.println("I am NULL"); // This object is null
    Row newSvcReq = svcReqs.createRow();
    svcReqs.insertRow(newSvcReq);
    Exception:
    javax.faces.FacesException: #{backing_addSA.create_action}: javax.faces.el.EvaluationException: java.lang.NullPointerException     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:98)     
    at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)     
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:287)     
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:401)     
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)     
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)     
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
    My VO is in the same package, hence for the VO I not mentioned the package. When I mentioned the package it not able to create the VO at all.
    Can you help me on creating a new record using a VO?
    Thanks,
    Sanjay

Maybe you are looking for

  • My itunes crashes every time I sync. APPCRASH

    Problem signature:   Problem Event Name:    APPCRASH   Application Name:    iTunes.exe   Application Version:    10.5.3.3   Application Timestamp:    4f14cc3d   Fault Module Name:    StackHash_5ed1   Fault Module Version:    6.1.7601.17725   Fault Mo

  • Option list in Forms WEB.

    I have a forms with a block based on a database package with 3 fields: A, B e C. If A is an option choice, the application shows the option list appropriated. In the client-server, it works perfectly. In the WEB, doesn´t show the option list (it´s th

  • Display Chinese Character in SQLPLUS

    Anyone have any idea how to display a chinese character from the database? Is it possible to display from sqlplus. null

  • Formatting WD My Passport Essential SE 1 TB

    I was doing research on portable drives. I found a good deal on a Western Digital My Passport Essential SE 1 TB. I was wondering about a few things for those who had this drive. 1. Obvious question...are you generally happy with it? Any quirks? 2. Ho

  • Missing message file for PL/SQL compile time warnings

    I want to use PL/SQL compile time warnings but I don't have the message file on my system (or it is not installed correctly). This results in output like this: 3/5 PLW-05005: Message 5005 not found; No message file for product=plsql, facility=PLW Whe