Inactive Items Report mising cost information

The Inactive Items Report which is found under Inventory / Inventory Reports / Inactive Items does not provide the option to display average cost and total cost on the report. This is very useful information for financial managers trying to determine the value of slow moving or obsolete items.
It would be extremely useful to have the option to add cost information...perhaps by selected price lists...to make this a more valuable information tool for financial managers.
Is there a report option which would display this information?
Note that price lists (average cost) may be different by location. Therefore, the report also needs to show inactive items by location, not only in total.
Edited by: Dennis Milosky on Jan 26, 2011 1:13 AM

Gordon
I am not sure why on one hand you indicate that it is not that difficult to write the report for ourselves, yet say that there are too many variables. These seem to be contradictory statements.
It seems that since this would be of common benefit to nearly all SAP B1 customers, SAP would want to add it as a future release level report.
I understand that there are cost variables, but why couldn't there be a pull down menu to select the price table such as with the Inventory In Warehouse Report? In that report, the user is given the option to assign the desired price source.
Again, it seems as if this would be of common benefit and is worthy of SAP resources.
Best regards,
Dennis Milosky

Similar Messages

  • Inactive Items Report - SAP 9

    Hello experts,
    I am having an issue with the Inactive Items report in SAP 9 and I'm wondering if anyone else is. This is a system report and as such I do not expect it to have any bugs. What happens is the following:
    I enter a range of item codes and a date of 03/01/2009 for all the documents and I get many items that are indeed in these marketing documents (therefore ACTIVE). I read the help for what this report is supposed to do and its supposed to return items that have had no activity in documents from the date specified (not whether they are marked 'Active' or 'Inactive' in their respective item master records.)
    Does anyone else have this issue? Is there a setting I have to modify in order for the report to behave as expected? Please advise! Thank you very much!

    Hi Cynthia Besada,
    the report is meant to identify items that have not been entered on these documents:
    Sales Quotations
    Sales Orders
    Deliveries
    AR Invoices
    AR Downpayment Invoices
    from the date you specify. Even items with zero quanity in the document rows are considered as 'used' in a document & should not appear. If your report output shows items that are found on documents since the date, then there is something wrong & you ought to record a support incident.
    All the best,
    Kerstin

  • Inactive Items Report

    I would like help writing a query similiar to the inactive items report except i need to show components that have not had any transactions in the past 24 months.
    i figured i can query the oinm table but not sure how to write this query.
    thanks,
    Rich

    Rich,
    Try this:
    SELECT t0.ItemCode, t0.itemname, t0.Onhand, t0.CardCode, t0.InvntryUom
    from dbo.oitm t0
    where t0.onhand > 0 and t0.itemcode not in
    (SELECT distinct t1.itemcode from dbo.oinm t1
    WHERE DateDiff(DD,t1.docdate,GetDate())< 731)
    order by t0.itemcode
    Thanks,
    Gordon

  • How to make Inactive Item Report throught Query

    HI,
    I want to make report which return Inactive Items.I want to displays those Items their transations is null.
    SAP B1 have report of Inactive Items Report.But it's based on Sales documents.I want Inactive Item report
    which is based on Inventory documents. Can any body tell me how can i get Inactive item report through
    Good Issue.
    Can any body help me in this regards
    Sohail Anwar Ali

    This is what I use, be sure to pick a date from the pick list.
    /* The Date Input (Hasn't Sold Since dd/mm/yyyy */
    DECLARE @TODAY TABLE(RepDate datetime)
    DECLARE @DAYLIMIT AS datetime
    INSERT INTO @TODAY
    SELECT DISTINCT T0.DocDate FROM OINV T0 WHERE T0.DocDate = [%0]
    SET @DAYLIMIT = (SELECT MAX(RepDate) FROM @TODAY)
    SELECT T0.ItemCode AS 'Item no',
                   T0.ItemName AS 'Description',
                   T0.CreateDate AS 'Date created',
                   T1.WhsCode AS 'Warehouse',
                   T1.OnHand AS 'On hand',
                   T1.AvgPrice AS 'Avg. price',
                                           (T1.OnHand * T1.AvgPrice) as 'Extended',
                   (SELECT MAX(TA.DocDate) FROM OINV TA INNER JOIN INV1 TB ON TA.DocEntry = TB.DocEntry
                                  WHERE TA.DocDate < @DAYLIMIT AND TB.ItemCode = T0.ItemCode) AS 'Last Inv. Date',
                   (SELECT MAX(TA.RlsDate) FROM OWOR TA INNER JOIN WOR1 TB ON TA.DocEntry = TB.DocEntry
                                  WHERE TA.RlsDate < @DAYLIMIT AND TB.ItemCode = T0.ItemCode) AS 'Last W/O Date'
    FROM OITM T0  INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode
    WHERE T1.WhsCode NOT IN ('98 Ret','DropShip','Transit')
              AND T1.OnHand > 0
              AND T1.IsCommited <= 0
              AND T0.ItemCode
                        NOT IN (SELECT TB.ItemCode FROM OINV TA INNER JOIN INV1 TB ON TA.DocEntry = TB.DocEntry
                                            WHERE TB.ItemCode = T0.ItemCode AND TA.DocDate >= @DAYLIMIT)
              AND T0.ItemCode
                        NOT IN (SELECT TB.ItemCode FROM OWOR TA INNER JOIN WOR1 TB ON TA.DocEntry = TB.DocEntry
                                            WHERE TB.ItemCode = T0.ItemCode AND TA.RlsDate >= @DAYLIMIT)
    FOR BROWSE

  • Inactive Item report to show Item bought within a specific period and not sold within a specific period by whse and have stock

    Hi
    I'm trying to come up with query report to show Inactive Item bought within a specific period and not sold within a specific period by whse and have stock
    The report should show  Item Number, Item Name ,Item cost,Retail Price [Based on a price list], Qty in Whse, Last Purchase Date, Last sale Date etc.
    e.g item bought between 2011-2013 and have not been sold with the same date range or the last 12 months.
    Regards
    Brian Ndunda.

    Hi,
    Try this query:
    SELECT T0.[ItemCode], T0.[ItemName], T0.[OnHand], T0.[AvgPrice], T0.[LastPurPrc], T0.[LstSalDate] FROM OITM T0  left JOIN INV1 T1 ON T0.ItemCode = T1.ItemCode left JOIN OINV T2 ON T1.DocEntry = T2.DocEntry WHERE T1.[Quantity] is null and  T0.[OnHand] >0 GROUP BY T0.[ItemCode], T0.[ItemName], T0.[OnHand], T0.[AvgPrice], T0.[LastPurPrc], T0.[LstSalDate]
    Thanks & Regards,
    Nagarajan

  • Can we see costing value for line item batch in Batch Information Cokcpit r

    Can we see costing value for line item batch in Batch Information Cokcpit report - BMBC?
    Business like to see standard cost/ item and extended cost which should be qty in inventory * standard cost.
    Help appreciated.
    Edited by: Tom_Eric on Jan 13, 2012 2:33 AM

    HI.
    YES it is passible.
    If the GL is activated line item display check box is active then we can able to see the data as per line items.
    T<Code. Fbl5n
    Thanks.
    Vasu
    Edited by: Vasu Enaguthi on Apr 7, 2010 8:46 AM

  • Asset Balances & Cost Line items Report

    Hi,
    I am looking for a Report which would combine Asset (S_ALR_87011963)balance report and Cost line item Report(CJi3) for Projects.

    Hi,
    The flow is like this ( if u r using timesheets for confirmation):
    CAT2 : Timesheet: Enter Times : User enters the time.
    CATS_APPR_LITE  : Approval of timesheet
    CAT5  : Transfer to Projects.
    This will post cost to Projects.
    Another way of getting the Actual cost is Confirmation using CN25 or CN29.
    Regards,

  • Line item report on secondary cost element (cat - 21)

    Hi Gurus,
    Secondary cost element with category 21 is used for internat settlement from order to wbs or wbs to cost center. But can we see line item report on this cost element. Or we cannot see any line item report on this cost element. it is just used for internal settlement purpose.
    Please clear this doubt. thank you

    Hi Mohit,
    I hope you can have line item report @ order and WBS element stright away...
    for orders use: KOB1 transaction code for actual line items, where you have the facility of entering CE or CE group to find the vaues related to particular cost elements in the order. If you are flexible with CEs related to 21, give there otherwise create a CE group specific to 21 category and enter the group and find the results you want.
    same way for WBS elements/projects: we have transaction code CJI3 for actual line items, here also we can enter CE or CE groups
    Not only for actual line items, we have the option of viewing plan line items, budget line items, and commitment line items @ both order and WBS level with different transaction codes other than mentioned above, like KOB2, KOB3, CJI4, CJI2 etc
    I hope it helps a lot if I understand your query right
    Regards..
    Jose

  • Internal Order - KOB1 - Actual Cost Line Item Report

    Hi Friends,
    I need to understand how the KOB1 Report - Actual Cost Line Item works.
    As per my understanding when ever there is cost posted with assignment to Internal order this report should reflect the amount.
    We have a PO with account assignment to Internal order and Asset.
    When Goods Receipts is posted the with posting key 70, the report is reflecting the amount.
    When Invoice Receipt is posted KOB1 report is not reflecting this amount.
    There is one Invoice receipt posted with  entry
    31 Dr
    70 DR
    86 Dr GR/IR
    and the 70 debit amount is coming in the report.
    So can any one please tell me does this report show all the entries with IO assignment or when posting key 70, 75 ,80,81 are used.
    And also is GR considered as cost posting or IR considered.
    This issue has been pending from 3 months.
    Appreciate your help.
    Thanks
    Satish

    The KOB1 line item report will show you any expense account posted to that order.
    Basically you are the order collecting the cost. During the invoice receipt, the expense account are not involved, except in cases of a price difference.
    The vendor account credit and debit to GR/IR are not concerned with the order.

  • Cost element and Line item reports show different actual costs

    Hi PS experts,
    My client has an issue pertaining to actual cost reports. The cost element report shows actual costs $42,000 for one WBS and when I double click to see details the value it shows is $2100. Even when I checked line item report for this WBS the value is $2100. What could be the reason for getting different values? If some one throw some light on this it would be great helpful to me
    Regards,
    Laxminarsimha

    Laxminarsimha
    The values in CJI3 should be correct and will include all postings (e.g. Settlement values) and possibly Actual Revenues unless a filter is in place - so take this as being your correct figure to start with.
    Your drilldown will show the same value as CJI3 because it is CJI3
    Any cost element report you are using is probably correct for what you are asking - is this a Standard Cost Element Report you are using or is it bespoke
    One thing to be careful of when you drilldown on Cost Element Reports is that you do not always get the a make up of the value you have drilled down
    e.g.
    Cost Element Report was run for Period 1 to 6 2008 and shows £100.00
    You drilldown and sometimes the drilldown automatically shows ALL line items e.g £500.00 (not just the values for periods 1 to 6 of 2008 which you may expect £100.00)
    In the past I've removed the drilldown capability from bespoke cost element reports to prevent drilldown to the line item report (which is CJI3) because of this problem.
    Usually where values for a a number of periods only (not total costs) was required
    Other factors to consider
    Revenues/Settlements may be excluded from Cost Element Report but will not be excluded from CJI3 unless you specifically restrict
    You need to identify which types are postings are missing from the Cost Element Report (what is common...cost element, dr/cr indicator, business transaction)
    I've also hit the mistake in the past where I've asked for periods 1 2007 to period 3 2008 and instead of giving me just over a years worth of actual it gave me actuals for periods 1 to 3 for 2007 and 1 to 3 for 2008.
    Hope this helps
    Steve

  • Inactive items show in the MRP Report

    Inventory items marked as inactive show in the MRP report - 8.8, SP0, PL12. If there are requirements, they show regardless of whether or not Display Items without Requirements is checked. If there are no requirements and the Display Items without Requirements is checked, inactive items show too. Is this intentional?  My customer wants to know this and doesn't understand why their inactive items are showing in the MRP Report.
    Thanks
    Sally Weinrauch

    Hello Sally,
    Did you check the following path:
    Administration>System Initialization>General Settings-->Inventory Tab
    Under this tab at the very last you have a checkbox " Display Inactive Items in Reports". Please uncheck this option and try running MRP again. Let us know if you still have questions.
    Regards,
    Praneeth

  • Cost Center Line Item Report

    Hi All,
    Is there any BI Conent Datsource which will help costcenter line item report.
    otherwise is there any datasource which cover these tables...ADRP,COVP,CSKS,CSKU,CSKT,EKKO,EKPO,ESIL,LFA1,MSEG
    Regards

    Hello Srini,
    Take the link and see the left pane of that screen, you will get all the datasource list relavant for you requirement.
    http://help.sap.com/saphelp_nw70/helpdata/EN/13/fa383fc4805003e10000000a114084/frameset.htm
    Good day
    Regards
    Arun S

  • PO report with cost center & GL account detail

    Hi Guy,
    Any body so kind to help me to find out a standrd SAP report which give the account assingnment detail about PO order line item.
    The standard SAP report ME2K give the assigned cost center but not about  the assigned GL account.
    My requirement is as following:
    PO NO  Item   Material   Quantity   Cost Center     GL Account No
    It means PO line item assinged to cost center & GL account.
    Thanks in advance.
    Rgds,
    sp sahu

    Mr Radhakrishnan & Mr MS,
    The ME2K transction only give cost center wise PO. Not give the information about the GL account assigned to the PO.
    Whereas in KSB1 report give the information about the PO for which some material document already posted. I mean to say, KSB1 include those PO which have PO histrory is present. what about those po for which no GR or IR has done. It may come in commitment report that is in KSB2.
    My requirement is a report which give information about the GL account assigned to all the PO created in the system.
    Thanks for reply.
    Regards,
    sp sahu

  • PLAN line items reporting in CCA

    Hi,
    We hava a requirement to develop report for cost center
    accounting. We have to report on line items. The standar cube 0CCA_11 gives us what we want but not by line item wise. We have an ODS for Actual line items but do not have anything to report on PLAN line items.
    How can we report PLAN line items in CCA.
    Any help is highly appreciated.

    Hi,
    In Cost center Accounting,you can retrieve Plan data if it has been maintained in teh SAP R/3 system. To extract the Plan data,you need to restrict the Info packages with the valut types e.g '10' for Actual, '20' for Plan etc.
    By restricting the Info packages with the value types,you should be able to extract the Plan data.For further information,<u>http://help.sap.com/saphelp_bw33/helpdata/en/8d/1f383fe58d5900e10000000a114084/frameset.htm</u>
    Regards,
    Srini

  • AP cleared Item Report

    Hi,
    I am use SAP query to build a AP cleared Item report. The report is similar as we can get from FBL1n, but I need a column as group key, which can not be found in FBL1n report.
    My questions is:
    1. When using SAP query, I use table LFA1 and BSAK, everything is ok, except I could only get the uncleared Item in the table. Like for one item have both Credit and Debit, I could find them in my report. What shall I do?
    The field used in the report:
    Company Code: BSAK-BUKRS
    Vendor Code: BSAK-LIFNR
    Vendor Name: LFA1-NAME1
    Payment Type(Group Key):
    Posting Date: BSAK-BUDAT
    Clearing Date: BSAK-AUGDT
    Document Type: BSAK-BLART
    Fiscal Period: BSAK-MONAT
    Fiscal Year: BSAK-GJAHR
    2. Or if I just need to have a report like FBL1n, but have group key on the report, any other report I could use?

    Hi
    Sorry for my unclear question...
    What I need is: We need a report on Vendor cleared items, which have a column is Payment Type, to refer to what kind of payment to the vendor, like it's a Adv. fee. Our solution is to use GROUP KEY field in the vendor master data to maintain the payment type information, as it's vendor specified. So for common understanding, we could use FBL1n report, use GROUP KEY as a selection and run out the report. Unfortuntely, we could select by GROUP KEY, but we can not have it shown on the report, from the layout.
    So we decided to use SAP Query, which is not a very difficult one. But I found from Query, and the table/ field I refered in my previous message, I could only see some of the records. If one item is cleared in BSAK, I could not find them in my query report made by me. So hope this time my question is cleared, thanks very much.
    Or, if our need is to find a proper field to maintain a information in master data, and also can be shown in the FBL1n report, may u suggest?

Maybe you are looking for

  • Lightroom synchronization trying to drop all my photos

    Hello, I recently installed OSX LR4, and was happily using it for a couple days on an upgraded LR3 catalog, but now when I go to synchronize any folder it will say (for example): Import new photos (252) Removing missing photos from catalog (252) If I

  • Problem with discussion group contributors iview

    Hi, I have created a discussion group contributors iview and fill all the parameters (name, id, layoutset=DiscussionGroupsContributor, path to folders). But if I display the iview in the portal a can create a discussion groups and discussions but i c

  • Character replacement script for Site Studio / idocscript

    Working on creating and RSS feed of items in our CMS via the RSS feed component in Site Studio. I have the feed generating, but the Google Product search parser that I need to read the feed balks at odd (non-standard) characters like "o-slash" and an

  • Registration Of XML Schema

    Hi All, Created below block for registration of the XML Schema in database. Which is working fine. But strange thing is happing, actually when i am creating below code as stored procedure and executing sql prompt getting insufficent privilage. When r

  • HP LAPTOPS NOT TURNING ON OR BLACK SCREEN. FIX ENCLOSED

    I placed this post in another thread, but it sounds like you have a damaged GPU. I had this problem, but I have fixed it now. Fix below. I have FIXED my misbehaving PC, and it is running better than ever! I had the common problem that the GPU had ove