Accounts overdue report

Can you please help me, I’m trying to locate an accounts overdue report on for Accounts Receivable that lists Unpaid Cash accounts, and overdue 7 & 14 day accounts. For 30 day and longer term accounts we use the Age Analysis Report but this doesn’t help us for terms shorter than 30 days.
Hope you can help .
Regards
Pradeep

Hi.
One option for the AR dates is to change the interval of the reporting buckets on the selection screen of the AR aging report. Setting it down to a 7 day interval, rather than the 30 day default, creates a report that will break out the shorter dates. Perhaps you could create a customer property for the "under 30 day terms", and just run the AR aging report against that property.
I'm not sure what you mean by unpaid cash accounts, but we developed a query to report just unapplied customer cash. Using Query generator, it looks like:
SELECT T0.[DocNum], T0.[DocDate], T0.[DocDueDate],
T0.[NoDocSum] FROM ORCT T0
WHERE T0.[NoDocSum] >0 AND  T0.[DocType] = 'C' AND  T0.[Canceled] = 'N'
Catches overpayments, too. Hope this helps.

Similar Messages

  • Account Status Report

    I use the Account Status Report pretty frequently but I want to add criteria. I want to just have the customers with a balance due of less than $1.00.
    Is there any way of doing it within the application? If not where is the script that creates the report, I would like to tweak it.
    Rowlen

    1. one solution will be customize the report to add filter.
    2. If you have Discoverer, then you can create your own query using EUL and Business Areas.
    3. If you are on 11.10 version, another option is display account status report's output in new report using xml publisher and putting filter condition on that.
    For me, it seem it is very small changes in report, should not take 2-3 days by an IT resource, thanks
    Shiv

  • GL Accounts in Report painter reports

    Dear Experts,
    I have a requirement to find out the GL account in report painter reports.
    Client is having a number of reports and he wants to find out the GL acu2019s involved in that reports. Is there any way we can find out.

    Hello,
    Do you mean that this G/L is 'hardcoded' in the report? In this case, there is no standrad way to find it.
    Regards,
    Eli

  • Accounts payable REPORT

    What fields should be shown in an account payable report? Also mention the std report for this.
    Edited by: Mathew Parera on Jul 1, 2008 4:12 AM

    Hi Friend,
    Please go through the Following Reports
    FK10N - Vendor Balances in Local Currency
    S_ALR_87012079 - Transaction Figures: Account Balance
    F110 - Due Date Analysis for Open Items
    FBL1N - List of Vendor Line Items
    ZFIV - List of Vendor Open Items for Printing
    FBV3 - Vendor List
    This are the standard reports used for Vendor Information System
    I hope this found useful to you.
    rOHIT

  • *Accounts Payable Report (MM & FI)*

    Hi Experts,
    I have the requirement to develop a report for the Accounts payable report, for this we need to get the Data from EKBE, EKPO, BKPF & BSAS Tales.
    Kindly let me know is there any standard Extracters to acheive this requirement, if not Suggerstions Please.
    Thanks in Advance
    Regards
    Reddy

    Hi,
    Check the following SAP portal.
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/bc383fe58d5900e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/90/10e73a86e99c77e10000000a114084/frameset.htm
    Thanks
    Reddy

  • Urgent Clarification seeking on R12 Account Analysis Report

    Hi Guys
    I have an urgent requirement regarding R12 Account Analysis Report.
    As per Metalink Doc ID : R12 GL Standard Reports Do Not Display Source And Line Item Data [ID 836847.1] ..Account Analysis report in R12 application does not display any value for Source/Line item column as data in gl_je_lines reference columns are not available.
    Do we have any replacement report or any other way to get this info in R12 since it was available in 11i. It is creating lot of problem for reconciling the AP/GL
    It will be good if you can reply ASAP.
    Thanks
    Ajeesh

    Hi
    I believe you can modify the standard account analysis template (RTF using the responsibility "XML Publisher") and include the field for source. This field is available as a standard XML tag in the report. This is a very little effort and can be done quite easily.
    Hope this helps. Let me know if you need any clarity in this respect.
    Vinit

  • How to add two new paramater to the Account Analysis report

    Hi All,
    I was working in Oracle Apps R12.1.2.
    Now i need to customize Account analysis report.
    Now i need to add two new parameter namely Party_name and party_site_name. So now instead of creating new parameter i have used the P_Custom_parameters namely 1 & 2.
    I have searched and found that they have used in this party_name concept only in this part only
    p_party_columns :=
    ',CASE
    WHEN ael.party_type_code = ''S'' THEN
    (SELECT aps.segment1
    ||''|''||aps.vendor_name
    ||''|''||hzp.jgzz_fiscal_code
    ||''|''||hzp.tax_reference
    ||''|''||hps.party_site_number
    ||''|''||hps.party_site_name
    ||''|''||NULL
    FROM ap_suppliers aps
    ,ap_supplier_sites_all apss
    ,hz_parties hzp
    ,hz_party_sites hps
    ,xla_ae_lines ael2
    WHERE aps.vendor_id = ael2.party_id
    AND hzp.party_id = aps.party_id
    AND apss.vendor_site_id(+) = ael2.party_site_id
    AND hps.party_site_id(+) = apss.party_site_id
    AND ael2.application_id = ael.application_id
    AND ael2.ae_header_id = ael.ae_header_id
    AND ael2.ae_line_num = ael.ae_line_num
              AND aps.vendor_name = :P_CUSTOM_PARAMETER_1
              AND hps.party_site_name = :P_CUSTOM_PARAMETER_2)
    WHEN ( ael.party_type_code = ''C'' AND ael.party_id is not null ) THEN
    (SELECT hca.account_number
    ||''|''||hzp.party_name
    ||''|''||hzp.jgzz_fiscal_code
    ||''|''||hzp.tax_reference
    ||''|''||hps.party_site_number
    ||''|''||hps.party_site_name
    ||''|''||hzcu.tax_reference
    FROM hz_cust_accounts hca
    ,hz_cust_acct_sites_all hcas
    ,hz_cust_site_uses_all hzcu
    ,hz_parties hzp
    ,hz_party_sites hps
    ,xla_ae_lines ael2
    WHERE hca.cust_account_id = ael2.party_id
    AND hzp.party_id = hca.party_id
    AND hzcu.site_use_id(+) = ael2.party_site_id
    AND hcas.cust_acct_site_id(+) = hzcu.cust_acct_site_id
    AND hps.party_site_id(+) = hcas.party_site_id
    AND ael2.application_id = ael.application_id
    AND ael2.ae_header_id = ael.ae_header_id
    AND ael2.ae_line_num = ael.ae_line_num
              AND hzp.party_name = :P_CUSTOM_PARAMETER_1
              AND hps.party_site_name = :P_CUSTOM_PARAMETER_2)
    ELSE
    NULL
    END ';
    But now when i ran with a specific parameter its running for all party name.
    Can any one pls guide me how to achieve this
    Thanks & Regards
    Srikkanth
    Edited by: Srikkanth.M on Oct 20, 2011 5:23 PM

    solved

  • In the Account Analysis Report Payables, currency precissions are not refle

    Hi All,
    In the Account Analysis Report Payables, currency precissions are not reflected propely.
    The functional currency is KWD (Precission - 3). In the standard report (Account Analsyis Report) parables application, the output is shown in 2 decimals. The output should be shown in 3 precisions.
    Regards,
    Raju.

    Some how the rtf (XLAAAR01) is not looking at the currency precision.
    You may customize the rtf.
    By
    Vamsi

  • KE24 Report comparison with FI GL account balance report

    Hi Friends,
    I'm comparing KE24 transaction code COPA actual line item balance with FI GL account balance report, but I'm not able to match it/not sure how to match it.
    Could you please let me know how to compare these two reports mainly to know whether all the balances in FI are moving to COPA properly. Also please let me know how the values are being extracted for this KE24 transaction code.
    Thanks & Regards,
    Dwarak

    This comparison can only be done with a thorough knowledge of the config that was made to transfer information into the COPA system. It is COMPLETELY implementation specific. It generally is grouped into several areas - Revenue, Cost of goods sold @standard, cost of goods sold period based adjustments (E.g. variances) and overheads.
    Here is some VERY broad guidelines:
    Revenue method will depend on whether you are using "vanilla" sales of inventory from SD, or whether you use resource related billing in PS. Further you will need to know which condition types post to which GL Accounts, and to which value fields.
    Cogs method will depend on the sames differences, also whether you are using material master price (VPRS), or whether you are using standard cost estimate. If you are using standard cost estimate, you need to know the cost components used, and which value fields they post to.You also need to know which GL account(s) is posted to. This is based on the valuation class in table 30. Alternatively, for resource related billing you have to know how the DIP profile was set up.
    You need to know how your production variances are posted, your purchase price variances and your overhead variances on production cost centres.
    Overheads can be posted directly from FI, from MM, or settled from an internal order or project. Alternatively, they are assessed from cost centres, to PA using assessment rules.
    You also need to know whether there are any statistical value fields, which should be excluded from the reconciliation.

  • Not getting Line Description in Account Analysis Report

    Hi Friends,
    There is requirement to get line description for account analysis report...
    Source - Cost Management
    Category - Receiving
    Event Type - Receipt into Receiving
    I have done required setup(Application Accounting Definition) to get the line description .I am getting line description for Debit transaction but for the same source and event type i am not getting line description for credit transactions..
    Is there any way to get line description for Credit transaction.
    Please suggest...

    Please friend...share knowledge on this...

  • Accounts Receivable Report: Customer Wise Ageing Analysis report -FI module

    Hi Gurus,
                 Can anyone help me in providing standard report(source code) or already done sample report(source code) for Accounts Receivable Report: Customer Wise Ageing AnalysisThis is in FI Module. Though it is FI Module we need to fetch details related to Sales Module, and the days should be <0     30     60     90     120     180     365     >365     
    It is urgent I need to deliver this report by this week end.
    Please help me . Waiting for your reply.
    Points Rewarded for help rendered and I would personally send a good gift if you can help me
    Yours Truly,
    Rajiv Christopher.
    Edited by: Rajiv Christopher on Apr 2, 2008 11:33 AM

    Hi,
    i am attaching aging report.
    see if this is useful to you.
    REPORT ZFUS0102 MESSAGE-ID OA
                    LINE-SIZE 270.
    Title:      GR/IR AGING REPORT
    Date:       January 2001
    TABLES: DISVARIANT, EKPO.
    TYPE-POOLS: SLIS.
    Tables
    TABLES:
      BSIS,
      EKKO.
    working table
    DATA:  BEGIN OF RTAB OCCURS 0,
             HKONT   LIKE BSIS-HKONT,
             ZUONR   LIKE BSIS-ZUONR,
             BUDAT   LIKE BSIS-BUDAT,
             SHKZG   LIKE BSIS-SHKZG,
             DMBTR   LIKE BSIS-DMBTR,
             PRCTR   LIKE BSIS-PRCTR,
          END OF RTAB.
    DATA: BEGIN OF WTAB OCCURS 0,
             ZUONR(2) TYPE N,
             PRCTR   LIKE BSIS-PRCTR,
             DAYS(4)  TYPE P,
             DMBTR   LIKE BSIS-DMBTR,
          END OF WTAB.
    DATA: BEGIN OF PTAB OCCURS 0,
             ZUONR(2),
             PRCTR   LIKE BSIS-PRCTR,
             AMT30   LIKE BSIS-WRBTR,
             AMT60   LIKE BSIS-WRBTR,
             AMTPL   LIKE BSIS-WRBTR,
             TOTAL   LIKE BSIS-WRBTR,
          END OF PTAB.
    PARAMETERS:  COMPANY LIKE BSIS-BUKRS OBLIGATORY,
                 ACCT    LIKE BSIS-HKONT OBLIGATORY,
                 DATE    LIKE SY-DATUM OBLIGATORY.
    SELECT-OPTIONS: S_EKORG FOR EKKO-EKORG.
    PARAMETERS: P_VARI LIKE DISVARIANT-REPORT.
    DATA: WS-AMT30 LIKE BSIS-WRBTR.
    DATA: WS-AMT60 LIKE BSIS-WRBTR.
    DATA: WS-AMTPL LIKE BSIS-WRBTR.
    DATA: TITLE(21) VALUE 'GR/IR Aging Report'.
    DATA: LIN TYPE I.
    DATA: GX_VARIANT LIKE DISVARIANT,
          G_VARIANT LIKE DISVARIANT.
    DATA:  LAYOUT   TYPE SLIS_LAYOUT_ALV,
           L_F      TYPE SLIS_T_FIELDCAT_ALV   WITH HEADER LINE,
           GROUP    TYPE SLIS_T_SP_GROUP_ALV   WITH HEADER LINE,
           COLOR    TYPE SLIS_T_SPECIALCOL_ALV WITH HEADER LINE.
    DATA:  LT_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
           LS_LINE TYPE SLIS_LISTHEADER,
           T_EVENTS   TYPE SLIS_T_EVENT.
    CONSTANTS: FORMNAME_TOP_OF_PAGE TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE'.
    INITIALIZATION.
      PERFORM EVENTTAB_AUFBAUEN USING T_EVENTS[].
      PERFORM VARIANT_INIT.
    Get default variant
      GX_VARIANT = G_VARIANT.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING
                I_SAVE     = 'A'
           CHANGING
                CS_VARIANT = GX_VARIANT
           EXCEPTIONS
                NOT_FOUND  = 2.
      IF SY-SUBRC = 0.
        P_VARI = GX_VARIANT-VARIANT.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_VARI.
      PERFORM VARIANT_INPUTHELP_F14.
    START-OF-SELECTION.
      LS_LINE-TYP  = 'S'.
      WRITE SY-DATUM TO LS_LINE-INFO DD/MM/YY.
      WRITE SY-UZEIT TO LS_LINE-INFO+10.
      WRITE SY-UNAME TO LS_LINE-INFO+20.
      WRITE TITLE    TO LS_LINE-INFO+30.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      PERFORM FIELDS.
      IF NOT P_VARI IS INITIAL.
        PERFORM PAI_OF_SELECTION_SCREEN.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_VARIANT_SELECT'
             EXPORTING
                  I_DIALOG            = ' '
                  I_USER_SPECIFIC     = 'A'
                  I_DEFAULT           = ' '
            I_TABNAME_HEADER    =
            I_TABNAME_ITEM      =
                  IT_DEFAULT_FIELDCAT = L_F[]
                  I_LAYOUT            = LAYOUT
             IMPORTING
            E_EXIT              =
                  ET_FIELDCAT         = L_F[]
            ET_SORT             =
            ET_FILTER           =
             CHANGING
                  CS_VARIANT          = DISVARIANT
             EXCEPTIONS
                  WRONG_INPUT         = 1
                  FC_NOT_COMPLETE     = 2
                  NOT_FOUND           = 3
                  PROGRAM_ERROR       = 4
                  OTHERS              = 5.
      ENDIF.
    Decide which tables to access.
      PERFORM MAIN_SELECT.
      MOVE TITLE  TO LAYOUT-WINDOW_TITLEBAR.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM      = 'ZFUS0102'
                I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
                IS_LAYOUT               = LAYOUT
                IT_FIELDCAT             = L_F[]
                IT_SPECIAL_GROUPS       = GROUP[]
                I_SAVE                  = 'A'
                IS_VARIANT              = G_VARIANT
                IT_EVENTS               = T_EVENTS
           TABLES
                T_OUTTAB                = PTAB
           EXCEPTIONS
                PROGRAM_ERROR           = 1
                OTHERS                  = 2.
          FORM FIELDS                                                   *
    FORM FIELDS.
      L_F-FIELDNAME     = 'ZUONR'.
      L_F-OUTPUTLEN     = 6.
      L_F-SELTEXT_L     = 'SERIES'.
      L_F-REPTEXT_DDIC  = 'SERIES'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'PRCTR'.
      L_F-OUTPUTLEN     = 10.
      L_F-SELTEXT_L     = 'PROFIT CTR.'.
      L_F-REPTEXT_DDIC  = 'PROFIT CTR.'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMT30'.
      L_F-SELTEXT_L     = '30 DAYS'.
      L_F-REPTEXT_DDIC  = '30 DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMT60'.
      L_F-SELTEXT_L     = '60 DAYS'.
      L_F-REPTEXT_DDIC  = '60 DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMTPL'.
      L_F-SELTEXT_L     = '60+ DAYS'.
      L_F-REPTEXT_DDIC  = '60+ DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'TOTAL'.
      L_F-SELTEXT_L     = 'TOTAL'.
      L_F-REPTEXT_DDIC  = 'TOTAL'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
    ENDFORM.
          FORM MAIN_SELECT                                              *
    FORM MAIN_SELECT.
      SELECT HKONT ZUONR BUDAT SHKZG DMBTR PRCTR
           INTO TABLE RTAB
           FROM BSIS
           WHERE BUKRS = COMPANY
           AND   HKONT = ACCT.
      IF SY-SUBRC = 0.
        SORT RTAB.
        PERFORM PROCESS_RTAB.
        PERFORM PROCESS_WTAB.
      ENDIF.
    ENDFORM.                    " MAIN SELECT
          FORM VARIANT_INPUTHELP_F14                                    *
    FORM VARIANT_INPUTHELP_F14.
      DATA:  G_EXIT(1) TYPE C.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
           EXPORTING
                IS_VARIANT          = G_VARIANT
                I_SAVE              = 'A'  " g_save
              it_default_fieldcat =
           IMPORTING
                E_EXIT              = G_EXIT
                ES_VARIANT          = GX_VARIANT
           EXCEPTIONS
                NOT_FOUND = 2.
      IF SY-SUBRC = 2.
        MESSAGE ID SY-MSGID TYPE 'S'      NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        IF G_EXIT = SPACE.
          P_VARI = GX_VARIANT-VARIANT.
        ENDIF.
      ENDIF.
    ENDFORM.
          FORM USER_COMMAND                                             *
    -->  UCOMM                                                         *
    -->  SELFIELD                                                      *
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE
    SLIS_SELFIELD.
      IF UCOMM EQ '&IC1'.
        IF SELFIELD-TABINDEX <= 0.
          MESSAGE S108.
          EXIT.
        ENDIF.
      IF SELFIELD-SEL_TAB_FIELD CS 'LIFNR'.
        SET PARAMETER ID 'LIF' FIELD SELFIELD-VALUE.
        CALL TRANSACTION 'XK02'.
      ELSE.
        IF SELFIELD-SEL_TAB_FIELD CS 'VEND'.
          SET PARAMETER ID 'LIF' FIELD SELFIELD-VALUE.
          CALL TRANSACTION 'FBL1'.
        ENDIF.
      ENDIF.
        CLEAR SY-UCOMM. CLEAR UCOMM.
      ENDIF.
    ENDFORM.
          FORM TOP_OF_PAGE                                              *
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = LT_TOP_OF_PAGE.
    ENDFORM.
          FORM EVENTTAB_AUFBAUEN                                        *
    -->  P_T_EVENTS                                                    *
    FORM EVENTTAB_AUFBAUEN USING P_T_EVENTS TYPE SLIS_T_EVENT.
      DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           EXPORTING
                I_LIST_TYPE = 0
           IMPORTING
                ET_EVENTS   = P_T_EVENTS.
      READ TABLE P_T_EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                                                     INTO LS_EVENT.
      IF SY-SUBRC = 0.
        MOVE FORMNAME_TOP_OF_PAGE TO LS_EVENT-FORM.
        APPEND LS_EVENT TO P_T_EVENTS.
      ENDIF.
    ENDFORM.                               " EVENTTAB_AUFBAUEN
          FORM PAI_OF_SELECTION_SCREEN                                  *
    FORM PAI_OF_SELECTION_SCREEN.
      IF NOT P_VARI IS INITIAL.
        MOVE G_VARIANT TO GX_VARIANT.
        MOVE P_VARI TO GX_VARIANT-VARIANT.
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
             EXPORTING
                  I_SAVE     = 'A'  " g_save
             CHANGING
                  CS_VARIANT = GX_VARIANT.
        G_VARIANT = GX_VARIANT.
      ELSE.
        PERFORM VARIANT_INIT.
      ENDIF.
    ENDFORM.                               " PAI_OF_SELECTION_SCREEN
          FORM VARIANT_INIT                                             *
    FORM VARIANT_INIT.
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = 'ZFUS0102'.
    ENDFORM.                               " VARIANT_INIT
    *&      Form  PROCESS_RTAB
          text
    -->  p1        text
    <--  p2        text
    FORM PROCESS_RTAB.
      DATA TLNS TYPE I.
      DESCRIBE TABLE S_EKORG LINES TLNS.
      LOOP AT RTAB.
        IF TLNS GT 0.
          SELECT SINGLE EKORG FROM EKKO INTO EKKO-EKORG
            WHERE EBELN = RTAB-ZUONR(10).
          CHECK EKKO-EKORG IN S_EKORG.
        ENDIF.
        IF NOT RTAB-BUDAT > DATE.
          MOVE RTAB-ZUONR(2) TO WTAB-ZUONR.
          COMPUTE WTAB-DAYS = DATE - RTAB-BUDAT.
          IF RTAB-SHKZG = 'H'.
            WTAB-DMBTR = RTAB-DMBTR * -1.
          ELSE.
            WTAB-DMBTR = RTAB-DMBTR * 1.
          ENDIF.
          MOVE RTAB-PRCTR TO WTAB-PRCTR.
          APPEND WTAB.
        ENDIF.
      ENDLOOP.
      FREE RTAB.
    ENDFORM.                    " PROCESS_RTAB
    *&      Form  PROCESS_WTAB
          text
    -->  p1        text
    <--  p2        text
    FORM PROCESS_WTAB.
      SORT WTAB BY ZUONR PRCTR DAYS.
      LOOP AT WTAB.
        PTAB-ZUONR = WTAB-ZUONR.
        PTAB-PRCTR = WTAB-PRCTR.
        AT END OF DAYS.
          SUM.
          IF WTAB-DAYS > 60.
            WS-AMTPL = WS-AMTPL + WTAB-DMBTR.
          ELSE.
            IF WTAB-DAYS > 30.
              WS-AMT60 = WS-AMT60 + WTAB-DMBTR.
            ELSE.
              WS-AMT30 = WS-AMT30 + WTAB-DMBTR.
            ENDIF.
          ENDIF.
        ENDAT.
        AT END OF PRCTR.
          PTAB-AMTPL = WS-AMTPL.
          PTAB-AMT30 = WS-AMT30.
          PTAB-AMT60 = WS-AMT60.
          COMPUTE PTAB-TOTAL = PTAB-AMTPL + PTAB-AMT30 + PTAB-AMT60.
          APPEND PTAB.
          WS-AMTPL = 0.
          WS-AMT30 = 0.
          WS-AMT60 = 0.
        ENDAT.
      ENDLOOP.
      SORT PTAB BY ZUONR PRCTR.
    ENDFORM.                    " PROCESS_WTAB
    regards,
    Sindhu

  • Want to add and remove GL account in report through report painter

    Hi,
    Thanks in advance,
    1.I want to add new GL account in IS01 report i.e. Income Statement. I am trying to add through report painter but could not able to do it.
    2.Also i want to delete existing GL account from report through report painter.
    Any body pls suggest the steps to add and remove GL account through report painter because this report is under report painter.
    Thanks,
    KMR

    the account is probably in account group or set. Look for that one in report painter and then go to the set or account group and remove/add the account.

  • Customized Account Balance Report

    hi all,
           My Client needs customized Account Balance Report so we planned to do Crystal Report.
           1. How to bring the previous balance (ex: when i am choosing the date 05-02-2009 means  04-02-2009 balance should arrive as previous balance).
           2. In SAP Account Balance Report they bought the previous balance, when we go to PLD of Account Balance the system variable 77 is shown. Is it possible to find out the table in which the system variable 77 is stored.

    Hi Rajesweri,
    First , you can not use system vraibale they have run time value. For previus balance , you have to calculate the differce of debit and credit till the previuos year date and sum up that . for this suppose you give 02/01/2008 as a parameter on report , now u want the prev. balance which is closing balance of  02/01/2007. So use datediff function year(current parameterdate). which will give u previous year  and use this formula to find the balance and strore it in a variable .
    hope this will help you .
    Rgds,
    Premraj

  • How can i Add two parameters to Account Analysis Report  R12?

    Please i need to add two parameters Vendor Name & Currency to Account Analysis Report?

    Dear Helios
    1- I added the two parameters through navigating to concurrent ->Program - > Define
    2 - Modifiy XLAAARPT.xml (Adding paramters and modify the query)
    is this correct?
    Regards,
    Edited by: user565050 on Sep 6, 2012 1:17 AM

  • How to use the admin user account in reports and dashboards?

    Hi Everyone,
    I want to use the admin user account in report and dashboard connections. But the Hyperion is automatically using the current user's credentials to fetch data.
    Hyperion 11.1.1.1
    Thanks
    Syantan

    This has been posted in the essbase forum > How to use the admin user account in reports and dashboards?
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Problem in using objbase.h ,help!!!

    Hi I have some problems in using the header file <objbase.h> when I want to use the functions defined in objbase.h,such as " WINOLEAPI  CoInitialize(IN LPVOID pvReserved)", labwindows cvi will give error information:   Undefined symbol '_CoInitialize

  • Custom Parameter Provider in new WD template not working (NW04S SP11)

    Hi, We're attempting to use the Custom Parameter provider in our portal for many Web Dynpro iviews. In the end we will have from 100-300 SAP clients in the backendsystem and we need this functionality to dynamically route users to the correct backend

  • File extension default no longer enabled while saving

    Similar to Gregg Riley's StarOffice experience, I recently noticed that default saves for various (but not all) StarOffice "pulldown file type" selections no longer save with the correct-default extension. I now (sometimes) have to type in the correc

  • Invalid Xpath Expression

    Hi , I have an XML content as below and i am sending that as a string input to other interface . Here i have hard coded Teller ID and account ID , but i want to send the input from payload like this : ><Teller><ID>bpws:getVariableData('TellerId')</ID

  • Is there a way to revert back to the old 'New Tab' button?

    I would like to be able to place a 'New Tab' button right next to (or on) the current active tab like previous versions allowed. I believe even pre-RC versions of Firefox 4.0 did this, now I can't do this after updating to the latest version. (admitt