Help for Receiving Transaction Processor (RTP)

Hi All,
Before running the RTP, we are not populating the po_unit_price in rcv_transactions_interface table. As per our understanding, it should pick up the value from PO created for this price.
But after running the RTP, we are able to see that the cost is 0 and Purchase Price Variance (PPV) account is getting hit with the values, whereas it should be Receiving Inspection account which should get hit.
Can someone please help us with this issue as what can be the cause as PPV is getting affected?
Any pointers will be highly appreciated.
Thanks,
Amit

Let me know the output the this query..
SELECT a.rcv_transaction_id, transaction_type, accounting_line_type,
concatenated_segments, accounted_cr, accounted_dr
FROM rcv_receiving_sub_ledger a,
gl_code_combinations_kfv b,
rcv_transactions c
WHERE a.code_combination_id = b.code_combination_id
AND a.rcv_transaction_id = c.transaction_id
AND a.rcv_transaction_id =(select transaction_id from rcv_transactions
where po_line_id=&po_line_Id
and transaction_type='RECEIVE') --564302
UNION
SELECT c.rcv_transaction_id, transaction_type,
d.meaning accounting_line_type, concatenated_segments,
DECODE (SIGN (base_transaction_value),
-1, base_transaction_value
) accounted_cr,
DECODE (SIGN (base_transaction_value),
1, base_transaction_value
) accounted_dr
FROM mtl_transaction_accounts a,
gl_code_combinations_kfv b,
mtl_material_transactions c,
mfg_lookups d,
rcv_transactions e
WHERE a.reference_account = b.code_combination_id
AND a.transaction_id = c.transaction_id
AND c.rcv_transaction_id =(select transaction_id from rcv_transactions
where po_line_id=&po_line_Id
and transaction_type='DELIVER') -- 564303
AND a.accounting_line_type = d.lookup_code
AND d.lookup_type = 'CST_ACCOUNTING_LINE_TYPE'
AND c.rcv_transaction_id = e.transaction_id
ORDER BY rcv_transaction_id;
Thanks
Nagamohan

Similar Messages

  • RCV_TP_INVALID_DEST_TYPE for Receiving Transaction Processor (Receiving Transaction P

    RCV_TP_INVALID_DEST_TYPE for Receiving Transaction Processor (Receiving Transaction Processor)
    Hi
    I have a receipt_num 1234 that has 14 lines in it ( from 29-46) and the po_number is 454545.
    When I load the receipt with the receiving trans process a recipt get created for all lines except for 1.
    This particular line which is 46 is still in the rcv_transactions_interface table as an error, when Update this table and SET processing_status_code = 'PENDING',
    transaction_status_code = 'PENDING' and rerun the program it's does not load the data and it complete with a warning and when I look at the po_interface_errors I see this(RCV_TP_INVALID_DEST_TYPE). and put the processing_status_code = 'COMPLETED'and transaction_status_code = 'ERROR'.
    Please help please help
    null

    RCV_HEADERS_INTERFACE
    RCV_TRANSACTIONS_INTERFACE
    If you have serial numbers or lot numbers for the receipts, then you need to insert into
    RCV_SERIALS_INTERFACE
    RCV_LOTS_INTERFACE
    Once the transactions are processed, you will see records in
    RCV_SHIPMENT_HEADERS
    RCV_SHIPMENT_LINES
    For details on the interface, check irep.oracle.com
    See Import PO Receipts using custom conversion. for some scripts.
    And see http://www.oracleug.com/tables/purchasing/rcvheadersinterface and http://www.oracleug.com/tables/purchasing/rcvtrnsactionsinterface for details on the tables.
    Hope this answers your question,
    Sandeep Gandhi

  • Need help in  Receiving Transaction Processor  concurrent in Oracle Apps

    Hi every one,
    Please give me idea about Receiving Transaction Processor concurrent in oracle application.
    I am inserting values in following table like:
    **rcv_transactions_interface**
    **rcv_headers_interface**
    **MTL_TRANSACTION_LOTS_INTERFACE**
    RCV_LOTS_INTERFACE
    for getting DELIVER/ RECEIVE in a single submit..
    but the problem is RECEIVE will happening as GOOD. but DELIVER process not happening... please help me...
    i am using following QUERIES to insert,
    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_UPDATED_BY,
              LAST_UPDATE_LOGIN,
              CREATION_DATE,
              CREATED_BY,
              SHIPMENT_NUM,
              FROM_ORGANIZATION_ID,
              SHIP_TO_ORGANIZATION_ID,
              EXPECTED_RECEIPT_DATE,
              SHIPPED_DATE,
         -- PACKING_SLIP,
         --     INVOICE_NUM,
         --     PAYMENT_TERMS_ID,
              EMPLOYEE_ID,
         --     COMMENTS,
         --     ATTRIBUTE1,
         --     ATTRIBUTE3,
         --     ATTRIBUTE10,
         --     ATTRIBUTE12,
              VALIDATION_FLAG)
    VALUES
         l_headers_interface,                               -- INTERFACE_TRANSACTION_ID
         rcv_interface_groups_s.nextval, GROUP_ID  - rcv_interface_groups_s.nextval,
         'PENDING',                                                        --PROCESSING_STATUS_CODE
    'INTERNAL ORDER',                                    --RECEIPT_SOURCE_CODE
         'NEW',                                                                  --TRANSACTION_TYPE
    'DELIVER',                                                        --AUTO_TRANSACT_CODE
         SYSDATE,                                                             --LAST_UPDATE_DATE
         l_user_id,                                                        --LAST_UPDATED_BY
         l_login_id,                                                   --LAST_UPDATE_LOGIN
         SYSDATE,                                                             --CREATION_DATE
         l_user_id,                                                        --CREATED_BY
         d.SHIPMENT_NUM,                                         --SHIPMENT_NUM
         d.from_organization_id,
         d.TO_ORGANIZATION_ID,                          --TO_ORGANIZATION_ID
         SYSDATE+1,                                                        --EXPECTED_RECEIPT_DATE,
         SYSDATE,                                                             --SHIPPED_DATE
         d.employee_id,                                              --EMPLOYEE_ID
         'Y'                                                                           --VALIDATION_FLAG
    --Insert values into RCV_TRANSACTION_INTERFACETABLE
    commit;
    INSERT INTO RCV_TRANSACTIONS_INTERFACE
              (INTERFACE_TRANSACTION_ID,
              GROUP_ID,
              LAST_UPDATE_DATE,
              LAST_UPDATED_BY,
              CREATION_DATE,
              CREATED_BY,
              LAST_UPDATE_LOGIN,
         TRANSACTION_TYPE,
              TRANSACTION_DATE,
              PROCESSING_STATUS_CODE,
              PROCESSING_MODE_CODE,
              TRANSACTION_STATUS_CODE,
              QUANTITY,
              UNIT_OF_MEASURE,
              INTERFACE_SOURCE_CODE,
              ITEM_ID,
              EMPLOYEE_ID,
              AUTO_TRANSACT_CODE,
              SHIPMENT_HEADER_ID,
              SHIPMENT_LINE_ID,
              SHIP_TO_LOCATION_ID,
              RECEIPT_SOURCE_CODE,
         FROM_ORGANIZATION_ID,
              TO_ORGANIZATION_ID,
              SOURCE_DOCUMENT_CODE,
              REQUISITION_LINE_ID,
              REQ_DISTRIBUTION_ID,
              DESTINATION_TYPE_CODE,
              DELIVER_TO_PERSON_ID,
         LOCATION_ID,
              DELIVER_TO_LOCATION_ID,
              SUBINVENTORY,
              SHIPMENT_NUM,
              EXPECTED_RECEIPT_DATE,
    --     SHIPMENT_LINE_STATUS_CODE,
              SHIPPED_DATE,
              HEADER_INTERFACE_ID,
         --     COMMENTS,
         --     OE_ORDER_HEADER_ID,
         --     OE_ORDER_LINE_ID,
         --     ATTRIBUTE1,
    --          ATTRIBUTE3,
         --     ATTRIBUTE10,
         --     ATTRIBUTE12,
              VALIDATION_FLAG
    VALUES
              (l_trans_id,                                                   -- INTERFACE_TRANSACTION_ID
         rcv_interface_groups_s.currval, --GROUP_ID   rcv_interface_groups_s.curval
              SYSDATE,                                                             --LAST_UPDATE_DATE
              l_user_id,                                                        --LAST_UPDATED_BY
              SYSDATE,                                                             --CREATION_DATE
              l_user_id,                                                        --CREATED_BY
              l_login_id,                                                   --LAST_UPDATE_LOGIN
         'RECEIVE',                                                        --TRANSACTION_TYPE
              SYSDATE,                                                             --TRANSACTION_DATE
              'PENDING',                                                       --PROCESSING_STATUS_CODE
         'BATCH',                                                             --PROCESSING_MODE_CODE
              'PENDING',                                                        --TRANSACTION_STATUS_CODE
              d.QTY,                                                                  --QUANTITY
              d.UNIT_OF_MEASURE,                                   --'Metric Ton', --UNIT_OF_MEASURE
              'ORDER ENTRY',--'RCV',                                                                 --INTERFACE_SOURCE_CODE
              d.item_id ,                                                   --ITEM_ID
              d.employee_id,                                              --EMPLOYEE_ID
              'DELIVER',                                                        --AUTO_TRANSACT_CODE
         d.shipment_header_id,                          --SHIPMENT_HEADER_ID
              d.SHIPMENT_LINE_ID,                               --SHIPMENT_LINE_ID
              d.SHIP_TO_LOCATION_ID,                          --SHIP_TO_LOCATION_ID
              'INTERNAL ORDER',                                    --RECEIPT_SOURCE_CODE
              d.from_organization_id,
              d.TO_ORGANIZATION_ID,                     --TO_ORGANIZATION_ID
              'REQ',                                                             --SOURCE_DOCUMENT_CODE
              d.REQUISITION_LINE_ID,                     --REQUISITION_LINE_ID
              d.REQ_DISTRIBUTION_ID,                     --REQ_DISTRIBUTION_ID
              'INVENTORY',                                              --DESTINATION_TYPE_CODE
              d.DELIVER_TO_PERSON_ID,                --DELIVER_TO_PERSON_ID
    d.location_id,                                         --LOCATION_ID
              d.DELIVER_TO_LOCATION_ID,           --DELIVER_TO_LOCATION_ID
              d.SUBINVENTORY,                                    --SUBINVENTORY
              d.SHIPMENT_NUM,                                    --SHIPMENT_NUM
         SYSDATE+1,                                                   --EXPECTED_RECEIPT_DATE,
         --     'FULLY RECEIVED',                              --SHIPMENT_LINE_STATUS_CODE
              SYSDATE,                                                        --SHIPPED_DATE
              l_headers_interface,                          --HEADER_INTERFACE_ID
              'Y'                                                                  --VALIDATION_FLAG
    commit;
         INSERT INTO RCV_LOTS_INTERFACE
                                                 (INTERFACE_TRANSACTION_ID
                                                 ,LAST_UPDATE_DATE
                                                 ,LAST_UPDATED_BY
                                                 ,CREATION_DATE
                                                 ,CREATED_BY
                                                 ,LOT_NUM
                                                 ,SUBLOT_NUM
                                                 ,SHIPMENT_LINE_ID
                                                 ,QUANTITY
                                                 ,TRANSACTION_DATE
                                                 ,PRIMARY_QUANTITY
                                                 ,ITEM_ID
                                                 ,LAST_UPDATE_LOGIN
                                                 VALUES
                                                 (l_trans_id,
                                                 SYSDATE,                                                             --LAST_UPDATE_DATE
                                                 l_user_id,                                                        --LAST_UPDATED_BY
                                                 SYSDATE,                                                             --CREATION_DATE
                                                 l_user_id,
                                                 d.lot_number,
                                                 D.SUBLOT_NUMBER,
                                                 D.SHIPMENT_LINE_ID,
                                                 d.QTY,
                                                 SYSDATE,
                                                 d.TO_ORG_PRIMARY_QUANTITY,
                                                 d.item_id,
                                                 l_login_id
    commit;
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE (
    TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    SUBLOT_NUM,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID) --link to rcv_transactions_interface
    VALUES
    (l_mtl_trans,
    SYSDATE, --LAST_UPDATE_DATE
    l_user_id, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    l_user_id, --CREATED_BY
    l_login_id,--LAST_UPDATE_LOGIN
    d.lot_number,--'lt2002',
    d.SUBLOT_NUMBER,
    d.QTY,
    d.TO_ORG_PRIMARY_QUANTITY,
    'RCV',
    l_trans_id);
    commit;

    Hi helios,
    Thanks for your Immediate response.
    My Problem is When i submitting concurrent. It Updating as FULLY RECEIVED status the RCV_SHIPMENT_HEADERS, and RCV_SHIPMENT_LINES tables.
    But It not put one Entry as DELIVERED in RCV_SHIPMENT_LINES table ,so that not updating INVONTRY TABLES.
    Please share me some ideas...
    Thanks,
    Lingesan...
    Edited by: user9031196 on Jul 8, 2011 1:46 AM

  • Interface and  Base tables for Receiving Transaction Processor Program

    Hi Everyone,
    My requirement is to move data from staging table to rcv interface tables and then run Receiving transaction processor program. How will in know what interface tables i need to insert data into? and after I run the concurrent program what are the base tables that i need to check to confirm?
    Please help!
    Thanks
    Sunny

    RCV_HEADERS_INTERFACE
    RCV_TRANSACTIONS_INTERFACE
    If you have serial numbers or lot numbers for the receipts, then you need to insert into
    RCV_SERIALS_INTERFACE
    RCV_LOTS_INTERFACE
    Once the transactions are processed, you will see records in
    RCV_SHIPMENT_HEADERS
    RCV_SHIPMENT_LINES
    For details on the interface, check irep.oracle.com
    See Import PO Receipts using custom conversion. for some scripts.
    And see http://www.oracleug.com/tables/purchasing/rcvheadersinterface and http://www.oracleug.com/tables/purchasing/rcvtrnsactionsinterface for details on the tables.
    Hope this answers your question,
    Sandeep Gandhi

  • Specific doc for Receiving Transaction Processor

    Hi,
    Can someone please provide me a link for the technical details involved in Receiving Transaction Processor?
    Thanks,
    Amit

    http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/po/qthrep09.htm

  • Please help on if anyone run the receiving transaction processor in online/immediate mode

    Hi All,
    Can anybody pl let me know how to run the receiving trx processor in online/immediate mode??
    Regards
    Harry !!

    Hi Harry,
    System Profile "RCV: Processing Mode" decides the processing mode for receiving transactions, it can be either in "Batch", "Immediate" or "On-line" modes. It is reflected in RCV_TRANSACTIONS_INTERFACE.PROCESSING_MODE_CODE field.
    Please refer:
    https://forums.oracle.com/thread/2513499
    Also have a look at:
    Forum Search: Receiving Transaction Processor
    Best Regards,

  • Getting error while running Receiving Transaction Processor

    Hi all,i am getting an error in po_interface_errors after running Receiving Transaction Processor concurrent program
    INTERFACE_TYPE       COLUMN_NAME                           ERROR_MESSAGE                     
    RCV-856                  INTERFACE_TRANSACTION_ID      RCV_TP_INVALID_TRX_TYPE     
    TABLE_NAME
    RCV_TRANSACTIONS_INTERFACEI am trying to do an Inter Org transfer and i put the transaction_type as 'RECEIVE' .Can someone kindly suggest what should be the transaction_type for an Inter Org Transfer in rcv_transactions_interface table.Any help is appreciated
    Thanks in advance!!

    HI,
    We are getting the transaction_type error eventhough the transaction_type is a valid.
    Please advise.
    Regards
    MV

  • Urgent Please - Receiving Transaction Processor Issue

    Hi,
    We are on 11.5.10. I am trying to create PO receipts using the interface program "Receiving Transaction Processor". I inserted data into the rcv_headers_interface and rcv_transactions_interface tables. As this dta is for contract labor, i am assuming that there is no need to insert data into shipment_related interface table. Following shows the insert statement I made sure that I am running the process from the correct org (the org that i used in the filed destination_oprganization field). But still the process completes normally but po_interface_errors has a record with error message as :
    "RVTSH-189: Subroutine rvtshiline() returned error
    Cause: Subroutine rvtshiline() returned an internal error.
    Action: Note this error number and the actions you are trying to perform.
    Contact your system administrator for"
    The receipt gets created succesfully from the form. Anyone knows the issue? Please help me...thanks
    Here are the insert statements...
    --Insert data into Interface tables
    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_updated_by,
    creation_date,
    created_by,
    expected_receipt_date,
    comments,
    validation_flag,
    packing_slip,
    vendor_id,
    vendor_site_id,
    ship_to_organization_id
    VALUES (rcv_headers_interface_s.NEXTVAL,
    rcv_interface_groups_s.NEXTVAL,
    'PENDING',
    'VENDOR',
    'NEW',
    'RECEIVE',
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    'test',
    'Y',
    'ABC',
    po_headers.vendor_id,
    po_headers.vendor_site_id
    po_distributions.destination_organization_id
    --Insert record in transactions_interface
    INSERT INTO rcv_transactions_interface
    (interface_transaction_id,
    header_interface_id,
    processing_status_code,
    receipt_source_code,
    transaction_date,
    GROUP_ID,
    last_update_date,
    last_updated_by,
    creation_date,
    created_by,
    transaction_type,
    processing_mode_code,
    transaction_status_code,
    quantity,
    unit_of_measure,
    source_document_code,
    po_header_id,
    po_line_id,
    po_line_location_id,
    po_distribution_id,
    to_organization_id,
    comments,
    interface_source_code,
    employee_id,
    auto_transact_code,
    destination_type_code,
    attribute_category,
    category_id,
    item_description
    VALUES (rcv_transactions_interface_s.NEXTVAL,
    rcv_headers_interface_s.CURRVAL,
    'PENDING',
    'VENDOR',
    SYSDATE,
    rcv_interface_groups_s.CURRVAL,
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    fnd_global.user_id,
    'RECEIVE', --'NEW',
    'BATCH',
    'PENDING',
    2,
    po_lines.unit_meas_lookup_code,
    'PO',
    po_headers..po_header_id,
    po_lines.po_line_id,
    po_line_locations.po_line_location_id,
    po_distributions.po_distribution_id,
    po_distributions.destination_organization_id,
    'TEST',
    'RCV',
    1234, --employee_id
    'RECEIVE',
    'RECEIVING',
    po_distributions.destination_organization_id,
    45074,
    'Standard'
    );

    Pl see you duplicate post here - PO Receipts Interface Error!!
    For urgent issues, pl open an SR with Support
    Srini

  • Error in Receiving Transaction Processor concurrent program

    Hi all,i am trying to insert data into rcv_headers_interface and rcv_transactions_interface.So,for this data to get populated in rcv_shipment_headers and rcv_shipment_lines i am running Receiving Transaction Processor concurrent program in purchasing super user.But,this concurrent program gives below error
    +---------------------------------------------------------------------------+
    Purchasing: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RVCTP module: Receiving Transaction Processor
    +---------------------------------------------------------------------------+
    Current system time is 14-OCT-2011 06:11:05
    +---------------------------------------------------------------------------+
    Concurrent program RVCTP returned error
    Cause:        RVCTP encountered an internal error.  Parameters: RVCTP,BATCH,,81,
    Action:        Note both this error number and the actions you are trying to perform. Contact your system administr
    RVTBM-007: Subroutine rvtbm_batch_mngr() returned error
    Cause:        Subroutine rvtbm_batch_mngr() returned an internal error. 
    Action:        Note this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-040: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APP
    Cause:        A SQL error has occurred in RVTBM.  The SQL error is &LSQL_ERR.
    Action:        Take note of both this error number and the actions you were t
    Concurrent Manager encountered an error while attempting to start your immediate concurrent program RVCTP. Routine &ROUTINE received a return code of failure.
    Contact your support representative.
    +---------------------------------------------------------------------------+
    Current system time is 14-OCT-2011 06:11:10
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    0
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    {code}
    Can someone kindly explain me what's really going why coz i am new to this Applications.
    Thanks in advance!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    There are several notes on metalink for "RVTBM-007: Subroutine rvtbm_batch_mngr() returned error".
    Take a look at those.
    Also if you are using dual uoms, make sure that setup and conversion is setup correctly.
    Hope this helps,
    Sandeep Gandhi

  • Urgent Please - Receiving Transaction Processor

    Hi,
    We are on 11.5.10. I am trying to create PO receipts using the interface program "Receiving Transaction Processor". I inserted data into the rcv_headers_interface and rcv_transactions_interface tables. As this dta is for contract labor, i am assuming that there is no need to insert data into shipment_related interface table. Following shows the insert statement I made sure that I am running the process from the correct org (the org that i used in the filed destination_oprganization field). But still the process completes normally but po_interface_errors has a record with error message as :
    "RVTSH-189: Subroutine rvtshiline() returned error
    Cause: Subroutine rvtshiline() returned an internal error.
    Action: Note this error number and the actions you are trying to perform.
    Contact your system administrator for"
    The receipt gets created succesfully from the form. Anyone knows the issue? Please help me...thanks
    Here are the insert statements...
    --Insert data into Interface tables
    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_updated_by,
    creation_date,
    created_by,
    expected_receipt_date,
    comments,
    validation_flag,
    packing_slip,
    vendor_id,
    vendor_site_id,
    ship_to_organization_id
    VALUES (rcv_headers_interface_s.NEXTVAL,
    rcv_interface_groups_s.NEXTVAL,
    'PENDING',
    'VENDOR',
    'NEW',
    'RECEIVE',
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    'test',
    'Y',
    'ABC',
    po_headers.vendor_id,
    po_headers.vendor_site_id
    po_distributions.destination_organization_id
    --Insert record in transactions_interface
    INSERT INTO rcv_transactions_interface
    (interface_transaction_id,
    header_interface_id,
    processing_status_code,
    receipt_source_code,
    transaction_date,
    GROUP_ID,
    last_update_date,
    last_updated_by,
    creation_date,
    created_by,
    transaction_type,
    processing_mode_code,
    transaction_status_code,
    quantity,
    unit_of_measure,
    source_document_code,
    po_header_id,
    po_line_id,
    po_line_location_id,
    po_distribution_id,
    to_organization_id,
    comments,
    interface_source_code,
    employee_id,
    auto_transact_code,
    destination_type_code,
    attribute_category,
    category_id,
    item_description
    VALUES (rcv_transactions_interface_s.NEXTVAL,
    rcv_headers_interface_s.CURRVAL,
    'PENDING',
    'VENDOR',
    SYSDATE,
    rcv_interface_groups_s.CURRVAL,
    SYSDATE,
    fnd_global.user_id,
    SYSDATE,
    fnd_global.user_id,
    'RECEIVE', --'NEW',
    'BATCH',
    'PENDING',
    2,
    po_lines.unit_meas_lookup_code,
    'PO',
    po_headers..po_header_id,
    po_lines.po_line_id,
    po_line_locations.po_line_location_id,
    po_distributions.po_distribution_id,
    po_distributions.destination_organization_id,
    'TEST',
    'RCV',
    1234, --employee_id
    'RECEIVE',
    'RECEIVING',
    po_distributions.destination_organization_id,
    45074,
    'Standard'
    );

    Pl see your triplicate post here - PO Receipts Interface Error!!
    For urgent issues, pl open an SR with Support.
    Srini

  • Validations done by Receiving transaction processor

    I'm writing a custom program to receive an EDI 856(ASN) file and populating the data in the rcv interface tables for the Receiving transaction processor to run and create receipts for PO receiving.
    Before populating the data from the file into rcv interface tables, I would like to do the same validations which the RCVTP would do.
    Is there an API which can be used to do these validations?
    Does someone have the list of validations that can be performed so that RCVTP doesn't fail in validations later?
    Or is there a document which gives the list of all possible errors that can be found in po_interface_errors table.
    We are on 11.5.10.2
    Please help.
    Thanks
    Sandeep

    Hi,
    Please review the following docs and see if it helps you :
    How To Diagnose An Issue in ROI Receiving Open Interface in 11.5.10 / R12 PO / IOT / Req / RMA (Doc ID 564723.1)
    FAQ: Purchasing Documents Open Interface (Doc ID 224031.1)
    Thanks &
    Best Regards,

  • RVCTP module: Receiving Transaction Processor

    Hi,
    I am doing receipt using by passing ASN no as input parameter, not picking the records from interface tables.
    when i checked in rcv_transactions_interface table proceeing_status_code is "RUNNING" , "PENDING" .
    when i run the Receiving Transaction Processor got below error.
    i changed profile option as "BATCH", still getting same error
    please help to solve this
    Purchasing: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RVCTP module: Receiving Transaction Processor
    Current system time is 16-NOV-2010 13:05:39
    Concurrent program RVCTP returned error
    Cause: RVCTP encountered an internal error. Parameters: RVCTP,BATCH,122227,
    Action: Note both this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-007: Subroutine rvtbm_batch_mngr() returned error
    Cause: Subroutine rvtbm_batch_mngr() returned an internal error.
    Action: Note this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-080: Subroutine rvtptcontrol() returned error
    Cause: Subroutine rvtptcontrol() returned an internal error.
    Action: Note this error number and the actions you are trying to perform. Contact your system administrator
    RVTLO-005: ORA-01403: no data found
    Cause: A SQL error has occurred in RVTLO. The SQL error is &LSQL_ERR.
    Action: Take note of both this error number and the actions you were t
    Concurrent Manager encountered an error while attempting to start your immediate concurrent program RVCTP. Routine &ROUTINE received a return code of failure.
    Contact your support representative.
    Current system time is 16-NOV-2010 13:05:40
    Executing request completion options...

    Hi Sandeep,
    thanks for your reply,
    i am inserting the records using below script.
    INSERT INTO RCV_HEADERS_INTERFACE
    HEADER_INTERFACE_ID
              ,GROUP_ID
              ,PROCESSING_STATUS_CODE
              ,RECEIPT_SOURCE_CODE
    ,TRANSACTION_TYPE
    -- ,RECEIPT_HEADER_ID
              ,LAST_UPDATE_DATE
              ,LAST_UPDATED_BY
              ,LAST_UPDATE_LOGIN
              ,CREATION_DATE
              ,CREATED_BY
              ,VENDOR_ID
    ,VENDOR_SITE_ID
              ,VALIDATION_FLAG
              ,ATTRIBUTE12
              -- ,SHIPMENT_NUM
              ,EMPLOYEE_ID
              ,BILL_OF_LADING
              ,PACKING_SLIP
              ,NUM_OF_CONTAINERS
              ,GROSS_WEIGHT
              ,GROSS_WEIGHT_UOM_CODE
              ,WAYBILL_AIRBILL_NUM
              ,COMMENTS
              ,FREIGHT_TERMS
              ,INVOICE_NUM
              ,INVOICE_DATE
              ,ATTRIBUTE1
              ,ATTRIBUTE2
              ,ATTRIBUTE3
              ,ATTRIBUTE4
              ,ATTRIBUTE6
              ,ATTRIBUTE7
              ,ATTRIBUTE8
              ,ATTRIBUTE9
              ,ATTRIBUTE10
              ,ATTRIBUTE11
    ,SHIPPED_DATE
    ,EXPECTED_RECEIPT_DATE
    -- ,RECEIPT_NUM
         VALUES(l_header_interface_id
         ,l_group_id
              ,'BATCH' --'PENDING'
              ,'VENDOR'
              ,'NEW' --'RECEIVE'
    -- ,H.SHIPMENT_HEADER_ID
              ,sysdate
              ,l_user_id
              ,l_login_id
    ,H.CREATION_DATE
    ,H.CREATED_BY
              ,H.VENDOR_ID
    ,H.VENDOR_SITE_ID
              ,'Y'
              ,H.ATTRIBUTE12
              -- ,l_sil_number
              ,H.EMPLOYEE_ID
              ,H.BILL_OF_LADING
              ,H.PACKING_SLIP
              ,H.NUM_OF_CONTAINERS
              ,H.GROSS_WEIGHT
              ,H.GROSS_WEIGHT_UOM_CODE
              ,H.WAYBILL_AIRBILL_NUM
              ,H.COMMENTS
              ,H.FREIGHT_TERMS
              ,H.INVOICE_NUM
              ,H.INVOICE_DATE
              ,H.ATTRIBUTE1
              ,H.ATTRIBUTE2
              ,H.ATTRIBUTE3
              ,H.ATTRIBUTE4
              ,H.ATTRIBUTE6
              ,H.ATTRIBUTE7
              ,H.ATTRIBUTE8
              ,H.ATTRIBUTE9
              ,H.ATTRIBUTE10
              ,H.ATTRIBUTE11
    ,H.SHIPPED_DATE
    ,sysdate
    -- ,11111111
    INSERT INTO RCV_TRANSACTIONS_INTERFACE
    INTERFACE_TRANSACTION_ID
    ,GROUP_ID
    ,LAST_UPDATE_DATE
    ,LAST_UPDATED_BY
    ,CREATION_DATE
    ,CREATED_BY
    ,LAST_UPDATE_LOGIN
    ,TRANSACTION_TYPE
    ,TRANSACTION_DATE
    ,PROCESSING_STATUS_CODE
    ,PROCESSING_MODE_CODE
    ,TRANSACTION_STATUS_CODE
    ,QUANTITY
    ,UNIT_OF_MEASURE
    ,ITEM_ID
    ,UOM_CODE
    ,INTERFACE_SOURCE_CODE
    ,SHIPMENT_HEADER_ID
    -- ,SHIPMENT_LINE_ID
    --,USER_ENTERED_FLAG
    ,SOURCE_DOCUMENT_CODE
    ,DESTINATION_TYPE_CODE
    ,PRIMARY_QUANTITY
    ,PRIMARY_UNIT_OF_MEASURE
    ,RECEIPT_SOURCE_CODE
    ,EMPLOYEE_ID
    ,PARENT_TRANSACTION_ID
    ,PO_HEADER_ID
    ,PO_RELEASE_ID
    ,PO_LINE_ID
    ,PO_LINE_LOCATION_ID
    ,PO_DISTRIBUTION_ID
    --,PO_REVISION_NUM
    ,PO_UNIT_PRICE
    ,CURRENCY_CODE
    ,CURRENCY_CONVERSION_TYPE
    ,CURRENCY_CONVERSION_RATE
    ,CURRENCY_CONVERSION_DATE
    ,VENDOR_ID
    ,VENDOR_SITE_ID
    ,TO_ORGANIZATION_ID
    ,LOCATOR_ID
    ,SHIP_TO_LOCATION_CODE
    -- ,AUTO_TRANSACT_CODE
    ,VALIDATION_FLAG
    VALUES
    l_transaction_id
    ,l_group_id
    ,sysdate
    ,l_user_id
    ,sysdate
    ,l_user_id
    ,l_login_id
    ,'RECEIVE'
    ,sysdate
    ,'PENDING'
    ,'BATCH'
    ,'PENDING'
    ,r.QUANTITY_SHIPPED
    ,r.UNIT_OF_MEASURE
    ,r.ITEM_ID
    ,l_uom_code--UOM_CODE
    ,'RCV'
    ,l_header_interface_id --r.SHIPMENT_HEADER_ID            
    -- ,r.SHIPMENT_LINE_ID
    -- ,'Y' --USER_ENTERED_FLAG  
    ,'PO' --SOURCE_DOCUMENT_CODE  
    ,'RECEIVING' -- DESTINATION_TYPE_CODE
    ,r.QUANTITY_SHIPPED --PRIMARY_QUANTITY              
    ,r.PRIMARY_UNIT_OF_MEASURE --PRIMARY_UNIT_OF_MEASURE   
    ,'VENDOR' -- RECEIPT_SOURCE_CODE -
    ,r.EMPLOYEE_ID --EMPLOYEE_ID                         
    ,-1 --PARENT_TRANSACTION_ID    -   
    ,r.PO_HEADER_ID
    ,r.PO_RELEASE_ID
    ,r.PO_LINE_ID
    ,r.PO_LINE_LOCATION_ID
    ,r.PO_DISTRIBUTION_ID
    --,r.PO_REVISION_NUM
    ,r.UNIT_PRICE --PO_UNIT_PRICE
    ,r.CURRENCY_CODE
    ,r.RATE_TYPE -- CURRENCY_CONVERSION_TYPE -
    ,r.RATE -- CURRENCY_CONVERSION_RATE
    ,r.RATE_DATE -- CURRENCY_CONVERSION_DATE
    ,r.VENDOR_ID
    ,r.VENDOR_SITE_ID
    ,r.TO_ORGANIZATION_ID --ORGANIZATION_ID
    ,41
    ,'GNE JEBEL ALI'
    -- ,'DELIVER'
    ,'Y'
    can you plz suggest if i am wrong

  • Receiving Transaction processor with Receipt Traveller Concurrent program

    Hi
    We have customized Receipt Traveller Concurrent program (Customized) to get rich Publiishing features using BI Publisher Reports technology.
    For some receipts we are getting blank page, on observation we noticed that When Receipt Traveller Concurrent program is complete earlier than Receiving
    Transaction processor then we are getting blank pages for receipt program, Where as if Receitp Traveller concurrent Program is getting completed after
    Receiving Transaction processor completion then we don't have issue of blank page.
    As a possible solution we have tried to make Receiving Transaction processor Incompatible to Receipt Traveller Concurrent program but still issue remains.
    Would like to know if any hint on fixing for this.
    Thanks
    Kamalakar.G

    Your Traveler program may need some data that is generated by the transaction processor.
    Try setting "RCV: Processing Mode" profile option to On-line; logout and log back in.
    See if the problem goes away.
    But keep in mind that if set to on-line, the users have to wait (a second or more) till the receipt is processed. Depending on your volume and response times, this may not be acceptable.
    Hope this helps,
    Sandeep Gandhi

  • Receiving Transaction Processor updates in rcv_transactions_interface

    Hi,
    We use an legacy inventory system to receive lots. Once received a custom program puts the records into rcv_transactions_interface table for interfacing and calls the Receiving Transaction Processor. Now, the Receiving Transaction Processor updates the rcv_transactions_interface with error. The error in po_interface_errors table is
    The item id (NUMBER = **********) does not match the item_id in the Purchase Order.
    But the item in present in the Purchase order which I have mentioned. Please help me in finding out the resolution for this issue.
    Thanks

    Can you do this and let us know the results?
    1. Change the Proflle value for RCV: Processing Mode to Batch
    2. Change the profile value for RCV: Debug Mode to Yes
    3. Perform transaction
    4. Run Receiving Transaction Processor
    5. Check the log file at the bottom.
    6. If you can send the log file,. we can assist.
    Also as a clue this error looks like is coming back from Inventory. Please check whether the item controls are correctly setup and item attributes are enabled correctly. Your code combinations are all still enabled that are used in the po distributions and so on.
    Thanks
    Nagamohan

  • Receiving Transaction Processor ERROR

    Hello Experts,
    Greetings!
    I have inserted data into rcv_headers_interface and rcv_transactions_interface to import the PO receipts into the RCV base tables. After executing 'Receiving Transaction Processor' , I am getting below given error , unable to get the trace of this Issue. Please help me in understanding this.
    My requirement is to load the PO receipts from the external system into oracle database. Please help me with any piece of information you have.
    ===================ERROR==============
    Concurrent program RVCTP returned error
    Cause: RVCTP encountered an internal error. Parameters: RVCTP,BATCH,41688,,
    Action: Note both this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-007: Subroutine rvtbm_batch_mngr() returned error
    Cause: Subroutine rvtbm_batch_mngr() returned an internal error. 
    Action: Note this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-040: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APP
    Cause: A SQL error has occurred in RVTBM. The SQL error is &LSQL_ERR.
    Action: Take note of both this error number and the actions you were t
    Concurrent Manager encountered an error while attempting to start your immediate concurrent program RVCTP. Routine &ROUTINE received a return code of failure.
    Contact your support representative.
    Thank you.
    Best regards,
    S.Jain.

    See if you have data in po_interface_errors for that transaction

Maybe you are looking for

  • Bring back the dead (features) please

    I'm currently working on a large (>10G) studio recording for a cultural restoration, and I'm being driven to distraction by a couple of things that have been mentioned in passing in other forums/user areas. Because it's such an important piece of aud

  • Quicktime stopped working in chrome

    Hi there Over the last few days Quicktime has dropped working in the Chrome Browser. It cannot find it for some reason and goes to a page where it thinks it can download it from but there is nothing to download. Stand alone quicktime works fine. Can

  • Weblogic: ONE thread cause CPU soaring(50%+),NEVER die,why?

    hi, My environment is as follows: APPSERVER: weblogic 8.1.4 sp4 JDK: IBM jdk1.4 OS: AIX 5.3 DB: oracle our app model is as follows: user | server | cluster user1 \************/server1 user2 -- proxy server -- server2 user3 / ***********\server3 (http

  • Using C# program in Labview

    Hello, I am new to LabView. I have version 7.1. I have developed experiments in MS Visual Studio using C#. The department that I work for wants to convert to LabView is there anyway that LabView can read the code that was developed in C#. Thank you a

  • What does it mean this?

    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/ Contents/MacOS/ARDAgent" has been modified and will not be repaired. Pleas help