PO Receipts are stuck in RCV Interface tables with Status as LC_PENDING

Hi All,
I need urgent help in fixing the following issue in Purchasing. We are on R12 and we have LCM integration implemented with Purchasing.
Right now PO receipts are getting stuck into RCV_HEADERS_INTERFACE and RCV_TRANSACTIONS_INTERFACE tables with PROCESSING_STATUS_CODE as LC_PENDING and TRANSACTION_STATUS_CODE as PENDING after running the Receiving Transaction Processor (RTP).
I understand that this means the receiving is not yet complete, and record is pending for Landed Cost integration, you must have done receipt in LCM (Landed Cost Management) enabled inventory organization.
I have also gone through the Metalink "EBS LCM : How To Diagnose Issues With Landed Cost Management In Procure To Pay Cycle[Article ID 860747.1]"; but could not make out what could be the possible fix to resolve this issue.
And also how to process these PO receipts by running Receiving Transaction Processor.
Any help or guidance is appreciable. Need to resolve these urgently as lot of transactions are stuck and our year ending is close by.
Thanks

Hi,
Can you let me know what the process for receiving is after the transactions are LC_INTERFACED? I'm new to Landed Cost Management and would appreciate your quick help...

Similar Messages

  • Doubt on inserting data into rcv interface tables

    Hi all,can anyone kindly suggest me what are the mandatory columns in rcv_headers_interface and rcv_transactions_interface tables to insert data so that after running Material Transaction Processor concurrent program the data in these interface tables should populate in rcv_shipment_headers and rcv_shipment_lines.
    I am close on this,but i am getting some errors in po_interface_errors like "transaction_type" is invalid in rcv_transactions_interface table and invalid "shipment_num" in rcv_headers_interface.
    So, someone kindly suggest me what exactly i need to insert into these tables.
    FYI..this is what i inserted
    INSERT INTO rcv_headers_interface
    HEADER_INTERFACE_ID,
    GROUP_ID,
    PROCESSING_STATUS_CODE,
    RECEIPT_SOURCE_CODE,
    TRANSACTION_TYPE,
    AUTO_TRANSACT_CODE,
    LAST_UPDATE_DATE,
    LAST_UPDATE_LOGIN,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    VALIDATION_FLAG,
    COMMENTS,
    SHIPMENT_NUM,
    FROM_ORGANIZATION_ID,
    SHIP_TO_ORGANIZATION_ID,
    EXPECTED_RECEIPT_DATE,
    RECEIPT_HEADER_ID
    SELECT
    landed_cost_interface_s.NEXTVAL,              --Header Interface ID
    landed_cost_interface_groups_s.NEXTVAL,       --Group ID
    'PENDING',                                    --Processing Status Code
    'INVENTORY',                                  --Receipt source Code
    'RECEIVE',                                    --Transaction Type
    'DELIVER'  ,                                   --AUT Transact Code
    lc.last_update_date,                          --last update date
    lc.last_updated_by,                           --last updated by
    fnd.user_id,                                  --Last Update Login
    sysdate,                                      --creation date
    lc.created_by,                                --created by
    'Y',                                          --Validation Flag
    'Receiving Through Interface',                --Comments
    lc.file_number,                                --Shipment Number
    81,                                           --From Org
    82,                                           --To org
    sysdate,                                      --Expected Receipt Date
    regal.regal_inv_landed_cost_seq.nextval       --Receipt Header ID
    FROM   regal.regal_inv_landed_cost_tab lc,
            fnd_user fnd
    WHERE  lc.last_updated_by = fnd.last_updated_by
    AND    lc.file_number='NOV612';
    INSERT INTO rcv_transactions_interface
                 HEADER_INTERFACE_ID,
                 GROUP_ID,
                 INTERFACE_TRANSACTION_ID,
                 TRANSACTION_TYPE,
                 TRANSACTION_DATE,
                 PROCESSING_STATUS_CODE,
                 PROCESSING_MODE_CODE,
                 TRANSACTION_STATUS_CODE,
                 CATEGORY_ID,
                 QUANTITY,
                 LAST_UPDATE_DATE,
                 LAST_UPDATED_BY,
                 CREATION_DATE,
                 CREATED_BY,
                 RECEIPT_SOURCE_CODE,
                 DESTINATION_TYPE_CODE,
                 AUTO_TRANSACT_CODE,
                 SOURCE_DOCUMENT_CODE,
                 UNIT_OF_MEASURE,
                 INTERFACE_SOURCE_CODE,
                 ITEM_ID,
                 UOM_CODE,
                 EMPLOYEE_ID,
                 SHIPMENT_HEADER_ID,
                 SHIPMENT_LINE_ID,
                 TO_ORGANIZATION_ID,
                 SUBINVENTORY,
                 FROM_ORGANIZATION_ID,
                 FROM_SUBINVENTORY,
                 EXPECTED_RECEIPT_DATE,
                 SHIPPED_DATE
    SELECT
         landed_cost_interface_s.CURRVAL,              --Header Interface ID
         landed_cost_interface_groups_s.CURRVAL,       --Group ID
         landed_cost_interface_s.NEXTVAL,              --Interface_transaction_id
         'RECEIVE',                                       --Transaction Type
         sysdate,                                      --Transaction Date
         'PENDING',                                    --Processing Status Code
         'BATCH',                                      --Processing Mode Code
         'PENDING',                                    --Transaction Status Code
         129,                                      --Category ID   
         lc.quantity_received,                          --Quantity
         lc.last_update_date,                          --last update date
         lc.last_updated_by,                           --last updated by
         sysdate,                                      --creation date
         lc.created_by,                                --created by
         'INVENTORY',                                  --Receipt source Code
         'INVENTORY',                                  --Destination Type Code
         'DELIVER' ,                                    --AUTO Transact Code
         'INVENTORY',                                  --Source Document Code
          msi.primary_unit_of_measure ,                --Unit Of Measure
          'RCV',                                       --Interface Source Code
          msi.inventory_item_id,                        --Item ID
          msi.description,                              --Item Description
          msi.primary_uom_code,                         --UOM COde
          fnd.user_id,                                  --User
          V_A,                                         --Shipment Header ID
          V_B,                                         --SHipment Line ID
          82,                                           --To Organization ID
          'Brooklyn',                                     --Sub Inventory ID
          81,                                            --From Organization
          'Vessel',                                      --From Subinventory
          sysdate,                                       --Expected Receipt Date
          sysdate                                        --Shipped Date
      FROM
         regal.regal_inv_landed_cost_tab lc,
         fnd_user fnd,
         mtl_system_items msi
      WHERE
                 lc.organization_id = msi.organization_id
            AND  lc.inventory_item_id = msi.inventory_item_id
            AND  lc.last_updated_by = fnd.last_updated_by
            AND  msi.created_by = fnd.created_by
            AND  lc.file_number='NOV612';Any help is appreciated.
    Thanks in advance!!

    Thanks for your reply Sandeep Gandhi,i followed your advice and went through that metalink note but it didn't help much.Errors are cropping up every time,i am testing with only one value right now.Am i missing something like the flow of the whole process..
    --->First i have loaded data into mtl_interface table
    --->Next,i am trying to insert into rcv_headers_interface and rcv_transactions_interface
    So,is there any link between the data i am passing into mtl interface table and rcv interface tables?
    Thanks in advance!!
    Edited by: sandy on Oct 18, 2011 9:38 PM
    Edited by: sandy on Oct 19, 2011 10:03 AM

  • I was in the middle of updating to 7.0.3 and Itunes stopped working. Now my phone is stuck in limbo (apple logo with status bar under) My power button doesnt work (of course) How do I get it back to normal?

    I was in the middle of updating to 7.0.3 and Itunes stopped working. Now my phone is stuck in limbo (apple logo with status bar under) My power button doesnt work (of course) How do I get it back to normal?

    I have same issue. I click on the home button and Wake/sleep at the same time for 30 seconds or more and then the phone entered in Recovery mode. It is erasing my content now and installing the update. Let´s see how this ends. I have iCloud, iTunes match, and backups from previos versions, hope I can restore all my content.
    Otherwise I´ll go to the Genius Bar to do a checkup.
    Good luck!
    It did not work the first time... The iPhone4 kept in limbo. Then I did disconnect as suggested above and tried again to enter in Recovery mode.  This second time it works. And after restoring the iPhone4 with 7.0.3, it asked me if I want to recover from backup. I did recover from my latest back up and now it is syncing the content.

  • Some Vista users are stuck in Basic Interface

    I have a couple of Vista users that are stuck in the basic interface. Deleting the cookies and re-starting IE8 does not fix the problem they are brought directly to the basic login screen "the screen you get to if you have basic interface selected and click on login without the username and password" no settings button available.
    Thanks

    SCOHS wrote:
    > I have a couple of Vista users that are stuck in the basic interface.
    > Deleting the cookies and re-starting IE8 does not fix the problem they
    > are brought directly to the basic login screen "the screen you get to if
    > you have basic interface selected and click on login without the
    > username and password" no settings button available.
    >
    > Thanks
    IE8 isn't supported with GW 7, and isn't planned to be AFAIK. You MIGHT
    be able to fix it by altering your web server to feed the compatibility
    mode headers. Search the forums for more.

  • Message stuck in Adapter Engine queue with status "Delivering"

    Hi All,
    I have a File to File EOIO scenario. The messages are sucessfully delivered from IE to AE. All entries have a chequered flag in SXMB_MONI. No messages are stuck in IE queue (SMQ2). But the message is stuck in AE queue with status "Delivering". I can not resend or cancel the message coz the status is "delivering".
    The reason it is in "delivering" status is due to some config error that I made in Communication Channel FTP parameters. Now it is corrected. But how do I deal with this message now?
    Restart of server is not an option here. Is there are place I can delete the message from AE queue?
    Thanks
    Jaishankar

    You can see the queues status (and number of stuck entries etc) through the link:
    http://<host>:<port>/MessagingSystem/monitor/systemStatus.jsp
    There, you can maintain the queues.
    There is also a link for the EOIO Sequence Monitor:
    http://<host>:<port>/MessagingSystem/monitor/sequenceMonitor.jsp
    There you can see the stuck messages and maintain these.
    Make sure to handle the proper message IDs.
    All of these are acessible through the Messaging System main page:
    http://<host>:<port>/MessagingSystem/
    Regards,
    Henrique.

  • Are there ways to interface OBIEE with customer application?

    Our OBIEE version is 10.3.4 on Redhat, OBIEE connect to a Oracle 11.2.0.2 database running on the same box of Redhat as OBIEE. Our application is java based web application using Tomcat, it point to OLTP database of Oracle 11.2.0.2 on an dedicated Redhat server.
    One of the original requirements for the application was to process OLTP data with complecated logic and create reports in text files. Now the customer wants to use OBI to display, print and distribute the reports. The best way to meet this requirement change at the late stage of development appear to be interfacing the application with OBIEE, if possible at all. That way, on clicking a button in the application GUI, a stream of formated data is sent to OBI pressentation service as a response to a request. An OBI client page will then be displayed to shpw the reports, and allow user to print and distribute.
    Now are there some OBI APIs allowing an application to call to interface with OBIEE?
    Thanks.

    Hi,
    I do not gave further experience with this subject, but I guess this is what you are looking for;
    http://download.oracle.com/docs/cd/E12096_01/books/AnyWebServ/AnyWebServ_Overview3.html
    You will probably have to do some further research.
    Maybe Venkat could be of any help.
    http://oraclebizint.wordpress.com/2007/07/31/customizing-obi-ee-soap-api/
    Good Luck,
    Daan Bakboord
    http://obibb.wordpress.com

  • Import standard Purchase Order process and interface tables

    Hi all,
    We are populating three PO interface tables from our custom developed application. PO_HEADERS_INTERFACE, PO_LINES_INTERFACE and PO_DISTRIBUTIONS_INTERFACE. We are using 11.5.10.2 version of Oracle Apps.
    Initially we did not manage to populate the distributions interface table, but, now we are populating it. And after doing so, when we run the Import standard Purchase Order process for 'Approved' POs, the process_id for even the record which has correct distributions info also gets 'Rejected' as a value. The process is considering a mix of records : the approved POs that DO NOT HAVE distribution info in PO_DISTRIBUTIONS_INTERFACE (which we had not managed to populate) and the approved POs that HAVE distribution info in PO_DISTRIBUTIONS_INTERFACE.
    does the Import standard Purchase Order process populate partial data that could be good or it rejects the whole lot of records?
    Can anyone guide on this issue?
    Thanks and kind regards,
    Aparna
    Edited by: Aparna on Jul 24, 2009 3:45 AM
    Another piece of info I would like to share is
    I have run the process for an approved PO with distributions info in PO_DISTRIBUTIONS_INTERFACE. This time no mixed data. In PO_INTERFACE_ERRORS table, an entry was found: for column name : PO_DISTRIBUTION_ID in ERROR_MESSAGE column 'Error: Has no distributions'.
    Edited by: Aparna on Jul 24, 2009 8:03 AM
    After carrying out number of tests, I have found out that
    1) if the approval_status for the po is 'Approved' in the po_headers_interface table, it gives the above mentioned error and the process_id is 'rejected'.
    2) if the approval_status for the po is 'Incomplete' in the po_headers_interface table, the process add the 'accepted' value for the process_id. But, the charge account number is not populated in shipments.
    Edited by: Aparna on Jul 31, 2009 1:07 AM
    There has been some progress on this issue. The process sees distributions data into the PO_DISTRIBUTIONS_INTERFACE table. Yet the following errors are found in the process log file:
    Start dist default process
    before getting period name
    after getting period name
    -->Intfc error occurred ...PO_PDOI_INVALID_GL_ENC_PER
    before workflow
    unit price = 18.5, rate = , unit price in functional currency = 18.5
    after workflow
    Start dist creation process
    Start dist validation process
    -->Intfc error occurred ...PO_PDOI_INVALID_BUDGET_ACCT
    Start insert new record into po_distributions
    Distribution ID: 252
    dist num: 1
    last updated by: 1189
    po header id: 5283
    po line id: 5878
    line loc id: 5924
    sob id: 21
    cc id: 1560
    qty ordered: 10
    Req Header Ref num :
    Req line Ref num :
    Req dist id :
    ROW ID: AAHUc1AFPAAAQ04AAC
    call tax
    Rollback for the Last Errored Line: 10
    All Lines in error - Rolling back the header
    We opened new GL periods for the calendar and yet same errrors are seen. Can anyone suggest any solution?
    Kind regards,
    Aparna

    Hi
    Do you have a copy of your insert statement?
    regards

  • Updating Price and Supplier at Requisition interface table after Min/Max

    Hello,
    We have requirement of updatig requisition data at interface table once Min/Max planning is completed.
    We need input here like what would be the behaviour of Standard Requisition import program if we update price and supplier details at interface table after Min.Max planning and before running the Requisiton import.
    Quick reponse will help us to move forward on this requirement.
    Thanks
    Devaraj.K

    Hi,
    Yes, we are using sourcing rules, so whenever i update the interface table with Price and Supplier detials after Min/Max then the Req.Import should not consider the Sourcing rules, it should create requisiton based on the values (Price and Supplier)provided at interface tanle.
    Quick reponse would helpful us to move further on this,
    Thanks in advance,
    Devaraj.K

  • APEX and 11.5.10 Payables Open Interface Tables

    Hi,
    Wanted to see if APEX would be a tool that could be used to connect to oracle application interface tables and load data from a spread sheet into the ap_invoices_interface and ap_invoice_lines_interface tables. Once this is done the information could be interfaced into the application.
    Has anyone done this?
    Thanks in advance for any responses.

    Scott,
    Do you have experience in how to populate Oracle eBusiness Suite Open Interface tables with Excel-data using a APEX form/report/process?
    If so, can you give me a clue how to do it? Uploading CSV will not work, because of treating text-fields as numbers. Our item numbers look like numbers, but must be handled as text. Example: 002.112.002
    Regards,
    Geert.

  • Draft Project invoice stuck on AR interface

    Please I have a draft project invoice that is stuck on AR interface line with the error:
    "When the payment method is of type Automatic, you must either supply a valid bank account or ensure that a primary bank account for the currency code of the transaction has been set up for the Bill To customer"
    Invalid value:1017.
    We have disabled the Payment method and even unlinked the payment method and Bank Account from the customer, just to test, but the auto invoice did not push it through.
    Project draft status says: transferred to Receivable.
    Any suggestion will be appreciated
    Regards
    Ify

    Hi ALL,
    This error appears in the AR interface
    "When the payment method is of type Automatic, you must either supply a valid bank account or ensure that a primary bank account for the currency code of the transaction has been set up for the Bill To customer"
    Invalid value:1017.
    Can someone please let me know how to locate the invalid value from the interface field list. I checked Orginal system bill and and Original system ship customer ID / ref, but none of those gave me the invalid value ref in the interface error ..
    Thanks

  • Editable table with multiple rows

    Hi All!
    We're trying to develop some application in VC 7.0. That application should read data from some R/3 tables (via standard and custom functional modules), then display data to user and allow him/her to modify it (or add some data into table rows), and then save it back to R/3.
    What is the best way to do that?
    There's no problem with displaying data.
    But when I try to add something to table (on portal interface), I'm able to use only first row of the table... Even if I fill all fields of that row, I'm not able to add data to second row, etc.
    Second question. Is it possible to display in one table contents of output of several BAPIs? For example we have three bapis, one displaying user, second displays that user's subordinates, and the third one - that user's manager. And we want one resulting table...
    And last. What is the best way to submit data from table view in VC (portal) to R/3 table? I understand that we should write some functional module, that puts data to R/3. I'm asking about what should be done in VC itself. Some button, or action...
    Any help will be appreciated and rewarded :o)
    Regards,
    DK

    Here are some former postings:
    Editable table with multiple rows
    and
    Editable table with multiple rows
    Are you on the right SP-level?
    Can you also split up your posting: one question, one posting? This way you get faster answers, as people might just browse the headers.

  • Use of internal table with hearerline in ABAP OO

    Hi,
    I have a very basic question regarding the use of Internal table with headerline in ABAP OO.
    I consider the concept of Internal table with header as one of the most features of ABAP, which is not there in any of the other porgramming languages.
    I accept that OO's concept is one of the most powerful and a very good concept. We should also implement OO's concept in ABAP.
    But my concern is why in the process of moving to OO's the concept of Internal table with headerline is no more used.
    Can any one tell me the main reason for this. Is there any technical reason for this. By this i mean anything to do with memory or effeciency.
    Thanx,
    Srinivas

    Hi Srinivas,
       here is something more which i found about the same
    follow this link
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    and search for header line.
    it says:
    Tables with header lines not allowed
    Only tables without header lines can be declared in ABAP Objects.
    Error message in ABAP Objects if the following syntax is used:
    DATA itab TYPE LIKE TABLE OF ... WITH HEADER LINE.
    Correct syntax:
    DATA: itab TYPE LIKE TABLE OF ... ,
    wa LIKE LINE OF itab.
    Reason:
    It depends on the statement whether the body or header line of a table is accessed. The table name should identify the table uniquely. Programs are easier to read. Tables with header lines do not improve performance.
    i hope this will help you.
    regards,
    Kinshuk
    PS mark helpful answers

  • Migrating CMP EJB mapped to SQL Server table with identity column from WL

    Hi,
        I want to migrate an application from Weblogic to SAP Netweaver 2004s (7.0). We had successfully migrated this application to an earlier version of Netweaver. I have a number of CMP EJBs which are mapped to SQL Server tables with the PK as identity columns(autogenerated by SQL Server). I am having difficulty mapping the same in persistant.xml. This scenario works perfectly well in Weblogic and worked by using ejb-pk in an earlier version of Netweaver.
       Please let me know how to proceed.
    -Sekhar

    I suspect it is the security as specified in the message. E.g .your DBA set the ID columns so no user can override values in it.
    And I suggest you 1st put the data into a staging table, then push it to the destination, this does not resolve the issue, but ensures better processing.
    Arthur
    MyBlog
    Twitter

  • How to delete/cancel files stuck in To Be Delivered (TBDL) status

    hi all,
    i just want to ask how to delete or cancel files that are stucked in To Be Delivered (TBDL) status in RWB? i have cleared both SMQ1 and SMQ2 and even performed a full system restart, but the files are still there. can anyone please shed some light with this issue? it will be deeply appreciated. thanks!
    Edited by: dwinXG on Jun 9, 2010 5:36 AM

    Hi,
         Normnally Message status goes to ToBeDelivered if there are no more queues available for that particular adapter queue..
    so here first you need to check the messages which are in DLNG status and the logs/reasons behind them...
    Normally you cannot delete the messages in ToBeDelivered...but give a try going to RWB and filter the messages with TBD..
    and try ot delete there...
    But I prefer for the rootcause causing the messages to be delivered as the reasons can be target system might be down..or restarted which made the particular adapter queue hung..so chk it out..
    HTH
    Rajesh

  • Mail stuck in wf_notification_out with status = ready

    Hi All,
    Please help on workflow mailer .
    EBS R12 12.1.3 DB:11GR2 OS: OUL5X64
    when sending a test mail and verify with this script below , i could see the message was in wf_notification_out table with status READY
    BUT IT JUST SAT THERE AND NEVER GOES ANYWHERE.
    SELECT n.begin_date,
    n.status,
    n.mail_status,
    n.recipient_role,
    de.def_enq_time,
    de.def_deq_time,
    de.def_state,
    ou.out_enq_time,
    ou.out_deq_time,
    ou.out_state
    FROM applsys.wf_notifications n,
    (SELECT d.enq_time def_enq_time,
    d.deq_time def_deq_time,
    TO_NUMBER((SELECT VALUE
    FROM TABLE(d.user_data.parameter_list)
    WHERE NAME = 'NOTIFICATION_ID')) d_notification_id,
    msg_state def_state
    FROM applsys.aq$wf_deferred d
    WHERE d.corr_id = 'APPS:oracle.apps.wf.notification.send') de,
    (SELECT o.deq_time out_deq_time,
    o.enq_time out_enq_time,
    TO_NUMBER((SELECT str_value
    FROM TABLE(o.user_data.header.properties)
    WHERE NAME = 'NOTIFICATION_ID')) o_notification_id,
    msg_state out_state
    FROM applsys.aq$wf_notification_out o) ou
    WHERE n.notification_id = &NOTIFICATION_ID
    AND n.notification_id = de.d_notification_id(+)
    AND n.notification_id = ou.o_notification_id(+);
    Here was the result.
    BEGIN_DATE STATUS MAIL_STATUS RECIPIENT_ROLE DEF_ENQ_T DEF_DEQ_T DEF_STATE OUT_END_TIME OUT_DEQ_TIME OUT_STATE
    11-JUN-12     OPEN      MAIL     TEST.USER      11-JUN-12     11-JUN-12     PROCESSED     11-JUN-12          READY
    Please advise it i miss anything. This was working before.
    Thanks in advance.

    Please advise it i miss anything. This was working before.Can you find any errors in the Database and Workflow log files?
    Troubleshooting Workflow Java Notification Mailer - Technical Reference [ID 1191125.1]
    A Guide For Troubleshooting Workflow Notification Emails - Inbound and Outbound [ID 831982.1]
    How To Troubleshoot Java-based Workflow Notification Mailer [ID 242941.1]
    Troubleshooting Inbound & Outbound Email Notifications [ID 1184846.1]
    OWF H Diagnostics, Solutions and Information [ID 332152.1]
    Oracle Workflow Release 12 Diagnostics [ID 469822.1]
    Thanks,
    Hussein

Maybe you are looking for

  • How can I view a wmv attachment

    I get many emails with wmv attachment. How can I view them? Is there an Ipad App that solves this? Thanks Marc

  • Horizontal Scrolling

    Hey guys, I'm trying to make a section of my web page scroll horizontally. I have found several working examples of this but they all make the entire <body> tag scrollable. I want just the blue outlined section in the following image to scroll and fo

  • PSE 6 program and apps won't open.

    PSE 6 program won't open from the start menu or Windows Explorer and the editor and organizer apps won't open from Windows Explorer. All the files are listed in WE and not empty. This happened recently after I have used the program a few years. Do I

  • IPad doesn't see TV shows

    My iPad doesn't see TV shows that I've downloaded to it even though they show up as taking up 6.35 GB of video memory on the "Capacity" screen (bottom graph) which is what they equal in iTunes. I play them fine on my iTouch and iPods. I open the "iPo

  • Loading data at parent levels

    I have actuals data available at the day level but plan is available only at month level. Month is level 1, and I'm thinking about loading plan to this level. Are there any problems with doing this? What are the things I need to be careful about? I w