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

Similar Messages

  • Accounts Receivable - Report which includes Volumetrics i.e. Material/Volume/Price

    Hello,
    What report can be used to obtain the following for Accounts Receivable (all in one report would be preferred):
         AR Aging
         Material Code
         Volume
         Price of material
    For example, AR has $1M due from a customer (its current/within 30 days)
         What material(s) does that cover? It covers x,y,z materials
         At what price per material? x price is $90.81 per bbl, y price is $100.79 per bbl and z price is $65.84 per bbl
         What is the volume of each? x volume is 5,000 bbls, y volume is 3,000 bbls and z volume is 3,700
    We need to be able to run a report that includes all the above data.
    Any help is greatly appreciated.
    Thanks!

    Please check report under Financial-> Financial report->Accounting->Aging- > Choose customer aging receivables.
    Also here is a list of other usual reports available:
    Accounting - Financial Accounting - Customers - Information System - Reports for Accounts Receivable Accounting
    Customer Balances
    S_ALR_87012167 - Accounts Receivable Information System
    S_ALR_87012172 - Customer Balances in Local Currency
    S_ALR_87012186 - Customer Sales
    S_ALR_87012169 - Transaction Figures: Account Balance
    S_ALR_87012170 - Transaction Figures: Special Sales
    S_ALR_87012171 - Transaction Figures: Sales
    Customers: Items
    S_ALR_87012168 - Due Date Analysis for Open Items
    S_ALR_87012197 - List of Customer Line Items
    S_ALR_87012173 - List of Customer Open Items for Printing
    S_ALR_87012174 - List of Customer Open Items
    S_ALR_87012175 - Open Items - Customer Due Date Forecast
    S_ALR_87012176 - Customer Evaluation with OI Sorted List
    S_ALR_87012177 - Customer Payment History
    S_ALR_87012178 - Customer Open Item Analysis by Balance of Overdue Items
    S_ALR_87012198 - List of Cleared Customer Items for Printing
    S_ALR_87012199 - List Of Down Payments Open On Key Date - Customers
    Master Data
    S_ALR_87012179 - Customer List
    S_ALR_87012180 - Address List
    S_ALR_87012182 - Display Changes to Customers
    S_ALR_87012183 - Display/Confirm Critical Customer Changes
    S_ALR_87012195 - Customer Master Data Comparison

  • Account receivable  reports

    what are the  Accounts Receivable Invoices
    thanks
    mvnr

    Hi,
    Your query is not so clear. However, I understand, you require reports for Accounts Receivables in SAP. Please go through following path for finding different reports :
    SAP Easy Access Menu -> Accounting -> Financial Accounting -> Accounts Receivable -> Information System -> Reports for Accounts Receivable Accounting
    There are reports available for :
    1) Customer Balances such as S_ALR_87012167 - Accounts Receivable Information System
    2) Customers: Items  such as S_ALR_87012168 - Due Date Analysis for Open Items
    3) Master Data such as S_ALR_87012179 - Customer List
    Hope this information is useful for you. Kindly come back, if I am mistaken.
    Thank you.
    Suresh Jayanthi.

  • Accounts Receivable Reports:Table and field required

    Hi experts,
    My user requires said reports in the following formats:
    Posting date Invoice no. Customer  code  Invoice amount  Payment received outstandig amount
    Now i want to customized this reports.I have got table and fields for "posting date,invoice no,customer code ,invoice amount".
    But i am unable to get table and field for "payment received and outstanding amount".
    Please advise.
    Regards,
    Samaar

    Hi,
    You can get the values in the below fields of BSEG / BSID / BSAD tables.
    REBZG,  REBZJ,  REBZZ, DMBTR.
    But prerequisite for this is that, your incoming payment document must have been posted with reference to an existing outgoing invoice. Means posting made without any reference (on account payments) cannot be identified as a payment for a particular invoice item.
    The balance amount will be a derived value field. ( inv amount - payment amount = Balance receivable)
    Please co ordinate with yout ABAPer in order to fullfil your requirement.
    Regards,
    Srinu

  • Accounts receivable Report

    Dear all
    Ours is an Export oriented company. Is there any report available for the details of the Customer & its realization vessel wise with Quantity & value
    Pls guide
    Thanks & Regards
    Veena

    Dear Veena
    It is a general practice that shipment details will be tracked based on Bills of Lading or Shipping Bill by exporters. 
    Nevertheless, there is no facility to track such a requirement.  Moreover, I feel it is highly difficult to develop a report due to the fact that as you may be aware, in exports,  Feeder Vessel and Mother Vessels are the main functions as for as transportation is concerned, and how are you going to correlate / capture this in SAP.
    Also you have to arrive at a conclusion for the following:-
    - at which point of time, the vessel details will be updated
    - you want to track Feeder vessel wise or Mother Vessel wise
    - if there is going to be any change in Mother Vessel, what control you have to ensure that in system, only the updated datas are flowing
    Once you come to a conclusion to these questions, you have to develop a zee transaction  giving provision to all post shipment details from VBRK / VBRP which should be linked to BSEG. 
    Last but not least, if the requirement is only to track payment details vessel wise, it is better to take details from FBL5N.
    thanks
    G. Lakshmipathi

  • Customer Ageing analysis-Region wise

    Hi,
    There is a requirement to see Customer ageing analysis region wise. Regions in SD are defined as Sales Offices. Sales offices are at the header level in Sales Order.
    If we can bring Sales office in Accounting document in some field, is there any way to see region wise ageing analysis in standard report.
    They also want to see Sales employee wise ageing analysis.Please let me know If there is any way out for this in standard.
    Regards,

    Hi,
    In the Standard Report Itself, if you select dynamic selection, you get the option of selecting the region from the Customer Master.  TCode (S_ALR_87012178)
    With this, you can achieve the result of getting the ageing report region wise.
    Hope this information is of some help to you.
    Appreciate any points awarded if found useful.
    Regards,
    Venkat

  • Aging Analysis

    Hi,
    I want to do Aging Analysis in Payables by currency after revaluation. The report available after revaluation gives invoice details etc but in functional currency.
    I want by Currency and With Aging
    Is any report available in 11 or 11i.
    Thanks & Regards
    Sri

    Dear Ramesh,
    An Ageing Analysis is the process of categorizing our accounts receivables based on their “age” or the number of days they have been outstanding.
    This time-based categorization helps us to get a better fix on the number of clients that owe us and the number of days that they have been overdue.
    This is configured mainly from FICO end. SD only needs to configure the payment terms with the customer.
    The analysis helps us take a softer recovery approach with a client who has a payment that is 30 days overdue as opposed to a client whose payments are overdue for more than 90 days. (This can be done by defining payment terms in SD).
    The ageing schedule also helps you identify customers’ difficulties in meeting payment obligations, ensuring better customer relationship management.
    Hope I was able to throw some light on the topic.
    Regards,
    Anirban

  • Accounts Receivable Info

    Hi Guys,
    1. I am looking for R/3 t-codes for executing SAP defined Accounts Receivable reports.
    2. I want to know if the following fields are available in the standard Accounts Receivable extractor (0FI_AR_4). If so, what are the field names for these?
    'Date the customer made a payment' and 'A flag that indicates a short pay'.
    Any help will be greatly appreciated.
    Message was edited by: Govind Sehgal
    Message was edited by: Govind Sehgal

    Hi
    you can use these T-Code and will be more than enough for doing reconsilation
    for you FIAR
    FB03-Display Document
    FBL5N--Customer Line Item
    FD11-Customeer :Initial Screen A/C analysis
    F<b>.</b>31 - Credit Overview
    FD10N  - Customer Balance Display.
    FD33 Customer Credit managment
    Think will solve the prolem.
    SAM

  • Currency problem in accounts receivables ageing report

    when i generated accounts receivables ageing report i got ageing in UAE DIRHAMS only and  i have receivables in two different currencies in UAE DIRHAMS AND IN EURO , i want to get all receivables in the ageing report in euro only but i couldn't please how to solve this currency problem
    thanks in advance

    Hi
    Please refer this transaction code for account receivable ageing report
    S_ALR_87012168 - Due Date Analysis for Open Items
    Regards
    Praveen

  • Customer wise TDS Receivable Report

    hi,
    Our Client requirement is to get customer wise TDS Receivable Report. As of now they are passing manual entry whenever they get the TDS certificate from the customer.
    Is it possible to configure in SAP to pass automatic entry for TDS receivable report.

    Dear Vijay
    I think there is no configuration for TDS receivable, but we can capture the tax amount in expenses account while sales invoice posting (same as cash discount procedure) and see the report in Tax expenses account.
    Regards
    Sridhara Rao D
    Edited by: Sridhara Rao.D on Oct 1, 2011 3:49 PM

  • Accounts receivables ageing report

    i want to know how to generate accounts receivables ageing report,which T-codes to use

    Hi
    Please refer this transaction code for account receivable ageing report
    S_ALR_87012168 - Due Date Analysis for Open Items
    Regards
    Praveen

  • Customer aging analysis report layout

    hi experts,
    i have a client that needs the aging report to display in the following way. when doing an aging analysis for one month, all previous months invoices should be aggregated in one line as an opening balance. Then the invoices for the aging month should be listed under that opening balance and the aging schedule below should age the total of opening balance and the month's invoice. The way SAP Business One does the aging is such that EITHER the opening balance is displayed + the month's invoices but the aging schedule below is for that month's invoices only OR it lists all the invoices relating to that customer existing in the system and does the aging of the total invoices.
    is there a way to generate the aging report as required above?
    Regards,
    David

    Hi David,
    I am afraid you have to create your own version of the report for this specif requirement.  To match the system report values exactly would be a great challenge if you haven't create hundreds of query reports already.
    Thanks,
    Gordon

  • Accounts Receivable and collections report project-wise

    Dear all,
    My client wants accounts receivable and collections reports project wise. are there any reports in PS which satify this requirements. If no, pls suggest me how to cater to this requirement.
    Pls help me on this issue.
    Thank you very much in advance.
    Regards,
    Vishnu.

    Hi,
    If your cash flow scenario is very complex with partial payments, deferred debt, down payments etc., none of the standard reports including FBL5N / FBL1N will be helpful. If the scenario is fairly simple , FBL5N / FBL1N  should work for you.
    In a complex scenario, you may have develop your own reports based on the basic logic of FBL5N.
    Regards
    Murali

  • Aging Analysis Reports for Inventories & Receivables

    Hello,
    Can any one answer me how to get aging analysis reports for inventories & receivables in SAp R3 system?
    Thanking You,
    Regards
    Santosh Rothe

    hi
    the age analysis report format should be like
    Material list   | 0 - 3 months | 3 - 6 Months  | 6 - 12 months | above 1 year|
    M1                10                  50                    0                       0               pc
    M2                0                   0                      12                    10               Kg
    etc  .
    Pls suggest the suitable T.code or step for configuring to get in the above report format
    Regards
    Santosh Rothe

  • Ageing analysis for advances received from customer

    Hello All,
    Please can anyone provide inputs on whether there are any standard reports in SAP that can provide ageing analysis of advances received from customer (posted using special GL indicators).
    Thnx in advance.
    Regards,
    Sudeep

    Hi,
    In Report S_ALR_87012168 you get which are due and which are not due (you can see per Special GL Indicator wise also)
    If you think this will not suffice your requirement (like you would like to see 1-30 days, 31-60 days and so on)
    I would suggest
    You create a form in FDI4 - refer FDI5 and FDI6 for standard forms (you can even write own formulas)
    Assign the form to report in FDI1 - refer FDI2 and FDI3 for standard reports.
    Hope this will help you.
    Regards,
    Ravi

Maybe you are looking for