Payment Process Request(PPR) not selecting invoice which should be eligible

I am R12 (12.1.2), DB-11.2.0.1, Solaris 64 Bit.
The PPR process is not auto selecting some of the invoices for payment which should be eligible for selection. It was working fine before and stopped working now for some invoices.
We have seen this happening in the past also, and sometime the invoices start showing again with no particular changes.
I followed the first 12 step of the document "952763.1", but no luck.
If I go to PPR, the invoices are automatically going in tables AP_UNSELECTED_INVOICES_ALL. I mean, without unselecting them, they are automatically inserted into that table on each try.
Edited by: 985596 on Feb 1, 2013 8:31 AM

Hi,
Below are the reasons for PPR are not selecting the invoices.
1. The invoice should not be selected by any other PPR
Action: Using the aplist, confirm the checkrun_id is null in ap_payment_schedules_all.
2. The payment schedule's relevant date should be between the PPR's Pay From and Pay Through dates. The relevant date for selection can be either a discount date or the due date
(a) If the due date is between the pay from and pay through dates, the payment schedule will be eligible for selection regardless of the discount date.
Action: Find the due_date in ap_payment_schedules_all.
Find the pay_from_date and pay_thru_date in ap_inv_selection_criteria_all.
If the pay_from_date is null, just confirm the due_date is less than or equal to the pay_thru_date.
If the pay_from_date is not null, confirm the due_date is greater than or equal to the pay_from_date and the due_date is less than or equal to the pay_thru_date.
If this test passes, skip to Step 3.
(b) If the due_date doesn't fall within the parameters, we must rely on the discount date(s). However, this is only available when pay_only_when_due_flag is not Y
Action: Check the pay_only_when_due_flag in ap_inv_selection_criteria_all.
If this is Y, the payment schedule did not fall within the required date parameters and was not selected for that reason.
If it is null or N, continue to the next step.
(c) Determine the relevant discount date.
Action: Confirm the pay_date_basis_lookup_code in ap_supplier_sites_all is discount.
If not, the invoice won't be selected.
See if the always_take_disc_flag in ap_supplier_sites_all is Y.
If yes, then the relevant date is the discount_date from ap_payment_schedules_all.
If no, then find the check_date from ap_inv_selection_criteria_all.
Make the following comparisons and take the date from the first one that is true.
If the check_date is on or before discount date, take the discount date.
If the check_date is on or before the second discount date, take the second discount date.
If the check_date is on or before the third discount date, take the third discount date.
If none of the above is true, the invoice will not be selected.
(d) Confirm the relevant discount date is within the date parameters.
If the always_take_disc_flag is Y, the discount date from Step (c) must be between the pay_from_date and the pay_thru_date, inclusive.
If the always_take_disc_flag is Y and the pay_from_date is null, the discount date from Step (c) just has to be on or before the pay_thru_date.
If the always_take_disc_flag is N, the discount date from Step (c) must be between the check date and the pay_thru_date, inclusive.
3. The payment schedule cannot be fully paid
Action: Confirm the payment_status_flag in ap_payment_schedules_all is N or P
Also confirm the payment_status_flag in ap_invoices_all is N or P
4. The invoice cannot be subject to forced revalidation
Action: Confirm the force_revalidation_flag in ap_invoices_all is N or Null.
5. The payment schedule's payment priority must be between the Payment Priority High and Payment Priority Low parameters designated for the PPR
Action: Find the payment_priority from ap_payment_schedules_all.
Null counts as 99.
Confirm this is between the hi_payment_priority and low_payment_priority, inclusive, from ap_inv_selection_criteria_all.
6. Cancelled invoices will not be selected
Action: Confirm the cancelled_date is null in ap_invoices_all.
7. There cannot be a hold on the payment schedule
Action: Confirm the hold_flag in ap_payment_schedules_all is null or N.
8. A supplier site level hold will prevent payment schedule selection
Action: Confirm the hold_all_payments_flag in ap_supplier_sites_all is null or N.
9. For Payment Request invoices there must be a corresponding record in hz_party_sites
Action: If the invoice_type_lookup_code in ap_invoices_all is PAYMENT REQUEST, and the party_site_id from ap_invoices_all is not null, it must match to a party_site_id from hz_party_sites.
10. Fv_econ_benf_disc.ebd_check must return Y for this invoice
This is a federal function that determines whether it is economically beneficial to pay the invoice now. If Federal is not installed, this will always return Y.
Action: Run the following to check for federal installs
set serveroutput on
begin
mo_global.set_policy_context('S',&org_id_from_invoice);
if (FV_INSTALL.ENABLED) then
dbms_output.put_line('Enabled');
else
dbms_output.put_line('Not Enabled');
end if;
end;
If this returns Not Enabled, continue to the next step. If it returns Enabled, you may need to check the federal rates setup for determining economically beneficial payments.
11. If the user specified an Invoice Batch Name, the invoice must be in that batch
Action: If invoice_batch_id is populated in ap_inv_selection_criteria_all, confirm the same invoice_batch_id is populated in ap_invoices_all.
12. If the user specified the Payee the invoice must be from that payee
Action: If the vendor_id is populated in ap_inv_selection_criteria_all, confirm the same vendor_id is populated in ap_invoices_all.
If the party_id is populated in ap_inv_selection_criteria_all, confirm the same party_id is populated in ap_invoices_all.
13. If the user specified an exchange rate type, it must not conflict with the exchange rate type on the invoice
Action: If an IS_USER inv_exchange_rate_type is populated in ap_inv_selection_criteria_all, confirm the exchange_rate_type on the invoice is also User.
If an IS_NOT_USER inv_exchange_rate_type is populated in ap_inv_selection_criteria_all, confirm the exchange_rate_type on the invoice is either null or a non user type.
14. If the user specified a payment method, it must match the payment method on the payment schedule
Action: If the payment_method_code is populated in ap_inv_selection_criteria_all, confirm the same payment_method_code is populated in ap_payment_schedules_all.
15. If the user specified a vendor type, it must match the vendor type of the invoice's supplier
Action: If the vendor_type_lookup_code is populated in ap_inv_selection_criteria_all, confirm the same vendor_type_lookup_code is populated in ap_suppliers.
16. If any legal entities were specified, the invoice must be in one of those legal entities
Action: If there are any rows in ap_le_group for this checkrun_id, the legal_entity_id in ap_invoices_all must match the legal_entity_id from one of those rows.
17. If any operating units were specified, the invoice must be in one of those operating units
Action: If there are any rows in ap_ou_group for this checkrun_id, the org_id in ap_invoices_all must match the org_id from one of those rows.
18. If any currencies were specified, the invoice's payment currency must match one of them
Action: If there are any rows in ap_currency_group for this checkrun_id, the payment_currency_code in ap_invoices_all must match the currency_code from one of those rows.
19. If any pay groups were specified, the invoice's pay group must match one of them
Action: If there are any rows in ap_pay_group for this checkrun_id, the pay_group_lookup_code in ap_invoices_all must match the vendor_pay_group from one of those rows.
20. For zero-amount invoices, the user must have checked the Include Zero Amount checkbox
Action: If the amount_remaining in ap_payment_schedules_all is 0, confirm the zero_invoices_allowed value in ap_inv_selection_criteria_all is Y.
21. Unapproved invoices will not be selected
Action: Confirm the wfapproval_status in ap_invoices_all and the wfapproval_status on each row in ap_invoice_lines_all is either APPROVED, MANUALLY APPROVED or NOT REQUIRED.
24. An invoice with holds will not be selected for payment
Action: Confirm there are no rows in ap_holds_all where release_lookup_code is null.
25. The invoice must be fully validated. A different query is executed based on whether purchase encumbrances are used for any of the included orgs
Action: Determine the value of the purch_encumbrance_flag in financials_system_parameters.
A. If the purch_encumbrance_flag is null or N, confirm none of the rows in ap_invoice_distributions_all have a match_status_flag of N or S.
B. If the purch_encumbrance_flag is Y, confirm none of the rows in ap_invoice_distributions_all have a match_status_flag of N, S or T.
26. Invoices without distributions will not get selected
Action: Confirm there are rows in ap_invoice_distributions_all.
27. For customers using CCR (a Federal functionality) the Invoice Supplier should not be CCR Expired
Action: See the statement on step 10 to determine if Federal is installed. If it is installed confirm there is not a row in FV_TPP_ASSIGNMENTS_V where the beneficiary_party_id and beneficiary_party_site_id match the party_id and party_site_id from ap_invoices_all and the fv_tpp_pay_flag equals N.
Regards,
Raju.

Similar Messages

  • Payment Process Request Status Report - Add Invoice Distribution Section

    Hi,
    I posted this in the E-Business Financial forum, but I think this is the right forum to seek for an answer to my question.
    In R12.1.3, I need to add Invoice Distribution details into "Payment Process Request Status Report" report. I know that function "Get_Docline_Ext_Agg" in package "IBY_FD_EXTRACT_EXT_PUB" needs to be extended, but I do not know how to do it when it involves adding a new level of records into the XML, assuming that an invoice line can have multiple distribution entries, the function return could not simply be an aggregate value but instead needs to be a collection of records, so I can loop throug them in the RTF tempalte using for-each statement.
    Please let me know if this makes sense and/or if you had to deal with a similar issue.
    Thanks,
    Sinan

    Hi,
    Is this the right forum to post this question?
    I would appreciate any comments.
    Thanks,
    Sinan

  • How to automatically confirm check pay run (payment process request) in R12

    Payment Method = check
    The payment process profile (ppp) settings are as follows:
    Processing Type=Printed
    Payment Completion Point = When the Payment Instruction is Formatted
    Default Payment Document= blank/null
    Payment File=Send to File
    My question is this. Is it possible or how do you configure oracle payments (PAYMENT PROCESS PROFILE [PPP] and/or PAYMENT PROCESS REQUEST [PPR])for check payments created as a file output like you have in 'EFT' instead of printing the checks and CONFIRM the PPR/payments AUTOMATICALLY after the checks/payments have been formatted.
    The reason we are doing this is because we want an external agency to print the checks for my organisation.
    What is happening at the moment is that the PPR runs and the payments file is created successfully. At this point, the PPR is in 'FORMATTED - READY FOR RECORDING' status. The PPR then remain in this status until it is manually confirmed by clicking the 'Take Action' icon in the 'payment instruction' tab and then clicking on 'CONFIRM'.
    If the PPR is left in the above status, then the next submitted check pay run errors because the payment document(s) are still locked by the pay run that is in the 'Formatted - Ready for Recording' state.
    If it is not possible to configure Oracle payments to auto confirm the check pay run of this type, is an API available that can be called to confirm check payments - once they are in the formatted status.
    I've looked at the following notes in 'My Oracle Support', but they are not much use.
    Note 1097547.1 is related to bug 8781032 which talks about "Automatic Initiate when Payment Process Request is Complete".
    and then Note 1215392.1 relates to enhancement request.
    Bug 10142423: GIVE AN OPTION IN PAYMENT PROCESS PROFILE TO SUBMIT POSITIVE PAY FILE AUTOMATIC
    Thanks.

    Try running this SQL
    SELECT
    r.calling_app_id,
    r.created_by,
    r.payment_service_request_id,
    r.creation_date,
    r.call_app_pay_service_req_code,
    fa.application_name,
    fu.user_name,
    r.payment_service_request_status
    FROM
    iby_pay_service_requests r,
    fnd_application_vl fa,
    fnd_user fu
    WHERE r.payment_service_request_id = <<your concurrent request ID>>
    AND r.calling_app_id = fa.application_id(+)
    AND r.created_by = fu.user_id(+)

  • IBY - Payment Process Request in status Formatting

    I have a problem with the payment process for a payment with processing type = PRINTED:
    Steps:
    I submit a Set Request, this contains the next requests
    Payment Process Request Program
    Scheduled Payment Selection Report
    Format Payment Instructions (this will create payment instructions)
    Payment Instruction Register --> but this output showed Formatted - Ready for Recording
    How do I confirm a payment, only process running?
    Thanks!
    Carlos

    Hi
    Please review the note R12: Payment Process Request (PPR) Stuck In Status Formatting [ID 561048.1]
    Hope this helps.
    Thanks
    Manish Jain.

  • R12 Payment Process Request only picking up 1 Credit Note per supplier

    I am using R12 v 12.1 and have found an issue when I create a Payment Process Request that includes multiple credit notes for a supplier. When I create the batch only 1 credit note is selected. When I attempt to manuallly add another credit note it adds it to the batch however when I confirm the payment batch only 1 credit note is applied The nett amount for the supplier is still positive so I am unable to determine why this issue is occuring. Can anyone tell me if there is a setting to allow multiple credit notes within a payment process batch for a supplier?
    I have found something but am not sure if this is the solution. Under the 'Process Automation' tab when I create a PPR template I have noticed an option called 'Maximize Credits'. If this check box is selected will it allow multiple credit notes for 1 supplier to be added to a payment batch or is this option used for something different?
    Can someone please help with my issue.
    Thanks

    Yes, you are correct.
    You have to select the option "Maximize Credits" that will select all the available credit notes for the supplier while processing the PPR.
    Thanks
    Manish

  • R12 Payable - Payment Process Request Report

    I need to list payments ordered by vendor name in Payment Process Request Report.
    Currently I don't see any logic how payments are printed in "Payment Process Request" report.
    Does anyone know how to resort this report?
    Thanks,
    Joon

    Hi,
    R12 AP not showing Accounting entry for currency exchange loss account where as same accounting entry is apearing in GL...
    ### Steps to Reproduce ###
    1. Create AP Prepayment and pay full with forign currency (USD) Exchange rate 3.1
    2.Create invoice with forign currency(USD) Exchange rate 3.75
    3.go to tools/view accounting events
    4. run the create accounting and go to GL and check the accounting entry
    Please advise
    Regards

  • R12 Payment Process Request Status Report adding extra columns to XML data.

    In 11i, we had modified the Preliminary Payment Report to include extra columns ( invoice distributions). In r12 , that report is obsolete and Oracle introduced a new report "Payment Process Request Status Report". This request uses BI Publisher to generate the final report output. I am unable to modify the template since the XML output of the report does not
    contain the invoice distribution account data. We need to know how can we modify the XML data to include the extra columns.
    For Funds Disbursement Process ( Payment Instruction File) , Oracle provides IBY_FD_EXTRACT_EXT_PUB extensibility package to construct custom XML element structure that can be added to the payment XML extract generated by Oracle Payments. Do we have something similar for this report ? Are there any other options available ?
    Thanks

    Hi
    The same package "IBY_FD_EXTRACT_EXT_PUB" works for payment process request status report also. Please add the logic to get the distribution data in this package and you will see the new XML tags in this report also.
    Hope this helps.
    Vinit

  • Error while terminating a 'Payment Process Request' in R12.

    Hello gurus, Please help me out with this error.
    When I am trying to terminate a 'Payment Process Request', the below error shows up.
    Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    Click here for exception details.
    The exception details are as follows.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT
    r.calling_app_id,
    r.created_by,
    r.payment_service_request_id,
    r.creation_date,
    r.call_app_pay_service_req_code,
    fa.application_name,
    fu.user_name,
    r.payment_service_request_status
    FROM
    iby_pay_service_requests r,
    fnd_application_vl fa,
    fnd_user fu
    WHERE r.payment_service_request_id = :1
    AND r.calling_app_id = fa.application_id(+)
    AND r.created_by = fu.user_id(+)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:870)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:993)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.iby.disbursement.transaction.payment.webui.ReviewProposedPaymentsCO.processRequest(ReviewProposedPaymentsCO.java:76)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1751)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
         at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1783)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3444)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3493)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:860)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4559)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:892)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:806)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:800)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3643)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.iby.disbursement.transaction.payment.server.SubmissionDetailsVOImpl.initQuery(SubmissionDetailsVOImpl.java:32)
         at oracle.apps.iby.disbursement.transaction.payment.server.ReviewProposedPaymentsAMImpl.initDetails(ReviewProposedPaymentsAMImpl.java:114)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.iby.disbursement.transaction.payment.webui.ReviewProposedPaymentsCO.processRequest(ReviewProposedPaymentsCO.java:76)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1751)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
         at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1783)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3444)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3493)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:860)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4559)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:892)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:806)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:800)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3643)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.iby.disbursement.transaction.payment.server.SubmissionDetailsVOImpl.initQuery(SubmissionDetailsVOImpl.java:32)
         at oracle.apps.iby.disbursement.transaction.payment.server.ReviewProposedPaymentsAMImpl.initDetails(ReviewProposedPaymentsAMImpl.java:114)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.iby.disbursement.transaction.payment.webui.ReviewProposedPaymentsCO.processRequest(ReviewProposedPaymentsCO.java:76)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:596)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1166)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:964)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:931)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:655)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2513)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1751)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:538)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:426)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)

    Try running this SQL
    SELECT
    r.calling_app_id,
    r.created_by,
    r.payment_service_request_id,
    r.creation_date,
    r.call_app_pay_service_req_code,
    fa.application_name,
    fu.user_name,
    r.payment_service_request_status
    FROM
    iby_pay_service_requests r,
    fnd_application_vl fa,
    fnd_user fu
    WHERE r.payment_service_request_id = <<your concurrent request ID>>
    AND r.calling_app_id = fa.application_id(+)
    AND r.created_by = fu.user_id(+)

  • R12 Payment Manager: Unstarted Payment Process Request

    In the Payments Dashboard we have 1 Request "Processing" since mid August. The Status on ap.ap_inv_selection_criteria_all is 'Unstarted' and nothing has been selected against it. On Metalink it says unstarted Payment Process Requests can be delete but doesn't say how. The Cancel button is greyed out.
    I can't call up the Payment Process Request in the normal Payment Screens. Does anyone know how I can either get rid of it (the users don't want to keep seeing it in the Payment Dashboard) or pick it up to continue the process?
    Any help would be appreciated.

    You can delete the records in ap_inv selection criteria for this payment request.
    Also update the checkrun_id column to null in ap_payment_schedules table.
    Thanks

  • Add Additional Info to "Payment Process Request Status Report"

    R12.1.1 Payables
    I have to add some extra fields to "Payment Process Request Status Report" when processing payments.
    What package do I have to customize?
    Is this IBY_FD_EXTRACT_GEN_PVT? If so, where do I have to modify?
    I have to add project and task information stored in ap_invoice_distributions_all table.
    Thanks,
    Joon

    Hi, you may take a look at IBY_FD_EXTRACT_EXT_PUB package. It is used in the payment process and allow to add fields to the XML file.
    There's 5 functions in that package which are called at diffetent level. Some are called once only for the payment instruction, another one is called once per payment, ... and one is called once per document payable line.
    We used this package to Call a XX package which then add information to the xml file.
    We did that so that we can add new field on the check.

  • Payment processing is currently not available

    payment processing is currently not available   Postepay

    Since Monday, I have been unable to buy music through
    iTunes store, as I've consistently got the error
    message "The iTunes Store is unable to process
    purchases at this time - Payment processing is
    temporarily unavailable...please try to make your
    purchase later"
    I've tried changing my card to a different one, in
    case it's a problem with the connection to my bank,
    but on the relevant "My Account" page, when I click
    to confirm, I again get "Payment processing is
    currently not available"
    iMac G5   Mac OS X (10.4.8)
    Did you manage to reslove this as I'm suffering with the same problem and have been for about a week now?
    G4   Mac OS X (10.3.9)  

  • Payment Process Request Status Report - unmask bank account number

    Dears,
    My requirement is to unmask bank account number in Payment Process Request Status Report (short code: IBY_FD_PPR_STATUS_PRT). It is possible to achieve?
    Thanks for any help and suggestions.
    Rgds,
    Marcin

    Sunil wrote:
    Guys,
    Can you please tell me what is the Data Definition name associated with Payment Process Request Status Report.
    Looking forward to your replies.
    Thanks.
    -SunilLogin to (XML Publisher Administrator) responsibility and click on Templates, query "Payment Process Request Status Report" and click on Go and this should show the "Data Definition". You can also click on "Payment Process Request Status Report" link and get all the details (Template Files, File name, Localized/Translatable Template ..etc).
    Thanks,
    Hussein

  • Payment Process Request split output by payment batch amount

    Hello,
    I have task to create multiple electronic outputs from payment process request.
    Example: I run payment process request with 4 payments (A, B, C, D) with amounts: 1000$, 2000$, 3000$, 2500$ then in payment process it splits by payee into 3 payments (E, f, g) with amounts: 1000$, 5000$ and 2500$. Then I have payment amount, for example 2500$, that means that into 1 payment output I can put only payments that sums below 2500$ or only one that is greater than 2500$. Other payments necessary to put into new outputs. Oracle standard process "Format Payment Instructions with Text Output" create only 1 output with all payments in other cases but if there is chosen my payment profile then it necessary a lot of outputs.
    Example with outputs where limit 2500$ amount sum for multiple payments else 1 payment:
    1. output: 1 payment with amount sum 1000$
    2. output: 1 payment with amount sum 5000$
    3. output: 2 payments with amount sum 2500$
    Question: Is it possible to create such custumization with Oracle Standard Payment Batch creation process?
    Or you have another ideas?
    Thanks!
    Edited by: 966870 on 2012.22.10 05:52

    Hello,
    I have task to create multiple electronic outputs from payment process request.
    Example: I run payment process request with 4 payments (A, B, C, D) with amounts: 1000$, 2000$, 3000$, 2500$ then in payment process it splits by payee into 3 payments (E, f, g) with amounts: 1000$, 5000$ and 2500$. Then I have payment amount, for example 2500$, that means that into 1 payment output I can put only payments that sums below 2500$ or only one that is greater than 2500$. Other payments necessary to put into new outputs. Oracle standard process "Format Payment Instructions with Text Output" create only 1 output with all payments in other cases but if there is chosen my payment profile then it necessary a lot of outputs.
    Example with outputs where limit 2500$ amount sum for multiple payments else 1 payment:
    1. output: 1 payment with amount sum 1000$
    2. output: 1 payment with amount sum 5000$
    3. output: 2 payments with amount sum 2500$
    Question: Is it possible to create such custumization with Oracle Standard Payment Batch creation process?
    Or you have another ideas?
    Thanks!
    Edited by: 966870 on 2012.22.10 05:52

  • Customize Data Definition for Payment Process Request Status Report

    R12.1.1 Payables
    I have to add some extra fields to "Payment Process Request Status Report" when processing payments.
    What package do I have to customize?
    Is this IBY_FD_EXTRACT_GEN_PVT? If so, where do I have to modify?
    I have to add project and task information stored in ap_invoice_distributions_all table.
    Thanks,
    Joon

    Sunil wrote:
    Guys,
    Can you please tell me what is the Data Definition name associated with Payment Process Request Status Report.
    Looking forward to your replies.
    Thanks.
    -SunilLogin to (XML Publisher Administrator) responsibility and click on Templates, query "Payment Process Request Status Report" and click on Go and this should show the "Data Definition". You can also click on "Payment Process Request Status Report" link and get all the details (Template Files, File name, Localized/Translatable Template ..etc).
    Thanks,
    Hussein

  • Payment Process request hangs when process in more than 7000 invoices.

    We are using oracle E-BIZ R12 version in our company.The problem we are facing while Payement process request program is when we are trying to process more than 8000 invoices the entire application hangs.No new logins are allowed till the entire process ends and it takes a lot of time to process. Kindly help me with this.
    Thanks and regards..

    Are both the payments for the employee not transferred or only the unpaid one ?
    How about paying both the amounts(status paid) and then do a transfer to SLA.
    Cheers,
    Vigneswar

Maybe you are looking for

  • Problem with Classroom in a book

    I have been working through the lessons in Adobe Premier Elements 11 Classroom in a book and am having a problem with Lesson 6 "Creating a Picture-in-Picture overlay.  the lesson comes with Greenscreen.mov file to be used in the lesson but when I try

  • DOCTYPE and xslt mapping

    Hi All, I have an XSLT mapping.  I have only now found out that I need to include a <i><!DOCTYPE Order SYSTEM "XCBL3.0.dtd"></i> tag on the second line of the xml I am sending via HTTP.  This causes the XSLT mapping to fail in XI.  From reading other

  • How to decrypt filname of report in frsinput or frsoutput?

    He experts, is it possible to decrypt the filename of a report which is saved in the subdirectory /frsinput or /frsoutput? I like to write a script which lists all files, the size and the source system. So, maybe the source system is part of the file

  • Chart #HOST# issue

    Here's one I just came across. I developed a system that is using an internal server. It can be accessed from an external website in order to run it in user mode. The problem is that when the charts are being called through the external website, it i

  • I am unable to use my giftcard balance though I have used it before?

    A few days ago, I got a $50 dollar iTunes gift card. I redeemed the code and used a little over 30 dollars, now my balance is $16.32. I went to buy a song, and iTunes is not letting me use the remaining gift card money, it is asking for a credit card