Last Transaction Date Report

hi
I'm trying to run a report in order to audit our database of suppliers (over 1000) (supplier records managed in symmetry)
I need to see against every supplier the last date that we paid them so that I can identify the ones not used in the last 2yrs and disable them.
the closest report I'm getting is one that shows every payment date for every supplier and is so large that I'm running out of space in excel when exporting the report.
Any advice on what items to select and parameters to set in order to get this report would be much appreciated!!!!!

My suggestion is to use the vendors table (PO_VENDORS) and the checks table (AP_CHECKS_ALL). Bring in vendor id, vendor name, and check date. Use a Last_Value function on check date to return the last check date for the vendor. See if that might work out. Or if having trouble with that, define the join in the business area between the vendors table and the checks table to be an outer join on detail, that will return master rows with no detail and master rows with matching detail. Take out check date from the format and add sum of amount to the format. Then edit for a check date (say >= '01-Jan-2008') that if you don't have any activity for after that date, then you want to get rid of those vendors. Run the workbook and any vendor with no activity will show as a NULL value for sum of check amounts (so have to add Amount(SUM) from the checks table to the workbook item list). Vendors with activity after that check date will show a numeric amount (might be 0 if in and out). You can then add a condition to filter for amount IS NULL and get the list of vendors that you want to look at disabling. Worked like a charm when I tested that here.
John Dickey
Edited by: John Dickey, McCarthy on Nov 3, 2009 12:13 PM
Edited by: John Dickey, McCarthy on Nov 3, 2009 12:19 PM
Edited by: John Dickey, McCarthy on Nov 3, 2009 12:22 PM

Similar Messages

  • Vendor last transaction date

    Hi,
      I want to show vendor last transaction date. How we can get it.
      Thanks in advance.
      Regards,
    Moderator message : Requirements dumping not allowed, thread locked.
    Edited by: Vinod Kumar on Dec 9, 2011 5:42 PM

    Hi,
    You can take the report of the  FI accounting document for all vendors based on the company code and the posting date ( input the present date) in the T code- S_ALR_87012991.
    regards,
    Kannan B

  • Last transaction date

    hi experts,
    I want to write a daily report to show a item's history, not only last sales, purchase date, but also last transaction date(includes production, inventory transfer, issues and receipts).
    I know OITM and OITW can get Stock, unit price, last purchase date and last sales date, but where can I get the last transaction date and info such as item post list? Thanks...

    Try this one:
    SELECT   T0.ItemCode, T0.ItemName, T0.Onhand, Max(T1.DocDate) 'Last Trans Date'
    FROM        dbo.OITM T0
    INNER JOIN dbo.OINM T1 ON T1.ItemCode = T0.ItemCode
    WHERE T0.ItemCode Like '[%0\]%'
    GROUP BY T0.ItemCode, T0.ItemName, T0.Onhand
    Thanks,
    Gordon

  • Need a report_Batchwise Mvt type last transaction date qty

    Dear Gurus
    Please suggest me any standard report or Table for display below report.
    Batchwise>Mvt type>last transaction date>qty
    thanks in advance
    Mayur

    Hi,
    MB51 --- Material documents list.
    Regards,

  • Vendor with last transaction date

    Hi,
    Can I generate any report which contains all vendors with last transaction date? THis is for audit purpose.
    Thanks & Regards,
    Rajaneesh.C

    Hi,
    You can take the report of the  FI accounting document for all vendors based on the company code and the posting date ( input the present date) in the T code- S_ALR_87012991.
    regards,
    Kannan B

  • Storage Location last transaction date

    Hi All
    What particular transaction code or report will I can find storage location last transaction date?
    We'll be using this for our PID
    Thank you
    Jesielle

    Hi  Shiva Ram         
    Aside from tcodes MB51 and MB5B. Is there any other report wherein it only shows the storage location codes with last transaction date?
    Thanks
    Jesielle

  • Item details with Last Transaction Date ?

    Hi,
    Please help someone to fine tune this query :-
    Select ILLITM,ILDOC, ILDCT, ILTRDJ
    FROM CRPDTA.F4111
    where ILTRDJ in (Select max(ILTRDJ) FROM CRPDTA.F4111);
    The above query is returning the latest transaction date with Item details.
    But expected output is: Every Item with last transactional date.
    Hope I am clear on the above requirement please.
    Thanks in advance.
    RAM

    you can use table alias for this
    Select ILLITM,ILDOC, ILDCT, ILTRDJ
    FROM CRPDTA.F4111 tab1
    where tab1.ILTRDJ in (Select max(tab2.ILTRDJ) FROM CRPDTA.F4111 tab2);
    or if you are using this query inside any PL-SQL block , you can use a variable to hold max(ILTRDJ) and then use this variable in query.

  • Need to create a report of Items sold= last sale date report

    Hi Guys,
    There is an column of last sale date in OITM but that doesnt gives any data when you run a query. Basicaly client need to generate a report of Items with last sale date, is this possible SAP Business One?
    Regards

    Hi Joe,
    you could use the stock posting list report with a suitable date range & select only AR invoices in the 'Expanded' options, then sort by posting date in descending order
    This report can then be exported to Excel & all irrelevant transactions can be deleted, keeping only the first & second row for each item (Row 1 = Itemcode, Row 2 = last stock posting from AR invoice showing in the 'Price after discount' column).
    Alternatively, you might explore whether an SDK solution  may be created that runs the last prices report for all items.
    All the best,
    Kerstin

  • Last Import Date Report

    Hiya. I have several tables that are appended to (some daily, some weekly) via data workshop (HTML-DB 1.6.1/10g). The tables contain standard data (computer generated alerts, security scan results, &c.) and do not implement TS (because, frankly, I can't figure it out yet). I'd like to create a small report on the main page of my app that lists specified tables (T1, T2, T3) and reports-back the last time they were appended to so I can quickly see if they are up-to-date (e.g. "T1, 05/25/2005 13:35).
    Would someone mind pointing me in the right direction? Thanks!

    My suggestion is to use the vendors table (PO_VENDORS) and the checks table (AP_CHECKS_ALL). Bring in vendor id, vendor name, and check date. Use a Last_Value function on check date to return the last check date for the vendor. See if that might work out. Or if having trouble with that, define the join in the business area between the vendors table and the checks table to be an outer join on detail, that will return master rows with no detail and master rows with matching detail. Take out check date from the format and add sum of amount to the format. Then edit for a check date (say >= '01-Jan-2008') that if you don't have any activity for after that date, then you want to get rid of those vendors. Run the workbook and any vendor with no activity will show as a NULL value for sum of check amounts (so have to add Amount(SUM) from the checks table to the workbook item list). Vendors with activity after that check date will show a numeric amount (might be 0 if in and out). You can then add a condition to filter for amount IS NULL and get the list of vendors that you want to look at disabling. Worked like a charm when I tested that here.
    John Dickey
    Edited by: John Dickey, McCarthy on Nov 3, 2009 12:13 PM
    Edited by: John Dickey, McCarthy on Nov 3, 2009 12:19 PM
    Edited by: John Dickey, McCarthy on Nov 3, 2009 12:22 PM

  • Transactional Data Reporting (/SAPAPO/RLCDEL)

    Dear All,
    We are deleting stocks and other transactional data using the report /sapapo/rlcdel by location. However, we need to verify after deletion how many stocks and transactional data are there in APO system prior to deletion. Thus, we need to compare the data before and after deletion. Does anyone knows of any report we could use? Response are appreciated.
    Regards,
    Philip

    Hi Philip,
    If you are using the report RLCDEL in the background, you can check the spool for detailed info.
    If you are running the report in the foreground, check the field Test Mode and execute. You will be shown how many data entries are going to be deleted. Click on the Delete button on the left to actually delete the entries.
    regards,
    biplab

  • Material wise Last Receipt Date v/s Last Issue Date report

    Dear Sir,
    We are in a need of a report which can provide us Material code wise the last material recipt date and last issuance date .
    Kindly guide us if there is any standard report available in  SAP . Incase we need to go for a z report then which tables should be referred to get the desired information .
    Regards
    Sania agarwal

    Dear Sonia,
    Execute the reports,MC.1,MC.A,MC.9,after executing these reports,click on choose key figures (F6) and select the options for
    Last consumption
    Last goods issue
    Last goods movement
    Last Receipt
    and check the same.
    Regards
    S Mangalraj

  • Standard report to show last transaction date posted to an asset

    Is there any standard report in asset accounting which shows- to view the last posting of transactions to an asset (if there were up or down movement on the asset values) excluding the depreciation posted.

    Try individual Asset transactions report , you can specify posting date ranges here and display report Asset wise -- S_ALR_87012048 - Asset transactions ,S_ALR_87012050 - Asset Acquisitions ,S_ALR_87012054 - Intracompany Asset Transfers ,S_ALR_87012052 - Asset Retirements
    Also check S_ALR_87012058 - List of Origins of Asset Debits .
    Lastly you can go with the Query SQ01 or SQVI reports.
    Regards
    Mukta

  • RME Detailed Device interface Last Changed date reporting

    How do I create a custom template rule to get ports that have changed since a particular date?
    LMS 3.1 RME 4.2
         when creating a custom template rule for "interfaces" "Last Changed", the date format in the rule is different than
         the field in detailed device reports.  I thought the field " last changed " was the point along the sysuptime timeline
         but the sysuptime is less than the number of days in "LastChanged".
    any help appreciated..

    That explains why the last change numbers are sometimes higher than the sysuptime.  Thank You!!!!
    is there a particular way to select the "Value" in RME-Custom Template Reports-Custom Template-rules when choosing
    Inventory group= interface ,   Attribute = Last Changed (yy:mm:dd:hh)  ?
    The format requires years,months,days and hours while the value of the field is xxxx days, hh:mm:ss
    I seem to be unable to get the correct results...

  • Last pay date report

    Hi
    Is there a standard payroll report that will show the pay period that each active EE was last paid in, please?
    Anita J

    Utilize Wage type reporter to identify the same, When ever we run the payroll system generates Net pay and Bank transfer wage types for successful payroll run. In the selection screen pass input parameter as 3 for employment status,wage types /559,/560,/557 etc which indicates active employees and Bank transfer,Net payment,Cash payment etc, execute report for the periods you want, Accordingly system gives you output with mentioned wage types i.e employee is paid on particular month.
    Regards
    Venkatesh

  • Time_dep master attributes not shown in transaction data report

    My 'emp-ids' has timedependent attibutes.When I create the query from a ODS[ where emp-id is part of key] and drag the attributes. I do not see the attributes in report. I had a data-to and date-from as part of key fields for ODS. I choose range spanning different Years. I am expecting to see changes to attributes as well key figure info.I can see the KeyFig but not attributes.
    The MAster data is loaded first and ODS later. Attributes are all set to be time-dependent and are navigational.
    When I use the 'Key Date' feature of Query-Properties I can see emp-attributes that belong to only one of the date range,but Key figures are for all data ranges.
    Shouldn't I be able to see attribute changes along with KeyFigures when I choose different date spans.

    Hi,
    Are the 'date-to' and 'date-from' infoobjects time-characteristicts type of infoobjects or a normal characteristic infoobject? (Time characateristics infoobjects are system provided ones eg 0CALDATE, 0CALMONTH).
    If it is a normal custom defined characteristic (like any other CHAR.. infoobject) then BW will not be able to relate it with the time values of the master-data (even when you are filling these with date/time values, it is not known to the system as a time field) and result in this problem.
    cheers,
    Ajay

Maybe you are looking for