AR Aging Problem (S_ALR_87012178)

Hello,
I need some help.  I've noticed that the aging buckets are changing over time when using t/code S_ALR_87012178.  We use that transactions to pull open items aged in certain buckets.  I've needed to go back and rerun several aging from months ago and noticed the buckets do not match what they were when they were ran at month end. 
For example, on 2/2/2011 I ran S_ALR_87012178 for our aging for open items on 1/31/2011and invoices in the 60 - 90 bucket totaled $1.2 million.  I reran the report on 3/14/2010 for open items on 1/31/2011 and the 60 - 90 bucket now totals $1.1 million though the total value of outstanding invoice is still the correct amount.  The aging is ran off of field arrears.  
How could this be?
Thanks,

Hi,
I under stood your problem like this.
Case-1
You have executed a query with
Period A1 to Period A2  then you got result Number1  (Your are happy with the numbers)
Case-2
You have executed a query with
Period A1 minus 1year to Period A2  then you got result Number1  (Your are not happy with the numbers).
My Observation.
Here the query is summirizing the Total Open Items from start date to till date. - I guess the system is correct.
If you want to see the Open item of history data. I prefer to got the transaction data the pick the data Say: From 1st Jan2010 till 31st Dec2010 .
Regards

Similar Messages

  • Customer Open Balance Aging Report S_ALR_87012178

    hello,
    we are using this report Customer Open Balance Aging Report S_ALR_87012178 but when run, it brings customers' names from VD03 search field, instead it would be handy to see full names from Name-field. I understand S_ALR_87012178 is a static report, but my question would be is there any other transaction/report which shows the same but with customers' full name?
    thanks in advance

    S_ALR_87012178 is the only standard customer aging report.
    Following two solutions I could think of to fit your requirements.
    Develop a custom report by copying standard customer reports that have full customer name and make changes according to your need.
    Or
    In report S_ALR_87012178 the customer name is populated in Address field. So you can use this field as your customer name and develop a custom report.
    Thanks

  • Customer Aging Report S_ALR_87012178

    FI Experts
    I am running for our auditors report above to give them a line item detail aging, I created my own variant where I entered 0 as the summarization level to get line items, and also I entered my own days past due 30,60,90,120+. My problem is that the total line items does not add up each of the buckets in the summary part. Auditors are asking for a detail line item that makes up each of the buckets for items over 30, 60, 90, and 120.
    Any suggestion will be greatly appreciated
    Edited by: Frank on Dec 9, 2009 12:45 AM
    Edited by: Frank on Dec 9, 2009 12:48 AM

    Ran same report change Summarization Level (0-6) to 0

  • Customer ageing report S_ALR_87012178

    Hi Experts,
    When i execute customer open item analysis report (S_ALR_87012178) for different company codes i am different layout.
    For some company codes all items coming under one head.
    But for some company codes i am getting items under different heads like clerk 1,clerk 2, clerk 3 and so on....
    Clerk 1
    Clerk 2
    Clerk 3
    May i know why the report is coming in different layout for company code to company code.
    What configuration causing this to come report like this?
    Thanks
    Rafi

    Hi Mohammed,
    There is an provision to maintained Accounting Clerk in Customer Master-Under Co Code Data Correspondence Tab- (KNB1-BUSAB) will hit.
    Due to that its appearing in the ageing
    The normal process is that customers are created in AR (XD01) and then the MDS will create them as a BP once you have set up the config.
    In most FSCM implementations I have seen and worked on the AC is the Specialist.
    You need to have a customer master so the standard AR process and billing can be performed.
    Some clients build logic so the Collections role is automatically created when the BP is created.
    To do this you need to have mappings for the profile, segment, group and specialist.
    The Company Code of the customer should be able  to determine the segment and profile, depending on the config.
    The Accounting clerk, can point to the Specialist - please note it is best to fill in the user id of the Accounting Clerk to support this.
    Regd,
    Khan.

  • Visual age problem - importing packages

    Hello,
    I have created a Java client NT application on Visual Age which interacts with Oracle database thru JDBC driver.
    when i give
    import oracle.jdbc.driver.*;
    the visual age editor is not able to find the above package, whereas when i export the same application and execute it on DOS environment there are no problems.
    I want to know the best way to import packages in Visual Age because when I added the required packages to my application, "no suitable driver" error occurred.
    Not as familiar with Visual Age. Any help would be appreciated. Thanks :-)
    Raj

    Thanks! Got it fixed.
    Giving the duke dollar to myself ;)
    raj

  • Stock quantity Aging problem

    I have the following query. Execution is taking almost 12-16 hours during month end. Please help me to fine-tune the query.
    We have stock table which get updated with latest balance quantity. The quantity should be arrived against stock aging. Receipt table (GRN_DTL) consists all the items receipt till date from 01-jan-2000
    Aging range is 0-30, 31-60, 61-90, 91-180 and > 180
    The query is :
    CREATE OR REPLACE procedure stock_value_aging is
    prd_cd varchar2(15);
    cl_bal number;
    phy_stk number;
    p_AGE          NUMBER(15);
    p_YEAR_MONTH      VARCHAR2(7);
    p_STOCK_QTY      NUMBER(15,2);
    p_UNIT_RATE      NUMBER;
    p_FINAL_RATE NUMBER(15,2);
    p_RANGE VARCHAR2(6);
    p_TOTAL_VALUE NUMBER(20,2);
    p_DOC_NO VARCHAR2(15);
    p_DOC_DATE DATE;
    p_DIVISION VARCHAR2(15);
    p_ITEM_NAME VARCHAR2(50);
    p_cum_accp     number(20,2);
    P_CAT_CODE VARCHAR2(5);
    P_CAT_NAME VARCHAR2(20);
    Cursor STK IS
    Select prod_code,phy_stk_qty, ITEM_NAME, DIV_NAME, UNIT_PRICE, CAT_CODE, CAT_NAME from STOCK_DIV_VALUE_VIEW;
    --where prod_code='S2402300';
    Cursor c1 IS
    SELECT A.GRd_NO,A.GRD_DATE, to_date(sysdate,'dd-mon-rr')-to_date(grd_date,'dd-mon-rr') days,
    A.ACCP_QTY, C.RANGE
    FROM GRN_DTL A,
    RANGE_MASTER C
    WHERE A.PROD_CODE=prd_cd
    AND (to_date(sysdate,'dd-mon-rr')-to_date(grd_date,'dd-mon-rr') BETWEEN AGE1 AND AGE2)
    AND GRD_DATE IS NOT NULL
    ORDER BY GRd_dATE DESc;
    Begin
         DELETE AGE_STOCK_ANALYSIS;
         COMMIT;
    Open stk;
    Loop
    Fetch STK into prd_cd,phy_stk,P_ITEM_NAME, P_DIVISION, P_UNIT_RATE,P_CAT_CODE,P_CAT_NAME;
    exit when stk%notfound;
    Begin
    Open C1;
              Loop
              FETCH C1 INTO P_DOC_NO, P_DOC_DATE, P_AGE, P_STOCK_QTY, P_RANGE;
              EXIT WHEN phy_stk <= 0;
              If phy_stk < p_stock_qty then
                   p_stock_qty := phy_stk;
              End if;
              Insert Into AGE_STOCK_ANALYSIS
              values (prd_cd, p_age, nvl(p_stock_qty,0), nvl(p_UNIT_RATE,0),
                   nvl(p_stock_qty,0)*nvl(p_unit_rate,0),P_RANGE, p_doc_no, p_doc_date,
                        p_division, p_item_name, P_CAT_CODE,P_CAT_NAME);
              phy_stk := phy_stk - p_stock_qty;
              END LOOP;     
    Close C1;
              Commit;
    End;
    end loop;
    Close stk;
    End;

    I do not see any relatio between the STK and C1 cursors. Are you running a cross product of the cursors?
    Shouldn't C1 be a parameterised cursor in this case or?

  • Customer Receivables Aging Problem

    Hi,
    We are using SBO2007A PL46.
    When we run the customer receivables aging report, there is a difference in the total balance due when running with 'Include zero balances' ticked compared to running it with that unticked.
    I have narrowed down the difference to one customer.
    They appear as an outstanding balance of $532.62 when include zero balances is ticked, but don't appear at all when it is unticked.  I am running as at 28/02/2010.
    The $532.62 was paid on 1/03/2010.  So currently the balance is zero, but at 28/02/2010 it was $532.62.  So this customer should be showing on the report whether the zero balances box is ticked or not, because at that date, the invoice was unpaid.
    Other customers behave normally, ie they appear on both if their invoices were paid the next month.
    Any ideas why this would be happening?
    Thanks,
    Michael

    Yes, that is right.  It is only correct when showing BP's with zero balance.
    But it should be correct either way, as the only difference should be that BP's with zero balance show or don't show.  BP's with balances shouldn't be affected, they should show in both reports.
    Is this just a bug?  Surely it can't be by design!

  • How to re-download Photoshop onto new laptop? [was: new age problems LOL]

    I need to download my already purchased photoshop onto my new lap top.  I cannot figure out how to re-download.  It has been a couple years since my purchase but I am not looking to buy the new version.  I am used to having a box with a CD in it...GRRR...any help much appreciated.

    I don't get any 404 when trying to download Photoshop CS3 from http://helpx.adobe.com/creative-suite/kb/cs3-product-downloads.html
    As the previous poster wrote, you need to be signed in to download.

  • Vendor ageing does not agree with General ledger balance

    Good day all
    I have the following problem: I am trying to get a detailed ageing breakdown for our vendor liabilties as on the 30.06.10. The ledger shows a balance of approximately 1.7m but the vendor ageing report shows a balance of apprx. 1.802m when I set the ageing date to 30.06.10. I tried all possible other settings to run the ageing report but always get the same result. Does anyone know what the problem might be? Thanks in advance
    Andreas

    Hi Andreas,
    Have you selected including zero balance ?
    Check these for more info:
    Re: Customer Receivables Aging Problem
    Accurate historical AP aging
    Thanks,
    Gordon

  • Enhancement to s_alr_87012178

    Dear Friends,
    Before post the thread i browse alot for the solution but i didn't
    get any relavant solution.
    I need to enhancce customer name in customer ageing report(s_alr_87012178).
    for this in the selection screen -> output contorl ->
              we need to give oi list 1, summ level 6, and oi list summ 1.
    I came to know that there is no user exist and badi's for this.
    i copied it into zprogram and doing the changes.
    but i am unable to change the output table length.
    it is classical output report using std methods.
    can anyone guide me please.
    Edited by: anurag.radha on Dec 15, 2011 5:47 AM

    Hi
    regarding report on trx S_ALR_87012178:
    when you choose the input parameter
    "Summarization level (0-6)"  : '6'
    program RFDOPR10 will automatically set the other parameters as follows:
    "OI sorted list sorting(1,2)": '1'
    "OI list summarization(0-2)" : '1'.
    Consequently it is not possible to only display foreign currency items when using summarization level 6.
    The reason why the program works as it does is the following:
    when you display foreign currency items it is always necessary to also display the currency.
    Without the currency information the OI total would just not make much sense. Summarization level 6, however,
    forces the output of the data in only one line.
    Since only 132 characters can be printed in one line there is not enough space for additional output of the currency.
    Thus it is technically just not possible to also display the currency.
    The combination of "summarization level" 6 and "OI sorted list sorting" 2 therefore is technically impossible.
    If you want to see the document currency please use summarization level 1.
    Please also take a look at note 769226 for more details on this issue.
    Kind Regards
    davide

  • Vendor & customer ageing analysis

    Dear all
    Which TCode can be used for getting Vendor & customer ageing analysis viz 0-30,30-90, 90-180, >180.?
    Pls guide
    Thanks & Regards
    Veena

    S_ALR_87012175 -- this is Customer Ageing Analysis
    S_ALR_87012178 -- This is also Customer Ageing Analysis
    S_ALR_87012084 -- this is for Vendor Ageing Analysis
    S_ALR_87012085 -- this is also Vendor Ageing analysis
    If valuable pls assign points

  • Ageing analysis in Accounts Payable

    I am doing AR ageing for open items for 30days, 60 days etc. based on document date in BEX. The value comes correct for the present date but if I want to take open item ageing say till November'05, no values are coming as some of the open items have been cleared off during subsequent periods. Please let me know is there anything I have to do so as to show all the open items as on some previous period in time.
    Thanks,

    hi,
      please check this link where I provided solution to a similar question. You can find the logic for aging report.
    Re: Aging Report
    <b>Below is the content of my previous reply to Ageing problem:</b>
    Checkout this scenario, it may help you!!!
    Columns:
    • Place the Amount at top level
    • Create New Selection for Not Due Bucket, Place the Amount and Key
    Date entered by the user in this Selection. Restrict Key Date to
    Greater than or equal to the User entered date.
    • Create New Selection for 1-30 aging Bucket, Place the Amount and
    Key Date entered by the user in this Selection. Restrict Key Date to
    value range -1 to -30, to achieve this set the variable offsets to the
    variable created for Key Date.
    • For 30-60, 60-90, 90-120 & >120 aging buckets do the same
    restrictions as above.

  • Customer ageing by Order

    Hello
    I am looking for a customer ageing report where in I can see the individual items by Order.  Anybody has come across such a standard report in SAP ?

    Hi,
    SAP Customer Open Balance Aging Report standard transaction S_ALR_87012178
    please find the these links for Customer aging report
    Customer Aging Report
    http://sap.ittoolbox.com/groups/technical-functional/sap-acct/customer-open-balance-aging-report-s_alr_87012178-315736
    hope this is helpful to you
    Regards,
    Sreehari

  • Please tell me the T.codes

    Hi
    please tell me the t.codes for the following.
    1)Creditors payable Reports
    2)Creditors Ageing Reports
    3)Debtors Ageing Reports
    4)TDS register
    5)Vat Register
    i will give full points

    Hi,
    FBL1    Display Vendor Line Items
    FBL1N   Vendor Line Items
    FBL2    Change Vendor Line Items
    FBL2N   Vendor Line Items
    FBL3    Display G/L Account Line Items
    FBL3N   G/L Account Line Items
    FBL4    Change G/L Account Line Items
    FBL4N   G/L Account Line Items
    FBL5    Display Customer Line Items
    FBL5N   Customer Line Items
    FBL6    Change Customer Line Items
    FBL6N   Customer Line Items
    Customer Aging Report - s_alr_87012178
    Vendor Aging Report : s_alr_87012084
    VAT details can be viewed from Table LFAS.
    Hope this will help.
    Regards,
    Naveen.

  • ITunes disables cd burner and player! Help!

    As part of my job, I create a lot of audio cds. All was going fine until the middle of last year when an iTunes update, I believe it was something in the 7's stopped my computer from recognizing the factory-installed cd burner. All subsequent updates including the current 8.1 cause the message "disk burner or software not found" each time I try to burn in iTunes (I can't burn from Finder either). Disc playing wasn't too much of a problem save for the occasional stuck cd which had to be force-ejected when the burner suddenly "disappeared". With this new update I can't read or write at all - I've tried all the gimmicks to make things work like zapping the p ram, holding down mouse during start to force eject, using disk utility to fix permissions, etc. We all KNOW this is an ITUNES SOFTWARE GLITCH. My computer was FINE until that first faulty iTunes update. Can somebody PLEASE help as my work depends on it and I can't afford a new computer? Thanks!

    look here,
    http://www.randomfix.com/2007/04/12/windows-vista-%E2%80%93-missing-cddvd-rom-dr ive/
    or here:
    http://www.gearsoftware.com/support/forum/search.php?search_author=Frans
    Good luck, it is one of the famous digital-stone-age problems of Microsoft

Maybe you are looking for

  • Assign a value from an wsdl:arrayType="xsd:string[]"

    Hi to everyone, I'm new at this issue of Bpel. I'm a developing a simple process and I need to communicate my process with a Web Services that returns a wsdl:arrayType="xsd:string[]", this is the type of the wdsl of the web service: <complexType name

  • Images not appearing in safari

    Am using Mac book pro, version 10.8.5, and a safari browser, but none of the images and icon are appearing on it, I cannot gauge whats is blockin it and is this a bug in the Mac OS or their is some problem. Even the Fonts are weired in some places la

  • Missing glossary files in RoboEngine V3

    Hey Guys, I get a stack of missing glossary files in the 'troubleshoot' error window. How can I get rid of these? Thanks, Cam.

  • Sort by Column in SM30

    Hi, I wanted to know if there is a way to sort data in SM30 column wise, like select a particular column and sort. Currently i have added custom buttons for sort by ascending and descending to the screen and sorting it by the key field of the table.

  • Best digital camera and camcorder...

    What are some good budget digital camcorders and a digital camera for the MacBook? My wife and I are expecting our first child in December and we're both in college (I have a degree in visual communications, and I'm going back for computer programmin