Customer balances - tables

hi guys
i have a requirement to make a report to age customer balances. i have noticed that there are a few tables that will contain these balances. will the line item be removed from BSID if the item is cleared? if anyone has a better understanding of the relationship of these tables please assisst. many thanks.

There are some standard reports and also some reports may be built in the Report Painter by and FI specialist. Customer account aging is a pretty standard FI task. You might want to check with your users and FI specialist(s) first - I'm sure there are many other options besides ABAP. There is also the whole book on FI/CO reporting by SAP Press.
Anyways, the tables are BSAD and BSID. BSAD has the cleared items and BSID - not cleared. When the items move from one table to another - that depends on your business process. Ask your FI/Accounting specialist for details or, better yet, have them create a few examples for you to play with.
You can see the tables here:
http://www.erpgenie.com/sap/abap/tables_fi.htm

Similar Messages

  • Problem in making logic for customer balance report

    Hi,
    I am working on a customer balance report in which i am picking the data from BSAD and BSID tables. I am facing a problem that i am able to calculate the opening balance in it but not able to calculate  closing balance. I am comparing the data with tcode FBL5N for opening and closing  balances for a given date range.  Kindly help me out where i am getting wrong:-
    Here the link to the code :-
    http://docs.google.com/View?id=dfxswwff_11fdktr7ct
    Edited by: nav009 on Feb 6, 2010 9:30 AM

    Hi Nikhil,
    Thanks for you response but i had developed the report and  i am able to pick the correct data but i am facing the problem in displaying the NETAMT which is displaying the data using this formula :-
    1.) NETAMT = NETAMT +  W_TAB1-DR + W_TAB1-CR.
    so that the last value matches with the closing balance.
    When i am using this formula i am not able to display the correct data of deducting or addition of the opening balance in it but the value matches with closing balance .
    2.) NETAMT = NETAMT + W_OPBAL-OPBAL +  W_TAB1-DR + W_TAB1-CR.
    When i am using this formula it is showing the first value correctly but not the last one which will be displayed in the closing balance.
    I want to have desired output to display the first value to be displayed as it is showing in the (2) and last value to be displayed as  it is showing in (1) last value.
    How can i achieve this  functionality? i really want to know...
    Edited by: nav009 on Feb 10, 2010 6:29 AM

  • How to get Daily Customer Balance Report?

    Hi
    I have received a requirement from the user where he has to send the Daily Customer balance report currently he is using the T.Code S_ALR_87012172 Customer Balances in Local Currency for fetching the monthly data.
    I want to know what are the ways to make the report and what is the best way out of them to do it. Can it be done through user Exit, BADI, query or we have to get the Z report made by the apaber.
    Also, if it is possible please tell me the way step by step for user exit, badi or query if that is to be used.
    Please help
    Thanks in advance
    Pankaj

    Thanks for your reply Aleksey...
    We are using the report S_ALR_87012172 - Customer Balances in Local Currency and user want the same report on daily basis like Total Debit/Credit, Balance carryforward and the Accumulated balance. I have checked but unable to find out any such output.
    Please suggest what to do whether to make chnges in report painter or have to write a query. If I write a query then plz suggest me the tables as I am trying to do that but unable to link the Balance carryforward and accumulated balance.
    Regards
    Pankaj

  • Vendor/Customer Balance Carry forward

    Hi
    is it require to forward the vendor/customer balance in the year end
    if no ,what is the reason?

    Hello,
    You don't need to post carryforward balance. But after year change you must run a report for balance carryforward. This report transaction is F.07 for customers and vendors. This report fills LFC1, LFC3, KNC1, KNC3 tables. If you don't run this report you can not get correct data from FK10N or FD10N transaction.
    I hope it helps to you.
    Regards,
    Burak

  • Customer Balance Report throught Abap

    Hi,
    I want to develop a report Customer Balance Report in which along with details i have to display the closing and opening balance of it. As per search through SDN i come to know that BSAD,BSID tables to be used so that data can reterived and for cross checking the out put Standard Report named S_ALR_87012172 and the Tcode FBL5N ..
    I want to know is this data is sufficient to start this report and the data for displaying the closing and the opening balance of the customer?

    Hi  ,
    To derive an opening balance, you need to decide on key date. The date one which you want to see an opening balance.
    Suppose that date is wf_keydt . Then your logic for calculating opening balance should be as folloes :
      SELECT kunnr bukrs belnr gjahr buzei blart shkzg dmbtr
               INTO TABLE it_data
      FROM bsid
      WHERE bukrs = p_bukrs
      AND   kunnr IN s_kunnr
      AND   budat <= wf_keydt
      AND   hkont = p_hkont
      AND   gsber = p_gsber
      AND   bstat = space
      AND   umskz = space.
      SELECT kunnr bukrs belnr gjahr buzei blart shkzg dmbtr
               APPENDING TABLE it_data
      FROM bsad
      WHERE bukrs = p_bukrs
      AND   kunnr IN s_kunnr
      AND   budat <= wf_keydt
      AND   augdt > wf_keydt
      AND   hkont = p_hkont
      AND   gsber = p_gsber
      AND   bstat = space
      AND   umskz = space.
      LOOP AT it_data INTO wa_data.
        CLEAR wa_tab.
        wa_tab-kunnr = wa_data-kunnr.
       wa_tab-dmbtr = wa_data-dmbtr. "+nvj15102007 security deposit added in output
        IF wa_data-shkzg = 'S'.
          wa_tab-opbal =  wa_data-dmbtr.
        ELSE.
          wa_tab-opbal =  wa_data-dmbtr * -1.
        ENDIF.
        COLLECT wa_tab INTO it_tab.
      ENDLOOP.
      REFRESH it_data.
    Hope this helps to you.
    Btw I am leaving for the day now. Any thing else do reply to me. I will revert to you tomorrow.
    Regards,
    Nikhil

  • Vendor/Customer balance confirmation lists print

    Hi,
    when we want to print vendor/customer balance confirmations, transactions f.18/f.17 always print:
    - form set
    - reconciliation list
    - results table
    - if there is some error - error list
    We want to restrict the printing only to FORM SET and we DO NOT want to print reconciliation list and results table.
    Is there some way to configure F.18/F.17 to print only FORM SET?
    Thank you.
    Ľubou0161

    Hi Lubos,
    I have the same problem...how did you solved this?
    Thanks and regards,
    Victor

  • Vendor/Customer balance confirmation prints

    Hi,
    when we want to print vendor/customer balance confirmations, transactions f.18/f.17 always print:
    - form set
    - reconciliation list
    - results table
    - if there is some error - error list
    We want to restrict the printing only to FORM SET and we DO NOT want to print reconciliation list and results table.
    Is there some way to configure F.18/F.17 to print only FORM SET?
    Thank you.
    Ľubou0161

    Hi Lubos,
    I have the same problem...how did you solved this?
    Thanks and regards,
    Victor

  • Daily Customer Balances in Local Currency problem?

    Hi,
    My user want S_ALR_87012172 - Customer Balances in Local Currency on daily basis but can you suggest me what shall I do?
    I have tried to write a query but I hope I am not getting all the tables can yiu suggest me tables where I can get the balance in local currency for customers and accumulated balance as well.
    Please suggest any way like report painter or query step by step?
    Regards
    Nitin

    Thanks alot Visawana S,
    I am sorry but are those tables enough to meet this requirement.
    I am making a query for Daily customer report in which my user want fields Total Debit posting, Total Credit Posting, Balance Carryforward and Accumulated balance based on the selection of Posting date. When I am trying to do that I am unable to find all the tables for this report as we have the field Balance carryforward in KNC1 or KNC3 but when we join the tables it doesn't show any link. Please help me on it. Also, I am unable to find out the Accumulated balance field in any table if we don;t have that field then how to get that field updated.
    Please write about the tables in detail.
    Thanks in advance
    Regards
    Nitin

  • Dynamic field in S_ALR_87012172 - Customer Balances in Local Currency?

    Hi,
    My problem is that we want to add the document Numnber field in the report S_ALR_87012172 - Customer Balances in Local Currency so that we can get the desired output. I have tried to add the Document number field under 'Documents' in the Dynamic Selection using table BSID. When we are adding it it is working fine for all other reports for customer balances but not showing anything here.
    Please tell me the reason why it is happening if possible and tell me how to get that field added.
    Please reply asap as it is quite urgent.
    Thanks in advance
    Regards
    Pankaj

    Thanks again Ravi,
    I have tried that option and made the Form and Report but when I am trying to Excute the report S_ALR_87012172 - Customer Balances in Local Currency it is not coming with the desired output. Is it the link problem. Can you plz tell me we have made a form and then a report with the desired parameters but how to link that report with the desired T. Code.
    Secondly, if I make the changes in the Standard reports which are mentioned below then system is taking the changes but when I am making the new form and report myself then system is giviing me the desired output. Can we make our own report and link it to the T. code we want or we only can make the changes in the standard reports .
    0SAPFD10-01     Transaction Figures: Account Balance
    0SAPFD10-02     Transaction Figures: Special Sales
    0SAPFD10-03     Transaction Figures: Sales
    Please help me as I don;t know much about the report painter.
    Thanks in advance..
    Regards
    Pankaj

  • Customer Balance Amount

    Hi ,
    How I will get the customer balance amount from EBS 11.9 application.
    Customer Balance means the total balance amount that the customer has pay against all his invoices.
    I need this value for a customized report. Is this value sum(debit)-sum(credit)? from which table that i could get this value?
    shall I get this amount from 'ra_cust_trx_line_gl_dist_all' table?
    Please help me to solve this?
    with regards
    Naseer

    Hi;
    It could be better to move your issue Forum Home » E-Business Suite » Financials
    Regard
    Helios

  • Logic to get customer balance confirmation at profit center level.

    Hi All
    Please help me understand the logic to get customer balance confirmation at profit center level.(not at company codewhichis available)
    On what basis developments can be done.
    Detailed and early Inputs will be appreciated
    Thanks in advance.
    vadapav

    Hi
    First of all, I liked your user name...
    I have a basic question with regards to your requirement... Customer is an external party... he has got nothing to do with your internal definition of profit centers..
    Hence, if Customer A is buying goods from you belonging to Pr Ctr B and C - He wlil expect you to send a balance conf letter which aggregates total balance... He will be, in no way, concerned with your internal division of profit center wise balance
    Still, if you would like to go ahead with your requirement ,  then identify the open line items from BSID or BSAD (I dont know which one of these stores open line items) , Take that document no to table FAGLFLEXA and identify your profit center... This is assuming you are on ECC 6.0 and use New GL
    If you are not on ECC 6.0, then identify the open line items from BSID or BSAD and Take that document no to table  BSEG and read the profit center from revenue line item.. These revenue accounts can be included in a SET created in GS01 rather than hard coding in the program
    Regards
    Ajay M

  • How to reconcile customer balances with control accounts

    Hi!
    Sanjay Here,
    1. how to reconcile the customer balances  pl. explain in details.
    2. how to reconcile the customer balance with control accounts
    3. how to do the automatic clearing through T code f.13. pl. give us the screen shots if available.
    4. how to reset the T-code f.32 clearing documents, if wrongly showing in customer balance.

    1. how to reconcile the customer balances pl. explain in details &
    2. how to reconcile the customer balance with control accounts
    Ans:- Thru report painter T-code FGI4 (Form) & Report FGI1 using cutomer summary table we can define report, which shall give the desired requirement. It give customer wise & controll account wise balances.
    3. how to do the automatic clearing through T code f.13. pl. give us the screen shots if available
    Ans. F.13 is used for GL automatic clearing basing on the required config for GL . Like GR/IR clearing is there in automatic posting we have to define COA, GL & creteria1, creteria2 ..... Incase of GR/IR field name can be VBUND (Purchase order). When configure this in F.13 when we check the check box GR/IR and GL system shall look for setting for automatic clearing based on creteria it shall automatically clear.
    4. how to reset the T-code f.32 clearing documents, if wrongly showing in customer balance
    Ans. To reset a claerinf document Tcode is FBRA. Reset the clearing doc first and reverse the doc Tcode FB08.
    Thanks
    Colin Thomas

  • F.23 customer balance display in local currency sameneeds in group curency

    Dear experts ,
    Please help on this ..
    When i run report in T code F.23 it shows customer balances in local curreny i need this in Group curreny to see the customer balances , plse tell T Code
    Thanks in advance
    B

    Dear,
    You have create a Z report for this requirement by taking BSEG table into consideration as this table will have the reconciliation account.
    In FS10, you give the reconciliation account and select all selections button right to variant button, here you give currency type 30 (Group currency) and run the report.

  • Customer balance upload (AR)

    I have uploaded the customer master into SAP.Now these customer owe us some money.So I have a file where three column is there. customer number ,  Balance due and due date.I want to know  (or which table ) load customer balance into SAP ?

    Hi Satya,
    I would suggest that you upload the balance for these customers as AR open items. You already have their amounts and the due dates. Just create an upload program, using BDC. You may record the BDC using transaction SHDB and in there you can create batch recording for transaction e.g. FB01. Just create a dummy AR open item with corresponding offsetting to a dummy GL account. Give this to an ABAP resource who will give you the excel file format for the upload. With this you can have the AR uploaded with the balances.
    Remember, that all the master data should be in place for customers and GL.
    Let me know if I can help you more.
    Vishal.

  • How to use customer extension table for schedule line for shopping cart ?

    Dear Experts,
    One of our client wants to have schedule lines in shopping cart item. I am thinking of using customer extension table at item level for shopping cart. Could you please help me on  how I should proceed with the appending the structures so that the end user can fill the shopping cart schedule line details?
    Which fields should I consider in such cases?
    Thanks and regards,
    Ranjan

    Hi.
    I guess you use SRM 7.0. Please go to IMG.
    SRM -> SRM Server -> Cross-Application Basic Settings -> Extensions and Field Control (Personalization) -> Create Table Extensions and Supply with Data
    Regards,
    Masa

Maybe you are looking for

  • Error while executing BEX query via FM

    Hi Friends, I am getting following error while executing a query via FM RRW3_GET_QUERY_VIEW_DATA. Please see the error screenshot as follows. the I_T_PARAMETERS entered are as follows. Please let me know what is missing. Thanks. Regards, Hrishikesh

  • Album artwork shows up in itunes but not on ipod?

          I downloaded the new software, and when it was complete none of my album artwork showed up. It shows up on itunes but not on the ipod.

  • Creating links to folder resources in XDB repository

    Hi, I have a problem with creating links to folder resources in Oracle XDB repository, especially when I delete child resources from the linked folder or the linked folder itself. For instance, if I have the following two resources: /public/folder1/m

  • JMS tutorial

    I was trying "Writing the PTP Client Programs " in the tutorial section, i compiled SimpleQueueSender.java,SimpleQueueReceiver.java in one window and started j2ee -verbose in another window.Then, "j2eeadmin -addJmsDestination MyQueue queue".after thi

  • Context Reset Problem

    Hi, I'm adding dynamic attributes to a context and have the need to clear them from time to time. But when I do the reset() my dynamically added node elements to a node created at design time are deleted too, but according to the javadoc this shouldn