Inventory Period Close shows uncosted items with status "E"

We have two inventory org (u1 and u2) and a master org.
I have closed the inventory costed period of u1 and u2..
But when i go to close the master org it shows pending transaction in uncosted item.
I have run the sql query
Select * from mtl_material_transactions
where costed_flag ='E'.
the result of the query show the record which are exactly the same as uncosted items shows in the pending material..
I have run the cost manager but the problem is still the same.

Hi
Hope the support notes - "+ID 1069492.1 - Resolving Period Close Pending Transaction R12+" & "+ID 1017229.102 - How to Re-Submit Uncosted Records+" help.
Regards,
G V Ranjith

Similar Messages

  • How to show catalog items with Approval Status:Pending in a Content Search Webpart

    How to show catalog items with Approval Status:Pending in a Content Search Webpart using cross site publishing. Thanks in advance.

    I don't think you're going to be able to. Usually Approval Status is used in conjunction with Major/Minor versioning and while Approval Status is pending the item is usually a draft.
    As a result the search crawler should not be able to see the draft items as it would not have the necessary rights to do so. (Good practice ensures that the Search Crawler has only read access and is not an elevated account for this reason)
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • INVENTORY PERIOD CLOSE 작업 순서 및 CHECK사항

    제품 : MFG_INV
    작성날짜 : 2004-05-20
    INVENTORY PERIOD CLOSE 작업 순서 및 CHECK사항
    ======================================
    PURPOSE
    월별로 Inventory Period close작업을 수행하게 되며,
    이 때 정상적인 Period Close를 위한 작업순서 및 Check사항을
    기술하고자 한다.
    Explanation
    Closing Step :
    1. GL transger되지 않은 data를 실행한다. INCTGL (GL transfer)
    The posting occurs when you "transfer" transactions from Inventory
    to the GL
    2. Close시의 Transaction Cehck
    select count(*) from mtl_material_transactions_temp
    ==> answer should be zero
    select count(*) from wip_cost_txn_interface
    ==> answer should be zero
    select count(*) from wip_move_txn_interface
    ==> answer should be zero
    select count(*) from mtl_material_transactions where costed _flag is
    not null
    ==> answer should be zero.
    Those would be the tables that would cause problems with closing the
    inventory period.
    I suppose that the ct could modify them to include a "where clause"
    and check for txns before the first date of the next accounting
    period.
    3. INV period close를 실행한다. INCTPC (period Close)
    4. Inventory Period가 Close되면, Reopen할 수 없다.
    Example
    Reference Documents
    -------------------

  • Reports in GC: show all users with status != 'OPEN' (locked users)

    Hello,
    I would like to create a report in GC which shows all users of a given database with status != 'OPEN'.
    To create a report is not the problem - but which view/table of the GC repository contains the needed information about the status of the database users?
    I've already looked through alot of the mgmt$... views - but didn't find any information about the user status...
    Any help will be appreciated...
    Rgds
    JH

    The reports of the GC are using the repository of the GC. Therefore you will only find the users of that repository in sys.dba_users. What I need are the users of a database which is monitored through an agent of the GC.
    Rgds
    JH

  • PC - Generating a 'Dashboard' report on the status of the controls already planned for the 1st quarter of 2014, shows the control with status Submitted.

    Hi;
        I have a problem in GRC-PC I can't solve. My User is generating a 'Dashboard' report on the status of planned for the 1st quarter of 2014 (compliance controls), this controls not planned, but presented the control with status Submitted.
    I appreciate any help...
    Thanks all....
    Regards....

    kaeandcolesmon,
    If you open the recovery drive (partition) it should only have a single folder (Recovery).
    To make sure that your not saving restore points to that drive.
    See:
    Start, Control Panel, System, System Protection tab. Make sure the D drive partition is set to OFF so that it does not save there.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Showing Items with no transactions

    I am trying to build a report that will show us items with potentially incorrect item status.  Item status (on table itmmas) is either A(ctive) or I(nactive).  The report should show all Inactive items which have had at least one transaction in the past 4 weeks AND active items which have had no transactions in that period.
    My plan is to join the item master table to the item ledger table (itmldg) which lists all inventory transactions.  I can show the inactive items with transactions without a problem.
    What I can't figure out is how to show items with Active Status that don't have any transactions.  I can't get CR to return a data set which includes ALL records from itmmas but only those from itmldg in the last 4 weeks.  I tried this SQL query:
    SELECT itmmas.itmiid, itmmas.itmdes, itmmas.itmsts, itmldg.ilgdno, itmldg.ilgdat
    FROM {oj itmmas  LEFT OUTER JOIN itmldg ON itmmas.itmiid = itmldg.ilgiid}
    WHERE (itmldg.ilgdat>={d '2009-09-01'})
    When I run this query in MS Query and return the results to Excel, I get single lines for items with no transactions.  For these items, the fields from itmldg are NULL.  When I run this query in CR, I don't get any data for items with no transactions.
    Can anyone think of a way to get this to work?

    The issue that you have is that the WHERE clause in your SQL statement is only looking at an itmldg table field for a value.  This is effectively making your Left Outer Join an Inner Join, because when an itmmas record does not have an itmldg record, the date field will be NULL.  You have to add the condition "OR itmldg.ilgdat is null".
    If you want to return ONLY the records that the report is interested in (which should have beter performance), change the SQL to
    SELECT itmmas.itmiid, itmmas.itmdes, itmmas.itmsts, itmldg.ilgdno, itmldg.ilgdat
    FROM {oj itmmas LEFT OUTER JOIN itmldg ON itmmas.itmiid = itmldg.ilgiid}
    WHERE ((itmldg.ilgdat>={d '2009-09-01'}) and (itmmas.itmsts = 'I'))
      or  ((itmldg.ilgdat is null) and (itmmas.itmsts = 'A'))
    HTH,
    Carl

  • Purchase contract print preview is displaying items with DEL_IND='X'

    Hi,
    We are using SRM Server 5.5 and have a situation described below
    A purchasing contract is created with, for example, 2 items with status as 'Held' . In change mode, the one item is deleted and the purchasing contract is Released.
    When the button 'Output Preview' is pressed, the system displays the print preview with both the irems although one item is deleted.
    I am trying to find SAP notes for this but I didn't find any relavent note.
    I found one note for not displaying 'Inactive' status items however not found anything for excluding deleted items from print preview.
    Appreciate your inputs on this.
    Thanks and Regards,
    Sambhaji Chawale

    Thanks Georg for your inputs.
    Yes, you are correct we are using custom developed smart form and not SAP Standard. We will be updating the smartform for adding the condition of u201Cselect items with deletion indicator=u2019Blanku2019.
    However we are interested in the standard solution that SAP has provided to cover this. I don't see this condition in SAP standard smart form so this must have been covered through some program code.
    Does anybody have idea on this.
    Thanks and Regards,
    Sambhaji Chawale

  • How to Stretch Components in Show Detail Item - Jdev 11.1.2

    Hello:
    I have a panel splitter-verticle, and in the second facet I have a panel stretch layout and in that a panel tabbed. Inside a show detail item, I have another panel splitter-verticle. Inside the first facet, I have a af:query and in the second facet I have a af:form. But both the af:query and the af:form do not stretch to fill the open space, when I move the first splitter.
    What is required to have the af:query and af:form inside a show detail item with a splitter stretch to fill the open space?
    Thanks for the help.
    Edited by: 862658 on Aug 11, 2011 6:29 AM

    Hi,
    set the showDetailItem StretchChildren property to First
    Frank

  • Why doesn't Mail for IOS show sent items?

    Why doesn't Mail for IOS show sent items with an IMAP server account. Everything else works okay but there is two sent directories and no contant in any of them ...
    Trouble is the same in both iPhone4 and iPad.
    Exactly the same account shows everything on my Macintosh. Including Sent items.

    Using the method described above I see outgoing messages that were sent from Mail on my iMac in the correct mailboxes for 2 different MobileMe accounts.
    You seem to be having and issue where your database/setting are corrupted if your messages are in the wrong outbox. I would suggest deleting the accounts from your iPad and the reconfiguring them.
    While viewing an email at the top of the screen, left of the trash icon, you should se a Folder icon. Click on that to send the message to another folder. Page 59 of the manual http://manuals.info.apple.com/en_US/ipad_2_user_guide.pdf
    Message was edited by: J D Knight III (fixed page number)

  • Sales doc items with the status CLSD ARE being selected for month-end

    We are working to improve month-end processing time for Sales Orders  We use SAPKKA12 to set CLSD status on line items
    SAP Help states: be sure that the status CLSD (closed) is set for all sales document items that you do not want to include in the period-end closing process. The sales document items with the status CLSD are then not selected for processing in the period-end closing process. Use report program SAPKKA12 to set the status.
    This use to work (in 4.0). I have been on other projects and just brought back to this after several years (now in 5.0).  Testing today shows that orders with CLSD status are being selected for month-end process.
    Any ideas why this is so?  System is selceting over 300,000 orders when well over half of them are set to CLSD.  I do get a message that the order is not relevant to processing, but selecting the order and logging the message take time. and the logs are VERY long.
    thanks

    Does any one else have this issue  that Sales documents with status CLSD are selected by RA (KKAK)?
    In just one of our jobs, i get this Basic List
    Perform actual results analysis      31273      
    Not relevant                                                 103894
    Error                                                        2306      
    Objects Selected                                    137,473
    75% of the orders are CLSD.  and the system is still counting them. (we do not out put information messages)
    I do understand that the orders are not analyzed,  but all documentaion states that CLSD status is not selected, and in our 5.0 system, they are selected.  In our 4.0 system, they were not selected.
    Does this truely work for anyone in a 5.0 system?
    Thanks
    Althea

  • Automate Open and Close of Inventory Periods

    Hello,
    I have a request below.
    I want to Automate the Inventory Periods to open and close for all sites once purchasing period has been closed.
    sites with pending transactions will not be closed and an email will be sent as an alert.
    Thanks a lot and info on this will be appreciated.
    Kind regards
    Siva

    Hi;
    Please review below which could be helps
         Period Close Advisor: E-Business Suite (EBS) [ID 335.1]
    Regard
    Helios

  • Items with  zero stock quantity show negative stock value in Stock reports

    When running Stock reports for controlling the stock value towards the GL accounts, some items appear with zero stock quantity, but the report still shows a stock value  (negative value in my case)
    How can this happen, and how can I correct this situation ?
    System parameters are :   negative stock is not allowed, Items with zero cost price not allowed. On item level average cost price method is used.
    P.K.Johnsen

    Hi Johnsen,
    I believe you have checked the" Manage Inventory by warehouse". I have noticed this issue in SAP B1 2005B but this is rectified in 2007B. The system behaves in this way as the system maintains item cost for the item for all warehouses and even if the stock is not present in the warehouse, the system would still show you a value for the same. Hope this helps. please search the forum. You'll find related threads.
    Thanks,
    Joseph

  • How to close automatically sales order with open items ?

    Hi,
    There is a request from a client:
    he would like to be able to close the open items of a sales order which are not billed automatically according to a specific calendar. Moreover he would like to specify that ,generally speaking, the customer does not want to be delivered another time if there are leftovers in the sales order.
    I read in other posting that manually you can close open items in a sales order by adding a reason of rejection for the line item. Nevertheless, I do have one question about that. Imagine we only have one line of 100 pieces and we only deviver 90 pieces. When we put a reason of rejection in the sales order item of 100 quantity, what exactly will happen? How the system will know it only has to reject the 10 non delivered pieces and not the 100 pieces mentionned in the line item ? I also read that the price would change to zero but how can this be correct if we have 90 pieces to bill ?
    Thanks a lot for all your answers.
    Stéphanie

    Dear Stephanie,
    the reason for rejection change the status of the item itself to completed and it move the item from "active to be processed" to a simply statistical status.
    In the scenario you mentioned, as the reason for rejection is applied to the full item, you will set the full item as statistical, but your 90 pieces will continue being delivered and even eventually invoiced.
    Some discrepancies you may find only running some statistical reports, where also the net values information would not be in line as per your expectation.
    In order to prevent this discrepancy issue, I would advice you to contact a good abaper and develop a program that may massively rejects open items with not confirmed quantities, creating a new item for the open quantity if the sales line is partially confirmed.
    It means that, in your scenario:
    Order A > Item 1 for 100 pieces
                               > only 90 pieces delivered & invoiced
                               > 10 pieces open
    the result would be the following:
    Order A > Item 1 for 90 pieces
                               > 90 pieces delivered & invoiced
                  > Item 2 for 10 pieces rejected
    In this way you keep under control any report you may generate out of your sales and you can set as statistical items only quantities not processed further.
    I hope this explanation may help you.
    For any additional information on the reason for rejection I would remind you to SAP documentation and if you have the possibility to try to customize ans set your system with reason for rejection in order to discover directly with your eyes how these work.
    Regards,

  • Special Customer Prices for Items with Period

    Hi all
    How to show the Item Price List amount from
    SELECT * FROM SPP1 T0
    Kedalene

    Hi Nagarajan
    Thanks for your reply.  Please see my screenshot below.
    My Query result for Special Prices for Customer Business Partner, double click Item row for input Period Discount is correct except I just want to show the selected Base Price amount from the standard Price list in Inventory Price List->Price Lists->Price Lists.

  • SBO_SP_TransactionNotification, check status of open items with other sales

    Good morning,
    need help with a SQL to SBO_Transaction.
    I need to check the database (Table ORDR and RDR1) if there are items on other sales documents with the open status and must be for the same business partner of the document being entered.
    The scenario is, if a seller trying to include a sales document for a business partner of the same item that is already in another document of sale and that has not been met, the SAP can not allow.
    Includes the following SQL procedure SBO_TransactionNotification, but could not run at all.
    Does anyone know how to help me with this SQL?
    IF @object_type = '17' AND @transaction_type in ('A', 'U')
    BEGIN
    IF (SELECT COUNT (T0.DocEntry)
         FROM [dbo].[ORDR] T0 INNER JOIN [dbo].[RDR1] T1 On T0.DocEntry = T1.DocEntry
         where (T0.CardCode = @list_of_cols_val_tab_del AND
                     T1.ItemCode = @list_of_cols_val_tab_del AND
                     T1.LineStatus <> 'C') AND T0.DocEntry = @list_of_cols_val_tab_del) > 0
    BEGIN
         SET @error = 1
         SET @error_message = 'There items with open status in other documents of sale! Check!'
    END
    END
    When I change the values ​​with the code "@list_of_cols_val_tab_del" by inserting the values ​​of CardCode and ItemCode, can cause the SQL Server returns the correct value it should return in SBO_Transaction, the counter works, if there are open items for the same business partner , returns the counter value greater than zero of should give the message stopping the process, but within the SBO_Transaction SQL does not work.
    Thanks everyone!

    Hi,
    You may try:
    IF @object_type = '17' AND @transaction_type in ('A', 'U')
    BEGIN
    IF EXISTS (SELECT T0.DocEntry
         FROM dbo.ORDR T0 INNER JOIN dbo.RDR1 T1 On T0.DocEntry = T1.DocEntry
         where (T0.DocEntry = @list_of_cols_val_tab_del AND
                     T1.ItemCode IN (SELECT T2.ItemCode FROM RDR1 T2 INNER JOIN ORDR T3 ON T3.DocEntry = T2.DocEntry
              WHERE  T3.CardCode=T0.CardCode AND
                     T2.LineStatus = 'O' AND T0.DocEntry != @list_of_cols_val_tab_del))
    BEGIN
         SET @error = 17
         SET @error_message = 'There items with open status in other sale order! Check!'
    END
    END
    Thanks,
    Gordon

Maybe you are looking for