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

Similar Messages

  • 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

  • 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

  • Need help with configuring a Printer Driver in Oracle apps

    Hi,
    We have set of interfaces/concurrent jobs which are programed to send the output file to file location1. Now we need to direct the output for all these jobs to file location2. The idea is to not modify the existing code, but have configuration in place which will re-direct the output files to the new “file location2”, once the concurrent job run is complete.
    We have come across “Using Dummy Printer driver” option wherein we created a dummy printer driver with arguments as below and attached this printer to all these concurrent jobs.
    mv <file location1>/$PROFILES$.TITLE <file location2>
    This option is working fine if both the file locations are hard coded. But both these locations are configured in 2 separate profile options and the filepath would change from once Oracle instance to another.
    We are looking for solutions where we can pass the profile option value to this printer driver instead of hardcoding it in the argument.
    Also, please suggest any other solution to move the output files to a different location.
    Please note that our client is on Oracle On-Demand environment (apps – 11.5.10) and hence a shell script cannot be used for this.
    Thanks,
    Kiranmayi.

    Hello Mark,
    I can't support the netopia router/modem, but I would think there should be an admin guide for the configuration. If it is a modem/router and you said there is rules for allowing or blocking services, which sounds like access list you should be able to create a rule for the client you want to block on the modem/router to prevent it from talking to the internet.
    If you want to insure no outside security threats can make it to the computer staticly assign an IP address but don't give it a default gateway address. The client will not be able to talk to any other network but its own. It sounds like you only have one vlan or a flat network so this should work, but if you need to be able to have this computer in the future talk to other networks internally then it isn't a viable solution. Blocking at the modem/router would be the only solution.
    The SG300-08 Switch you could setup an ACL to block that client from talking to the modem/router, but the potential for causing valid traffic from being blocked in your own network grows.
    To create this rule you would first
    go to Access Control
    Create a MAC Base ACL (give it a meaning full name)
    Create 2 a MAC BASE ACE
    Rule 1
    Priority 10
    Action Deny
    Destination Any
    Source User Defined
    MAC address of client wanting to be blocked
    Apply
    Rule 2
    Priority 20
    Action Permit
    Destination Any
    Source Any
    Apply
    Bind the ACL to a port
    Make sure to only bind the ACL to the port that connects to the router/modem.
    Cisco Small Business Support Center
    Randy Manthey
    CCNA, CCNA - Security

  • 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

  • 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

  • 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,

  • 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

  • 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

  • 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

  • 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

  • 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' ERRORS

    Hi All,
    While Running the Seeded Program 'Receiving Transaction Processor', I am getting the following Errors:
    Cause: RVCTP encountered an internal error. Parameters: RVCTP,BATCH,69604,
    Action: Note both this error number and the actions you are trying to perform. Contact your system adminis
    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
    Concurrent Manager encountered an error while attempting to start your immediate concurrent program RVCTP. Routine &ROUTINE received a return code of failure.
    Please help out..,
    many thanks......

    Hi,
    Check out metalink Note:219958.1
    cause: The parent_transaction_id loaded into the rcv_transactions_interface table did not exist

  • 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

  • Receiving Transaction Processor fails with multiple distribution lines

    Hi All,
        I am having a problem with 'Receiving Transaction Processor' when receiving is done against a multiple distributions line that has different project, task data.  The concurrent program 'Receiving Transaction Processor' completes normally but when you check the quantity_received in po_line_locations_all table it shows partial quantity received.
    example:
    PO# Test_PO1
    Line#1, Shipment#10001, Dist#101, Quantity Ordered: 1, Amount $1000 (Dollar based line), Project_ID: 335803, Task_ID: 12057618
    Line#2, Shipment#20001, Dist#101, Quantity Ordered: 3, Amount $750, Unit Price: $250, Project_ID: 335803, Task_ID: 12057618
    Line#2, Shipment#20001, Dist#102, Quantity Ordered: 2, Amount $500, Unit Price: $250, Project_ID: 336488, Task_ID: 12121488
    Receiving performed using 'Receiving Transaction Processor' by populating data in RCV_Transactions_Interface and RCV_Headers_Interface tables and it gave following error for one of the distribution
    from po_interface_errors table.
    Line#1, Shipment#10001, Dist#101, Received Amount $400 (Successfully interfaced)
    Line#2, Shipment#20001, Dist#101, Quantity Received: 1 (Successfully interfaced)
    Line#2, Shipment#20001, Dist#102, Quantity Received: 1 (Failed with below error)
    Error_Message: Error: The PROJECT_ID specified is invalid.  The value specified (336804) does not match the expected value (335803).
    Interface_Type: RCV-856
    Error_Message_Name: RCV_INVALID_ROI_VALUE
    Table Name: RCV_HEADERS_INTERFACE
    Note: This happens only when you have different project_id and task_id values on each distribution for Line#2, Shipment#20001
    Please let me know if someone have already came across this issue or if there is already any patch for this issue.
    Any help with this issue is appreciated.
    Thanks,
    Sri

    Hi,
    Probably, if you put this under SCM - Discrete Manufacturing, your question could solicit more replies..
    Rgds,
    Rakesh

Maybe you are looking for

  • Problem with navigation in app javascript

    Hi, in my app there are some problems for the navigation between the pages. in the app there is a descrption of the problems. can you help me? please.. it is important for me https://onedrive.live.com/redir?resid=EED8037DD05FCED!79109&authkey=!APeraV

  • All I hear when I make calls is little bits of static (most of the time)

    So this started happening about a month ago when I moved to NJ (though I upgraded from iOS 5.1.1 to 7 at the same time - so I don't know if that's connected to this issue).  I place a call and the timer starts going, but I can't hear anything except

  • Making photo gallery run automatically

    hi there i have already created a photogallery for the website below. http://hitenkajal.co.uk/hk_family.html Now i will like the photos to run automatically as well as having button to click on. I want this done via as3 as i have quite alot of photos

  • UTF-8

    Hi All I am working on a project and we have a requirment to support internationalization As part of this we have to detect the UTF-8 Characters entered by the user in the form Morever the form elements should be entered in a particular format and we

  • MIRO-freight charges not coming

    Hi, I created my own pricing procedure, in which i have created few Z condition types.. While creating PO, i am getiing net price, in which freight cost is not getting added.. But at the time of MIRO, while selecting Goods/Service items + Planned del