Total number of records in given range.

total number of records in given range.
Hi all ,
I have the Requirement as follows.
I Have a Table which Contains Duplicate Dates like
22.11.2006
15.11.2006
31.10.2006
15.09.2006
15.09.2006
14.09.2006
15.09.2006
14.09.2006
16.09.2006
etc...
The input is monday of any week of a Year. Suppose 3 rd week starts from 15.11.2006 and ends to 21.11.2006. Weekly 5 days are working days. If i ienter the 15.09.2006 as input.....
The Required out put is : 5 Records ( In above example 15.09.2006 to 21.09.2006 total Number of records is 5. I mean 15.09.2006 is Found 4 times + 16.09.2006 is found 1 time in the Specied Range.
total: 4+1 = 5 records.)
Simply...my requirement is to find total number of Records(with Duplicates) in the Given range .
thanks in Advance
sivaranga& Krish...

this is the code. Where i have to make changes..
this is the program which they given
Report Title:         /GIL/ZZKWKBKS
Author:               XNIMKARP
Creation Date:        29.09.2006
ZSAO System:          <&system>  (blue)
ZSAO System Fct.:     <&sf>      (green)
DER:                  DER&
HLD:                  HLD&
Request number:
Description (technical)
===================================================================
Modification History  (recent on top / refs: MODnnn+ or MODnnn-)
Modification Number:  MODnnn
Modifier:             &userid
Modification Date:    &
Change object:        DER, TPR, Clarify number
Request number:
Description
Modification Number:  MOD001
Modifier:             &userid
Modification Date:    &
Change object:        DER, TPR, Clarify number
Request number:
Description
REPORT /GIL/ZZKWKBKS
         MESSAGE-ID  ??               "....
       NO STANDARD PAGE HEADING
       LINE-COUNT 65(0)
       LINE-SIZE 132.
eject*******************************************************
Data Declaration Section                                   *
TABLE declarations for select-options only                 *
TABLES: /GIL/ZZKDERMAST ,
        /GIL/ZZKCOMBOOK ,
        /GIL/ZZKWEEKID .
SELECT-OPTIONS and PARAMETERS                              *
SELECT-OPTIONS:
    S_STRWK   FOR /GIL/ZZKWEEKID-STRWK  NO INTERVALS .          "....
"PARAMETERS:
"    P_????  TYPE ????-????? DEFAULT ?,   "description ????
"    PX_??? AS CHECKBOX                   "description ????
TYPES                                                      *
TYPES:
      begin of T_IT_OUTTAB  ,
          STRWK like  /GIL/ZZKCOMBOOK-STRWK ,
          CSTMZ like  /GIL/ZZKDERMAST-CSTMZ ,
          NAME_TEXT like ADRP-NAME_TEXT ,
          DERNO like  /GIL/ZZKCOMBOOK-DERNO ,
          BNAME like  /GIL/ZZKCOMBOOK-BNAME ,
          HRSBK like  /GIL/ZZKCOMBOOK-HRSBK ,
          STATS like  /GIL/ZZKDERMAST-STATS ,
          CLSDT like  /GIL/ZZKDERMAST-CLSDT ,
          MNTHI like  /GIL/ZZKWEEKID-MNTHI ,
          QRTRI like  /GIL/ZZKWEEKID-QRTRI ,
    end of T_IT_OUTTAB  .
TYPES:
    begin of  T_IT_WEEKSUM ,
        STRWK  like  /GIL/ZZKCOMBOOK-STRWK ,
        MNTHI like  /GIL/ZZKWEEKID-MNTHI ,
        QRTRI like  /GIL/ZZKWEEKID-QRTRI ,
        DEVHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        CUSHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOTHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        DVMHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        CSMHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOMHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        DVQHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        CSQHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOQHRS like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOTDER like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOMDER like  /GIL/ZZKCOMBOOK-HRSBK ,
        TOQDER like  /GIL/ZZKCOMBOOK-HRSBK ,
    end of  T_IT_WEEKSUM .
TYPES:
    begin of  T_IT_DEVSUM ,
        NAME_TEXT like ADRP-NAME_TEXT ,
        HRSBK like  /GIL/ZZKCOMBOOK-HRSBK ,
    end of  T_IT_DEVSUM .
"TYPES: T_FL_???  TYPE ????-?????.          "description ???
"TYPES: T_IT_???  TYPE ????-?????.          "description ???
VARIABLES                                                  *
"DATA: V_???   TYPE ????-?????.          "field description
"DATA: VX_???  TYPE ????-?????.          "flag description
DATA:  VIT_DATATAB TYPE T_IT_OUTTAB occurs 0 with header line.
DATA:  VIT_WEEKSUM TYPE T_IT_WEEKSUM occurs 0 with header line.
DATA:  VIT_DEVSUM TYPE T_IT_DEVSUM occurs 0 with header line.
constants                                                  *
CONSTANTS: C_BR1    TYPE C VALUE '(' ,
           C_BR2    TYPE C VALUE ')' ,
           C_DASH   TYPE C VALUE '-' ,
           C_005    TYPE I VALUE '5' ,
           C_006    TYPE I VALUE '6' ,
           C_030    TYPE I VALUE '30' ,
           C_031    TYPE I VALUE '31' ,
           C_055    TYPE I VALUE '55' ,
           C_056    TYPE I VALUE '56' ,
           C_080    TYPE I VALUE '80' ,
           C_081    TYPE I VALUE '81' ,
           C_105    TYPE I VALUE '105' ,
           C_106    TYPE I VALUE '106' ,
           C_125    TYPE I VALUE '126' ,
           C_130    TYPE I VALUE '130' ,
           C_150    TYPE I VALUE '150' .
eject*******************************************************
program section  (EVENTS)                                  *
start of database access                                   *
START-OF-SELECTION.
PERFORM FETCH_BOOKING_DATA .
PERFORM FETCH_USER_DATA .
PERFORM WEEKLY_CUMULATION .
TOP-OF-PAGE.
   PERFORM WRITE_HEADER .
*&      Form  FETCH_BOOKING_DATA
      text
-->  p1        text
<--  p2        text
FORM FETCH_BOOKING_DATA .
    select a~STRWK
          a~DERNO
          a~BNAME
          a~HRSBK
          b~STATS
          b~CLSDT
          b~CSTMZ
          c~MNTHI
          c~QRTRI
    into corresponding fields of table VIT_DATATAB
    from  /GIL/ZZKCOMBOOK as a
    inner join /GIL/ZZKDERMAST as b
    on   bBNAME = aBNAME
    and  bDERNO = aDERNO
    inner join /GIL/ZZKWEEKID as c
    on cSTRWK = aSTRWK
    where a~STRWK in S_STRWK .
    if SY-SUBRC <>  0 .
        WRITE /10 TEXT-001.
        EXIT .
    endif .
ENDFORM.                    " FETCH_BOOKING_DATA
*&      Form  FETCH_USER_DATA
      text
-->  p1        text
<--  p2        text
FORM FETCH_USER_DATA .
DATA:
    BEGIN OF LIT_USER OCCURS 0 ,
        BNAME like  /GIL/ZZKCOMBOOK-BNAME ,
        NAME_TEXT like ADRP-NAME_TEXT ,
    END OF LIT_USER .
DATA : L_SY_TABIX LIKE SY-TABIX .
    LOOP AT VIT_DATATAB .
      MOVE-CORRESPONDING VIT_DATATAB TO LIT_USER .
      APPEND LIT_USER .
    ENDLOOP .
    DELETE ADJACENT DUPLICATES FROM LIT_USER COMPARING BNAME .
     if LIT_USER[] is not initial .
           SELECT BBNAME ANAME_TEXT
           INTO corresponding fields of table LIT_USER
           FROM ADRP AS A
           INNER JOIN USR21 AS B
           ON BPERSNUMBER = APERSNUMBER
           for all entries in LIT_USER
           WHERE B~BNAME = LIT_USER-BNAME .
     endif.
    loop at VIT_DATATAB .
      L_SY_TABIX = SY-TABIX .
      read table LIT_USER with key BNAME = VIT_DATATAB-BNAME .
      if sy-subrc = 0 .
          VIT_DATATAB-NAME_TEXT = LIT_USER-NAME_TEXT .
           modify VIT_DATATAB index L_SY_TABIX .
      endif .
    endloop.
ENDFORM.                    " FETCH_USER_DATA
*&      Form  WEEKLY_CUMULATION
      text
-->  p1        text
<--  p2        text
FORM WEEKLY_CUMULATION .
DATA:
    L_PREV_MNTHI  like /GIL/ZZKWEEKID-MNTHI ,
    L_PREV_QRTRI  like /GIL/ZZKWEEKID-QRTRI ,
    LFL_DATATAB_WA  TYPE T_IT_OUTTAB .
  SORT VIT_DATATAB BY STRWK CSTMZ NAME_TEXT .
  loop at VIT_DATATAB .
      move-corresponding VIT_DATATAB to LFL_DATATAB_WA .
      AT END OF NAME_TEXT .
          SUM .
          VIT_DEVSUM-NAME_TEXT =  VIT_DATATAB-NAME_TEXT .
          VIT_DEVSUM-HRSBK = VIT_DATATAB-HRSBK .
          APPEND VIT_DEVSUM .
      ENDAT .
      AT END OF CSTMZ .
          SUM .
          if LFL_DATATAB_WA-CSTMZ IS INITIAL .
              VIT_DEVSUM-NAME_TEXT =  TEXT-011 .
          else.
              VIT_DEVSUM-NAME_TEXT =  TEXT-012 .
          endif.
          VIT_DEVSUM-HRSBK = VIT_DATATAB-HRSBK .
          APPEND VIT_DEVSUM .
      ENDAT .
      AT END OF STRWK .
        CLEAR: VIT_WEEKSUM-DEVHRS ,
              VIT_WEEKSUM-CUSHRS ,
              VIT_WEEKSUM-TOTHRS .
        VIT_WEEKSUM-STRWK = LFL_DATATAB_WA-STRWK .
        VIT_WEEKSUM-MNTHI = LFL_DATATAB_WA-MNTHI .
        VIT_WEEKSUM-QRTRI = LFL_DATATAB_WA-QRTRI .
        SUM .
        VIT_WEEKSUM-TOTHRS = VIT_DATATAB-HRSBK .
        VIT_DEVSUM-NAME_TEXT =  TEXT-013 .
        VIT_DEVSUM-HRSBK = VIT_DATATAB-HRSBK .
        APPEND VIT_DEVSUM .
        SELECT SUM( HRSBK )
        INTO VIT_WEEKSUM-CUSHRS
        from /GIL/ZZKWEKBK
        where STRWK = LFL_DATATAB_WA-STRWK
        AND   CSTMZ NE  SPACE .
        VIT_WEEKSUM-DEVHRS =
            VIT_WEEKSUM-TOTHRS - VIT_WEEKSUM-CUSHRS .
       IF LFL_DATATAB_WA-MNTHI <> L_PREV_MNTHI .
          if week falls in differnet month .
             L_PREV_MNTHI = LFL_DATATAB_WA-MNTHI  .
            CLEAR: VIT_WEEKSUM-DVMHRS ,
                   VIT_WEEKSUM-CSMHRS ,
                   VIT_WEEKSUM-TOMHRS .
            SELECT SUM( HRSBK )
            INTO VIT_WEEKSUM-DVMHRS
            from /GIL/ZZKWEKBK
            where MNTHI =  LFL_DATATAB_WA-MNTHI
            AND   CSTMZ EQ SPACE .
            SELECT SUM( HRSBK )
            INTO VIT_WEEKSUM-CSMHRS
            from /GIL/ZZKWEKBK
            where MNTHI =  LFL_DATATAB_WA-MNTHI
            AND   CSTMZ NE  SPACE .
            VIT_WEEKSUM-TOMHRS =
                VIT_WEEKSUM-DVMHRS + VIT_WEEKSUM-CSMHRS  .
        ENDIF .
      IF LFL_DATATAB_WA-QRTRI <> L_PREV_QRTRI .
            L_PREV_QRTRI = LFL_DATATAB_WA-QRTRI .
            SELECT SUM( HRSBK )
            INTO VIT_WEEKSUM-DVQHRS
            from /GIL/ZZKWEKBK
            where QRTRI = LFL_DATATAB_WA-QRTRI
            AND   CSTMZ EQ SPACE .
            SELECT SUM( HRSBK )
            INTO VIT_WEEKSUM-CSQHRS
            from /GIL/ZZKWEKBK
            where QRTRI = LFL_DATATAB_WA-QRTRI
            AND   CSTMZ NE  SPACE .
            VIT_WEEKSUM-TOQHRS =
                VIT_WEEKSUM-DVQHRS + VIT_WEEKSUM-CSQHRS  .
      ENDIF .
      APPEND VIT_WEEKSUM .
      NEW-PAGE .
      PERFORM WRITE_WEEKLY_STATISTICS .
      PERFORM WRITE_DEVELOPER_STATISTICS .
      ENDAT .
   endloop .
ENDFORM.                    " WEEKLY_CUMULATION
*&      Form  WRITE_DEVELOPER_STATISTICS
      text
-->  p1        text
<--  p2        text
FORM WRITE_DEVELOPER_STATISTICS .
SKIP 2.
WRITE AT: /C_005 TEXT-014 .
  ULINE AT /C_005(C_125) .
  WRITE AT:/C_005 SY-VLINE ,
            C_006 TEXT-014 ,
            C_080 SY-VLINE ,
            C_081 TEXT-015 ,
            C_130 SY-VLINE .
   WRITE AT: C_005 SY-VLINE ,
            C_080 SY-VLINE ,
            C_130 SY-VLINE .
    ULINE AT /C_005(C_125) .
    loop at VIT_DEVSUM .
          CASE VIT_DEVSUM-NAME_TEXT .
          WHEN TEXT-011 .
              WRITE AT:/C_005 SY-VLINE ,
                        C_006 VIT_DEVSUM-NAME_TEXT COLOR COL_NEGATIVE  ,
                        C_080 SY-VLINE ,
                        C_081 VIT_DEVSUM-HRSBK COLOR COL_NEGATIVE   ,
                        C_130 SY-VLINE .
           WHEN TEXT-012 .
              WRITE AT:/C_005 SY-VLINE ,
                        C_006 VIT_DEVSUM-NAME_TEXT COLOR COL_NEGATIVE  ,
                        C_080 SY-VLINE ,
                        C_081 VIT_DEVSUM-HRSBK COLOR COL_NEGATIVE   ,
                        C_130 SY-VLINE .
           WHEN TEXT-013 .
                WRITE AT:/C_005 SY-VLINE ,
                        C_006 VIT_DEVSUM-NAME_TEXT COLOR COL_TOTAL  ,
                        C_080 SY-VLINE ,
                        C_081 VIT_DEVSUM-HRSBK COLOR COL_TOTAL    ,
                        C_130 SY-VLINE .
            WHEN OTHERS .
                WRITE AT:/C_005 SY-VLINE ,
                        C_006 VIT_DEVSUM-NAME_TEXT   ,
                        C_080 SY-VLINE ,
                        C_081 VIT_DEVSUM-HRSBK     ,
                        C_130 SY-VLINE .
           ENDCASE .
           WRITE AT: C_005 SY-VLINE ,
            C_080 SY-VLINE ,
            C_130 SY-VLINE .
           ULINE AT /C_005(C_125) .
    endloop .
    REFRESH VIT_DEVSUM .
    CLEAR VIT_DEVSUM .
ENDFORM.                    " WRITE_DEVELOPER_STATISTICS
*&      Form  WRITE_WEEKLY_STATISTICS
      text
-->  p1        text
<--  p2        text
FORM WRITE_WEEKLY_STATISTICS .
   SKIP 2.
   ULINE AT C_005(C_125) .
   WRITE AT: /C_005 SY-VLINE ,
              C_006 TEXT-003 ,
              C_030 SY-VLINE ,
              C_031 TEXT-004 ,
              C_055 SY-VLINE ,
              C_056 TEXT-005 ,
              C_080 SY-VLINE ,
              C_081 TEXT-006 ,
              C_105 SY-VLINE ,
              C_106 TEXT-007 ,
              C_130 SY-VLINE .
   WRITE AT: /C_005 SY-VLINE ,
              C_030 SY-VLINE ,
              C_031 /GIL/ZZKWEEKID-STRWK ,
              41    C_DASH ,
              43    /GIL/ZZKWEEKID-ENDWK ,
              C_055 SY-VLINE ,
              C_056 VIT_WEEKSUM-MNTHI ,
              C_080 SY-VLINE ,
              C_081 VIT_WEEKSUM-QRTRI ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    WRITE AT: /C_005 SY-VLINE ,
              C_030 SY-VLINE ,
              C_055 SY-VLINE ,
              C_080 SY-VLINE ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
     ULINE AT C_005(C_125) .
    WRITE AT: /C_005 SY-VLINE ,
              C_006 TEXT-008 ,
              C_030 SY-VLINE ,
              C_031 VIT_WEEKSUM-DEVHRS ,
              C_055 SY-VLINE ,
              C_056 VIT_WEEKSUM-DVMHRS ,
              C_080 SY-VLINE ,
              C_081 VIT_WEEKSUM-DVQHRS ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    WRITE AT: /C_005 SY-VLINE ,
              C_030 SY-VLINE ,
              C_055 SY-VLINE ,
              C_080 SY-VLINE ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    ULINE AT C_005(C_125) .
    WRITE AT: /C_005 SY-VLINE ,
              C_006 TEXT-009 ,
              C_030 SY-VLINE ,
              C_031 VIT_WEEKSUM-CUSHRS ,
              C_055 SY-VLINE ,
              C_056 VIT_WEEKSUM-CSMHRS ,
              C_080 SY-VLINE ,
              C_081 VIT_WEEKSUM-CSQHRS ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    WRITE AT: /C_005 SY-VLINE ,
              C_030 SY-VLINE ,
              C_055 SY-VLINE ,
              C_080 SY-VLINE ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    ULINE AT C_005(C_125) .
    WRITE AT: /C_005 SY-VLINE COLOR COL_TOTAL,
              C_006 TEXT-010 COLOR COL_TOTAL,
              C_030 SY-VLINE COLOR COL_TOTAL ,
              C_031 VIT_WEEKSUM-TOTHRS COLOR COL_TOTAL,
              C_055 SY-VLINE COLOR COL_TOTAL,
              C_056 VIT_WEEKSUM-TOMHRS COLOR COL_TOTAL,
              C_080 SY-VLINE COLOR COL_TOTAL,
              C_081 VIT_WEEKSUM-TOQHRS COLOR COL_TOTAL,
              C_105 SY-VLINE COLOR COL_TOTAL,
              C_130 SY-VLINE COLOR COL_TOTAL.
    WRITE AT: /C_005 SY-VLINE ,
              C_030 SY-VLINE ,
              C_055 SY-VLINE ,
              C_080 SY-VLINE ,
              C_105 SY-VLINE ,
              C_130 SY-VLINE .
    ULINE AT C_005(C_125) .
ENDFORM.                    " WRITE_WEEKLY_STATISTICS
*&      Form  WRITE_HEADER
      text
-->  p1        text
<--  p2        text
FORM WRITE_HEADER .
SKiP 1 .
SELECT SINGLE *
FROM /GIL/ZZKWEEKID
WHERE STRWK = VIT_WEEKSUM-STRWK .
WRITE AT:  5 TEXT-002 INTENSIFIED ON .
WRITE AT:  47 /GIL/ZZKWEEKID-MNTHI ,
            55 /GIL/ZZKWEEKID-WEEKI ,
            65 C_BR1 ,
            67 /GIL/ZZKWEEKID-STRWK ,
            78 C_DASH ,
            80 /GIL/ZZKWEEKID-ENDWK ,
            91 C_BR2
            INTENSIFIED ON  .
ENDFORM.                    " WRITE_HEADER

Similar Messages

  • SQ02 InfoSet Get Count of Total Number of Records that will be processed

    I am developing a query (SQ01) and am currently working on building an InfoSet (SQ02). 
    The Infoset was set up using a 'Direct read of table'.  Next, I'm adding some various fields and then going to Extras and trying to define some code to get the total number of records that my query will be processing.  I'm not sure if SAP pulls a filtered result set into a temporary table (by default - if so how could I reference it?) that I can reference or is just pulling in a row at a time in the record processing code, but my question is in regards to getting a record count of how many records are returned in my result set PRIOR TO going through all of the records.
    Overall, I'd like to be able to have a field that says Record X of Y.  I can get the X part for each line, but cannot get 'Y' until the very end.  Any help or ideas would be much appreciated.  I've looked around a bunch, but haven't found anything like what I'm requesting.
    Query Output would look something like:
    Record X1 of Y | Title1 | Amount1
    Record X2 of Y | Title2 | Amount2

    Hi Subin,
         I have tossed around this idea in my head, but am trying to figure out how to get the values and selection options from the query screen to incorporate into my Select statement within my infoset.  The problem I'm running into is that my user enters a group of account numbers and an ending date that has to be pulled from the SQ01 query screen to the SQ02 infoset code.  I've looked around for examples on pulling the data from the query screen, but have been unsuccessful thus far.  Say for instance I have 15 specific accounts that the user is entering in and they want any records that have been submitted prior to the end of the current month and the start of the business year.
         On my query screen they would enter in something like
    Business Year:  2011
    Reporting End Date:  <= 31.03.2011 (Which equates to all records between 01.01.2011 AND 31.03.2011)
    Account #s:  0000, 0001, 0003, 0005, ..., 9999  (These are a variable amount of accounts entered and could include options such as not equal to or even between ranges etc)
    In my START-OF-SELECTION code I would need a select like:
    NOTE:  This is just a pseudo code format, not checked for syntax here
    SELECT count(*)
    FROM TABLE
    WHERE BusinessYear = '2011' AND
        RecordDate Between 01.01.2011 AND 31.03.2011 AND
        Accounts IN (0000, 0001, 0003, 0005, ..., 9999).
    So In this select I need to reference the values in the SQ01.  How would I reference the account #'s and whether or not the user has entered an account number and said Not Equal on it etc.  This select statement would have to be built on the fly, since it's not guaranteed to be the same for each run.
    Thanks,
    Mark

  • Total number of records loaded into ODS and in case of Infocube

    hai
    i loaded some datarecords from Oracle SS in ODS and Infocube.
    My SOurceSytem guy given some datarecords by his selection at Oracle source system side.
    how can i see that 'how many data records are loaded into ODS and Infocube'.
                     i can check in monitor , but that not correct(becz i loaded second , third time by giving the ignore duplicate records). So i think in monitor , i wont get the correct number of datarecords loaded in case of ODS and Infocube.
    So is there any transaction code or something to find number records loaded in case of ODS and Infocube .
    ps tell me
    i ll assing the points
    bye
    rizwan

    HAI
    I went into ODS manage and see the 'transferred' and 'added' data records .Both are same .
    But when i total the added data records then it comes 147737.
    But when i check in active table(BIC/A(odsname)00 then toal number of entries come 1,37,738
    why it is coming like that difference.......
    And in case of infocube , how can i find total number of records loaded into Infocube.(not in infocube).
               Like any table for fact table and dimension tables.
    pls tell me
    txs
    rizwan

  • How to count total number of records in mYSQL through JSP ??

    hi
    i want method to count total number of records in table.
    it was there rs.count() method in VB .
    But what about JSP , i used MYSQL database.
    tell me solution please...
    thanks...
    remember JSP - total record count for mySQL

    hello mr.
    i don't want ur suggestion ok
    i know that site.
    no need to give suggestion if u don't give code.
    its better to give proper reply instead of making a
    comment in forum.
    next time take care
    He was perfectly justified in that remark. I have given you the information you need, nicely, twice. But I, and noone else here is going to do your work for you. We will point you in the direction you need to be looking, but we are not going to give code. If you attempt to code something yourself, and it doesn't work, then post the code you tried, and we may make some corrections to it. Then again, with the attitude you've shown so far we probably will not. But one thing no one here will do, is do your work. Especially not for free.
    Now, if you are not willing to sit down, and look at the suggestion that has already been made, and attempt to use it. Then continue wasting your time, but go away and stop wasting our time.

  • Hw to find total number of records

    Hi All,
    Can anyone help from these
    1. how to find total number of reports for a particular cube/ods... need step - step solution
    2. how to find total number of records for a particular Cube and ODS and Aggr's to till date.
    3.what is sandbox,mirror sys,instance of a sys..?
    4.what r TWS(Tivoli Workload Scheduler) jobs? how these r different to standard schedulers?
    Thanks in ADv
    Linda

    Hello Linda,
    As you have lots of answers on first 2 so i'll start from 3rd onward.
    3. Sandbox is mostly practice system where you can do all kind of R&D, mirror sys can be mirror image of any system depends on the organization and instance of system is again mirror image of one system.
    4. TWS is third party tool for scheduling which doesn't come along with SAP like standard scheduler as TWS has been prepared specially for this purpose so it has some more features than standard.
    Hope it helps.
    San.

  • How to find total number of records in a BDoc?

    Dear all,
    I have replicated about BP 1088 records from ISU into CRM system with block size 100. Technically on SMW01, for each successfully processed BDoc, there will be 100 records (corresponds to 100 block size). But due to some failed BDocs, not all "successfully" BDocs will have 100 records each, some may have only 1 record inside...or 30...or 88 for example. So, may i know how to find or is there a report i can look into to find the total number of records clearly shown for each of the successfully processed green status BDocs???
    Please help and points will be rewards!!
    Thank You
    Best Regards,
    CK

    I am just showing this to show how to get the rowcount along with the cursor, if the program has so much gap of between verifying the count(*) and opening the cursor.
    Justin actually covered this, he said, oracle has to spend some resources to build this functionality. As it is not most often required, it does not makes much sence to see it as a built-in feature. However, if we must see the rowcount when we open the cursor, here is a way, but it is little bit expensive.
    SQL> create table emp_crap as select * from emp where 1 = 2;
    Table created.
    SQL> declare
      2   v_cnt     number := 0;
      3   zero_rows         exception;
      4  begin
      5    for rec in (select * from (select rownum rn, e.ename from emp_crap e) order by 1 desc)
      6     loop
      7        if v_cnt = 0 then
      8           v_cnt := rec.rn;
      9        end if;
    10     end loop;
    11     if v_cnt = 0 then
    12        raise zero_rows;
    13     end if;
    14   exception
    15    when zero_rows then
    16      dbms_output.put_line('No rows');
    17   end;
    18  /
    No rows
    PL/SQL procedure successfully completed.
    -- Now, let us use the table, which has the data
    SQL> declare
      2   v_cnt     number := 0;
      3   zero_rows         exception;
      4  begin
      5    for rec in (select * from
      6          (select rownum rn, e.ename from emp e)
      7          order by 1 desc)
      8     loop
      9        if v_cnt = 0 then
    10           v_cnt := rec.rn;
    11           dbms_output.put_line(v_cnt);
    12        end if;
    13     end loop;
    14     if v_cnt = 0 then
    15        raise zero_rows;
    16     end if;
    17   exception
    18    when zero_rows then
    19      dbms_output.put_line('No rows');
    20   end;
    21  /
    14
    PL/SQL procedure successfully completed.Thx,
    Sri

  • Number of records in given path of application server

    How
    to find number of records in given path of
    application server

    I think that this almost works.
    report zrich_0001.
    data: begin of itab occurs 0,
          rec(1000) type c,
          end of itab.
    data: wa(1000) type c.
    data: number_of_files type i.
    data: number_of_records type i.
    data: tot_size type i.
    data: tot_number_of_records  type i.
    data: p_file type localfile.
    data: ifiles type table of  salfldir with header line.
    data: file type string.
    parameters: p_path type salfile-longname
                        default '/usr/sap/TST/DVEBMGS01/data/'.
    call function 'RZL_READ_DIR_LOCAL'
         exporting
              name           = p_path
         tables
              file_tbl       = ifiles
         exceptions
              argument_error = 1
              not_found      = 2
              others         = 3.
    loop at ifiles.
      clear itab. refresh itab.
      concatenate p_path ifiles-name into file.
      catch system-exceptions dataset_read_error  = 1.
        open dataset file for input in text mode.
        if sy-subrc = 0.
          do.
            read dataset file into itab.
            if sy-subrc <> 0.
              exit.
            endif.
            append itab.
          enddo.
        endif.
        close dataset file.
      endcatch.
      if sy-subrc = 0.
        number_of_files = number_of_files + 1.
        describe table itab lines number_of_records .
        tot_number_of_records
            = tot_number_of_records  + number_of_records .
        tot_size = tot_size + ifiles-size.
        write:/ ifiles-name, ifiles-size,  number_of_records.
      endif.
    endloop.
    Regards,
    Rich Heilman

  • Total number of records in a file

    hello experts,
    I am getting a file to upload the data.... This file is containing one header record one trailor record and remaining data records...
    how to read all the data into one internal table along with header and tralor record.
    Because i have to control record validation. In the trailer record the amount what they were giving is the total number of records along with header and trailor
    can anyone guide me how to do that
    SRI

    If thats an excel file then you can use function module
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_fnam
          i_begin_col             = 1
          i_begin_row             = 1
          i_end_col               = 100
          i_end_row               = 30000
        TABLES
          intern                  = iexcel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
        WRITE: / 'EXCEL UPLOAD FAILED ', p_fnam, sy-subrc.
        STOP.
      ENDIF.
    Instead of passing 1 in i_begin_row you, if you know how many lines the header is going to be then you can ignore those lines and pass the number of the row which has the first data record. You can hard code the header because this is giong to constant.
    Just a suggestion. Hope this works for you.
    Thanks.
    Message was edited by:
            mg s

  • SQL Loader: Total number of record read

    Hello,
    When we use SQL loader to load a data file, the total number of records read is output to the SQL Loader log. Is there a way to output this number to an oracle table?
    Regards

    slsam01 wrote:
    Thank you Hans.
    Can you provide me more information about loading SQL loader log file (e.g., control file) and point me to an example of loading SQL loader log files to Oracle table?
    Regards,Oh joy, oh bliss. A documentation request.
    For Oracle 10g, http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/part_ldr.htm#i436326 provides a few pages (including examples called Case Studies)

  • Count total number of record of table with deletion from archiving object

    Does anyone know is there any SAP standard program to count the total number of record of the table with deletion from Archiving Object and display in repprt?

    Not sure of the question. Are you looking to get the sql "select count(*) from table" from using the TopLink expression framework or are you getting that SQL already and want something else?
    If you are looking just to get the count from a table/class, you can use a ReportQuery:
    ReportQuery rquery = new ReportQuery(ClassToQueryOn.class);
    rquery.addCount(); //equivalent to count(*);
    session.executeQuery(rquery);
    You can use a report query to return data instead of objects, and use selection criteria just like a normal read query.
    Best Regards,
    Chris

  • Total number of record in database??

    Hi,
    How to find total number of record in database using Single Query/Statement?
    Thanks

    Here we go, in a Single Statement Block
    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2    v_cnt NUMBER := 0;
      3    v_tot NUMBER := 0;
      4    CURSOR cur_tables IS
      5      SELECT table_name FROM user_tables;
      6  BEGIN
      7    DBMS_OUTPUT.ENABLE(1000000);
      8    FOR t IN cur_tables
      9    LOOP
    10      EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM '||t.table_name INTO v_cnt;
    11      v_tot := v_tot + v_cnt;
    12    END LOOP;
    13    DBMS_OUTPUT.PUT_LINE('Total Table Rows: '||v_tot);
    14* END;
    SQL> /
    Total Table Rows: 5850553
    PL/SQL procedure successfully completed.
    SQL>What use it is is anybody's guess.
    Note: This only works on the users own tables, not all the system tables or tables from other schemas in the database.

  • Total number of records of partition tables exported using datapump

    Hi All,
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    OS: RHEL
    I exported a table with partitions using datapump and I would like to verify the total number of all the records exported of all these partition tables.The export has a query on it with WHERE ITEMDATE< TO_DATE (1-JAN-2010). I need it to compare with the exact amount of records in the actual table if it's the same.
    Below is the log file of the exported table. It does not show the total number of rows exported but only individually via partition.
    Starting "SYS"."SYS_EXPORT_TABLE_05": '/******** AS SYSDBA' dumpfile=data_pump_dir:GSDBA_APPROVED_TL.dmp nologfile=y tables=GSDBA.APPROVED_TL query=GSDBA.APPROVED_TL:"
    WHERE ITEMDATE< TO_DATE(\'1-JAN-2010\'\)"
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 517.6 MB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2008_Q3" 35.02 MB 1361311 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2008_Q4" 33.23 MB 1292051 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2010_Q4" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2011_Q1" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2009_Q3" 30.53 MB 1186974 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2010_Q3" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2009_Q1" 30.44 MB 1183811 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2009_Q2" 30.29 MB 1177468 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2009_Q4" 30.09 MB 1170470 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2010_Q2" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2011_Q2" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2010_Q1" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2011_Q3" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2011_Q4" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2012_Q1" 5.875 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2006_Q3" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2006_Q4" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2007_Q1" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2007_Q2" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2007_Q3" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2007_Q4" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2008_Q1" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2008_Q2" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2012_Q2" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2012_Q3" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_2012_Q4" 0 KB 0 rows
    . . exported "GSDBA"."APPROVED_TL":"APPROVED_TL_MAXVALUE" 0 KB 0 rows
    Master table "SYS"."SYS_EXPORT_TABLE_05" successfully loaded/unloaded
    Dump file set for SYS.SYS_EXPORT_TABLE_05 is:
    /u01/export/GSDBA_APPROVED_TL.dmp
    Job "SYS"."SYS_EXPORT_TABLE_05" successfully completed at 12:00:36
    Edited by: 831134 on Jan 25, 2012 6:42 AM
    Edited by: 831134 on Jan 25, 2012 6:43 AM
    Edited by: 831134 on Jan 25, 2012 6:43 AM

    I assume you want this so you can run a script to check the count? If not and this is being done manually, then just add up the individual rows. I'm not very good at writing scripts, but I would think that someone here could come up with a script that would sum up the row count for the partitions of the tables from your log file. This is not something that Data Pump writes to the log file.
    Dean

  • Calculated Field to get Total Number of Records does not work

    Hi,
    For some reason, calculated fields aren't working in my business rule.
    What I did:
    In deficiency criteria, I added the calculated field "Total Val".
    In conditions and calculations I chose "Grouping/Aggregation".
    For Select Group Fields, I chose "Plant and Material Number".
    For Aggregation Method, I chose "Count".
    Result when "Apply Rule" is used:
    The filtered records are still shown. The "Field Names" (names within the table such as MATNR instead of material number) are shown instead of the field labels.
    I'm trying to determine the cause of this issue and how to resolve it. Does anyone have a suggestion of what it is and what can be done?

    Hi Arif,
    Thank you for the response.
    Is there a way we can further pin down the ABAP problem that is being experienced?
    Best Regards, 
    Raphael

  • Total number of records when we do search for a particular item in Istore.

    Hi
    I need the total count of the records when we search for a particular item.
    I wrote a sql query using like condition which is match short and long description but in some cases it is failing.
    Can you guide,how to solve this issue.
    Thanks,
    Sabitha

    Sabitha,
    the mismatch could be due to the Fuzzy search profile option.
    Please check if fuzzy search has been enabled.
    Thanks
    Pradeep
    www.oracleappstips.com

  • How to find total no of record in cube

    Hi Experts,
    How to find total no of records in a cube.
    Thanks in Advance.

    Hi
    If you want total number of records in a CUBE then you have to check in both F Table and E table.
    Go to LISTSCHEMA tcode in your system, give your CUBE name and execute.
    You will fine two table E and F table
    goto SE16 -->give the table name and click on number of entries.You will get number of records.
    Check the below thread
    No of records in /size of Info cube
    Regards,
    Venkatesh

Maybe you are looking for

  • 1st Generation iPod Touch No Longer Recognized by Windows 7 PC

    I have a 1st generation iPod Touch (no camera) that can no longer connect to my Windows 7 pc. Plugging in the iPod via USB does not trigger any sort of dialog box in Windows and it doesn't trigger a message saying a device has been connected; the iPo

  • After system restore CS3 stopped working and can not be uninstalled

    I did a system restore (W7) and my CS3 apps stopped working with the message "Licensing for this product stopped functioning. Currently you cannot use this product. Solve this problem by uninstalling and reinstalling or contact support." I tried to u

  • A little problem in.. sorting Iterator?

    Friends, I was using before List for storing some objects.. and then used selection sort.. for sorting them according to population of filedata.. which runs perfect.. List.add(new FileData("Africa", 5000000)); List.add(new FileData("Calcutta", 100000

  • Deleting Organiztational unit,Position & Job in prdn server

    Dear Friends After client copy ,things in Organizational Management transferred from Development to Prdn (OSC) In prdn server all the created posion,org unit and job are copied,when i am trying to delete its not happeneing Holder remains blank and it

  • EXS 24 instrument organisation

    I've just started working with samples using the EXS 24 and have created a couple of instruments. I'm wondering where the best place to store my samples. Logic creates the instrument in its own folder but doesn't copy the samples. I experienced a pro