Help deleting VO substitution

Hi All,
I extended a VO viz. oracle.apps.ar.irec.accountDetails.pay.server.DefaultPaymentInstructionVO to add a transient attribute in Page 'oracle/apps/ar/irec/accountDetails/pay/webui/ARI_INVOICE_PAYMENT_PAGE'.
The JPX import ran fine. However, I wanted to reverse the substitution so I went into Functional Administrator, personalizations and for the page removed the Site level personalization.
Since, I have bounced the apache etc and requeried that page. But it now gives me some other VO related error and I can still see my View Object in the Business Components section of About this Page.
If I check in Personalizations tab on About this Page , at bottom section 'Business Components Substitutions' it says No Business Component Substitutions.
Not sure what has gone wrong here, but it appears I may have not removed the substitution correctly or deleted some other seeded substitutions in the process ?
If I run
exec jdr_utils.listCustomizations('oracle/apps/ar/irec/accountDetails/pay/webui/ARI_INVOICE_PAYMENT_PAGE');
it just says PL/SQL procedure completed successfully, but returns nothing.
Please Help !!
Shanky

Parag, thanks for your prompt replies.
I have compiled VOImpl.java without any errors on server. However, in jdev on rebuilding project it gives error 'DefaultPaymentInstrumentVOImpl not found'.
I bounced middle tier and navigate to page and get error :
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation.  Statement: SELECT customer_id,
       currency_code,
       total_due_original,
       total_due_remaining,
       total_discount,
       total_service_charge,
       total_payment_amount,
       (total_due_remaining - total_payment_amount) as  total_balance_due,
       TO_CHAR(total_due_original , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as total_due_original_formatted,
       TO_CHAR(total_due_remaining , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as total_due_remaining_formatted,
       TO_CHAR(total_service_charge , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as total_service_charge_formatted,
       TO_CHAR( -total_discount , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as total_discount_formatted,
       TO_CHAR(total_payment_amount , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  as total_payment_amount_formatted,
       TO_CHAR( (total_due_remaining
                 - total_discount
                 - total_payment_amount) , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as total_balance_due_formatted,
       TO_CHAR(TO_NUMBER(TO_CHAR(SYSDATE, 'MM'))) current_month,
       TO_CHAR(SYSDATE, 'YYYY') current_year,
       TO_CHAR( (total_service_charge +
                 total_payment_amount) , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))
                  || ' ' || currency_code  as grand_payment_total_formatted,
       to_number(:1) as customer_site_use_id,
       total_number_of_installments,
       trunc(sysdate) as receipt_date,
TO_CHAR( (dispute_amt), FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))||' '||currency_code as dispute_amt
FROM
(SELECT customer_id,       
        currency_code,
        sum(amount_due_original) total_due_original,
        sum(amount_due_remaining) total_due_remaining,
        sum(discount_amount) total_discount,
        sum(service_charge) total_service_charge,
        sum(payment_amt) total_payment_amount,
        sum(number_of_installments) total_number_of_installments,
sum(-dispute_amt) dispute_amt
FROM   ar_irec_payment_list_gt
WHERE  customer_id = :2
AND    customer_site_use_id = nvl(:3, customer_site_use_id)
AND    org_id=:4
GROUP BY customer_id, currency_code
        at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)
        at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:886)
        at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:1009)
        at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
        at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
        at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1173)
        at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:51)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        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 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.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
        at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
        at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1738)
        at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3382)
        at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3431)
        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:4560)
        at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
        at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:688)
        at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5792)
        at oracle.apps.ar.irec.accountDetails.pay.server.MultipleInvoicesPayListSummaryVOImpl.isSingleInstallment(MultipleInvoicesPayListSummaryVOImpl.java:197)
        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:133)
        at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1173)
        at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:51)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
        at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
        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.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
        at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
        at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
        at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
        at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
        at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
        at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
        at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
        at _OA._jspService(_OA.java:221)
        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 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.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
        at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
        at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
        at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1738)
        at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3382)
        at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3431)
        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:4560)
        at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
        at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:688)
        at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)
        at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)
        at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)
        at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2828)
        at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5792)
        at oracle.apps.ar.irec.accountDetails.pay.server.MultipleInvoicesPayListSummaryVOImpl.isSingleInstallment(MultipleInvoicesPayListSummaryVOImpl.java:197)
        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:133)
        at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1173)
        at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:51)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:251)
        at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1191)
        at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        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:968)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
        at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
        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:2575)
        at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1906)
        at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
        at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
        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.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
        at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
        at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
        at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
        at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
        at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
        at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
        at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
        at _OA._jspService(_OA.java:221)
        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 com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
        at java.lang.Thread.run(Thread.java:619)
Also, if in SQL Plus , if I do
exec jdr_utils.listcustomizations('/oracle/apps/ar/irec/accountDetails/pay/server/DefaultPaymentInstructionVO');
it says PL/SQl procedure successfully completed. But returns nothing !
But it does not list my substitution ?
If I would want to start from scratch , how do I delete my substitution ? Doing About this page, I can see my custom View Object in the Business components section.

Similar Messages

  • Transport deletion of Substitution step

    Hi,
    I'd like to delete one of the steps in FI substitution.
    Does anyone know how to transport the deletion of substitution step?
    Though I create the transport request via T-CD GCT0 after I delete the target step, the transport object still contains the deleted step.
    Your help would be much appreciated.
    Best Regards,
    Mari

    Hi Preeti,
    Thank you so much for your response.
    But could you please allow me to ask an additional question?
    I have tried according to your instruction, and here I've got a work bench request.
    But in SE01, I can still see the deleted step.
    How can I verify if this request is for deletion?
    The step 3 in the attached picture is the deleted one.
    Thank you very much for your help in advance.
    Best Regards,
    Mari

  • R5034 Runtime error when updating ITunes  help - deleted all iTunes/Apple programs and reinstalled ITunes

    R5034 Runtime error when updating ITunes  help - deleted all iTunes/Apple programs and reinstalled ITunes
    help please ?

    solved problems and reinstalled  - 4 hours wasted trying to fix iTunes ...
    Apple could do better to inform users when updating and upgrading  .....

  • I need help deleting and adding text

    i need help deleting and adding text, can soneone help
    Adobe Photoshop Elements 10

    You should delete your phone number from the topic line.
    Spambots search these forums for contact info.
    You don't want to get even more telemarketing/scam calls than you probably already get.
    It seems like the "Do Not Call" lists are ignored these days.
    Message was edited by: Bo LeBeau       Looks like someone already took care of this.

  • Help deleting sidebar documents

    I recently bought a macbook pro. Whenever I migrated my 2006 macbook (running snow Leopard) everything went smoothly. Except now in my Finder sidebar I have 2 documents under favorites that it will not let me edit, delete, access etc. I need help deleting them. Any Suggestions?

    Hold down the command key and drag them out of the sidebar.

  • Just got an iphone 4 from my dad and its his old iphone and i was gonna delete his account so i can put my account on the iphone but he does not remember the  password so I couldnt delete it. I need help deleting it without a password

    just got an iphone 4 from my dad and its his old iphone and i was gonna delete his account so i can put my account on the iphone but he does not remember the  password so I couldnt delete it. I need help deleting it without a password.

    If the iPad has Activation Lock - that is, it's asking for the previous owner's Apple ID and password to activate the device or to turn off Find My iPhone - then you will need that information. There's no way around it If your father can't remember the password, he'll need to recover it.
    http://iforgot.apple.com
    If he can't do it via that page, then he'll have to call Apple Support and ask to speak with Account Security.
    If that's not the "password" you meant, please post back and clarify.
    Regards.

  • I need help deleting songs from my new iphone.  The songs don't show up in library, they're unchecked and I've synced only the checked songs, but they're still on my brand new phone.  I've swiped my finger to the left, and that doesn't work.

    They have the icloud symbol beside them.  Does that make a difference?

    Hello Jensones,
    Thank you for providing the details of the issue you are experiencing with music on your iPhone 5s.  It sounds like you're seeing your iTunes in the Cloud purchases. 
    The items you see with the iCloud icon next to them are purchased songs that you can stream from iTunes in the Cloud and do not have a delete option because they are not actually on your device.  You can hide all these songs in Settings on the iPhone:
    Just show music that’s been downloaded from iCloud: Go to Settings > Music, then turn off Show All Music.
    These steps are from the iPhone User Guide:
    iPhone User Guide
    http://help.apple.com/iphone/7/#/iph6e2dfb83
    If there are just specific songs you would like to hide, you can hide them using the iTunes Store on your computer:
    To hide your purchases
    Open iTunes on your Mac or PC.
    From the Store menu, choose Store > Sign In, and then enter your Apple ID and password.
    Go to the iTunes Store.
    Click Purchased from the Quick Links section on the right side of the iTunes Store.
    Choose a content type by clicking on Music, TV Shows, Apps, or Books from top.
    Hover your cursor over the item you want to hide.
    You will see an "X" either to the right or left top corner of the item.               
    Click the "X" to hide that item. A confirmation dialog will appear once you click the "X."
    Once you hide the songs on your computer, I recommend quitting and relaunching the Music app on your iPhone.  You can find more information about hiding purchases here:
    iTunes Store: Hiding and unhiding purchases
    http://support.apple.com/kb/ht4919
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Need help deleting a program called KompoZer

    Hi guys,
    I downloaded a program for WYSIWYG editor, it is called KompoZer.  I dont need it but I cannot delete the dmg file from the desktop or remove the the icon from the task bar.
    When I try and drop the dmg file into the trash I get the following message:
    The disk "KompoZer en-US" couldn't be ejected because "KompoZer" is using it.
    Quit that application and try to eject the disk again.
    Although I'm not using the program, any help would be greatly appreciated!

    Open Activity Monitor in the Utilities folder and see if you can see anything for KompoZer listed. If son, select it and click on the big red button at the top of the window to quit the process - then try deleting the app.
    (If you are running Mavericks the red button has been replaced with an x in the top left corner).

  • Help Deleting a OD Group Email That Won't Go Away

    I seem to have a ghost and I could use help finding it...
    There was a Open Directory Group that at some point an admin checked to enable the "Mailing list" for this group within Workgroup Manager (might have been back in 10.4). This group has since been deleted from OD yet the email group persists....somewhere. Do you know where? I sure don't.
    Sometime after this group was deleted it was recreated but as a Mailman mailing list that effectively had the exact same name and that is when we started to notice that messages sent to "[email protected]" were not going to everyone included in the Mailman mailing list. Further investigation proved that the Mailman list was working 100% and that the messages simply never were received by Mailman. Yet, the messages were getting delivered to some users on the list. I realized after a month of this that it was being delivered to the users who were included in the old OD group. We have since deleted this Mailman mailing list and it is truly gone but the ghost list persists.
    I've searched everywhere I can think of to track down this mysterious mailing list so I can purge it completely.
    Besides just poking around the file system on both the mail server and the OD server I tried searching the directory using dscl but found nothing.
    /LDAPv3/127.0.0.1 > search . mail collections
    We have a work in progress of moving accounts over to a new Kerio Mail Server but note that the problem pre-dates the introduction of this server into our network environment.
    Here's a little bit about the servers and network:
    - Master, Xserve intel, Server OS 10.5.8, DHCP, DNS, AFP shares, a few home directories
    - Apple Mail Server, Mac mini, Server OS 10.5.8, stock server install w/ cyrus, Mailman, postfix, etc.
    - Additional mail server - Kerio Mail Server 6.7, Xserve intel, server OS 10.6.2, just Kerio
    Here's some example log entries that tells me the message is going through our current primary mail server and not some other server on our network:
    59
    5/10/10
    2:24:57.000 PM
    May 10 14:24:57 192.168.168.212 May 10 14:24:57 mail2 postfix/pipe[53910]: 2CB0B1835B07: to=<[email protected]>, orig_to=<[email protected]>, relay=cyrus, delay=7.1, delays=0.01/0/0/7.1, dsn=2.0.0, status=sent (delivered via cyrus service)
    host=192.168.168.212 Options| sourcetype=syslog Options| source=udp:514 Options
    62
    5/10/10
    2:24:50.000 PM
    May 10 14:24:50 192.168.168.212 May 10 14:24:50 mail2 postfix/smtp[53683]: 5DA951835AEB: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=0.86, delays=0.3/0/0/0.56, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 2CB0B1835B07)
    host=192.168.168.212 Options| sourcetype=syslog Options| source=udp:514 Options
    If you think you have an idea what's going one and need more info just let me know.

    Hi
    If I've understood correctly deleting users and/or groups from WorkGroup Manager does not delete associated Mailboxes. You could try:
    http://osx.topicdesk.com/content/view/46/62/
    Most of us here over the years have favoured SirAdmin (rather than cyrusadmin) which works with 10.3, 10.5 and 10.5.
    HTH?
    Tony

  • Help needed in Substitution & User Exit.

    Hi Experts,
    I have a peculiar recuirement. In the <b>Vendor Invoide Creation</b> transaction (<b>FB60</b>), if you try to create a Invoice/Credit memo for a "<b>One Time Vend</b>or", a pop up window comes asking Bank and Address data.
    The user need to enter the bank key and acc no and  need to substitute the name, address fields in this pop up window screen, with some data fetched from custom DB tables according to the bank keys.
    Since the pop up screen fields are from structure BSEC, I cant really do the substitution them from OBBH (Since it only allows BSEG & BKPF fields to be substituted !! ).
    Also since the Only user exit (ZXCPDU01) avaliable in FB60 does not have any Export table, I can send the values back to the screen.
    <b>Can any one of you by any luck have a feasible solution for this ?</b>

    hi Saurav.
    there are 14 user exits in thsi transaction. these are as follows
    F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002            FIDCC1: Change IDoc/do not send
    F050S003            FIDCC2: Change IDoc/do not send
    F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
    F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
    F050S006            FI Outgoing IDoc: Reset Clearing in FI Document
    F050S007            FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001            Balance Sheet Adjustment
    FARC0002            Additional Checks for Archiving MM Vendor Master Data
    FEDI0001            Function Exits for EDI in FI
    RFAVIS01            Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00            Line item display: Checking of selection conditions
    RFKORIEX            Automatic correspondence
    SAPLF051            Workflow for FI (pre-capture, release for payment)
    check if anyone of them meets ur requiremnt
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • Help deleting pirated Acrobat 9 Pro Extended and copying new 9 pro

    Hi
    I originally bought a copy of Adobe 9 Pro Extended on ebay for 250 USD but unfortunately it turned out to be priated. I discovered this only when I rang Adobe about there being no serial number shown in the software. Other than that I would never had known.
    Anyway in a bid to get legitimate software I have purchased a copy of Learning Suite 2.
    First step delete Acrobat 9. Well it does not appear in the Add/Remove programs, so I elected to delete it manually. Ie deleting the folder and files. To do this I went to programs (x86) and deleted the folder.
    Installing Learning Suite Disk 1 has installed with no issues.
    Installing Learing Suite Disk 2 (Acrobat 9 Pro), I continue to get an error message that a more capable produst is installed and the installer terminates.
    I have tried the following:
    Using Windows Installer Cleanup: It will not run as it says I have a runtime error.
    CS3 and CS4 Clean Script: It works untill the point where Windows Installer Cleanup cannot be found and then terminates.
    Deleteing files under Documents and Settings
    An option I can see is that I restore to point 5 days ago and then try another tack.
    The hardware and operating system is: Dell Studio i7 with Win 7 Ultimate
    Please help.
    Pete

    Hi 737,
    I have solved similar problems successfully on my PC with WinXP. May be my solution gives you a clue.
    I have installed CCleaner - a freeware cleaning program with satisfactory results.
    First of all I used System Restore in case I had to return to the point from where I started.
    After that I deleted the complete DIR of the 'wrong' program from C:\Program Files\ ... etc.
    For your problem: note that a bunch of Acrobat files are stored in C:\Documents and Settings\Administrator\Application Data\Adobe\Acrobat\....
    and probably also in C:\Documents and Settings\All Users\Application Data\Adobe\Acrobat\....
    I suggest to look for Acrobat files stored for other users as well.
    Delete these Acrobat files or Acrobat DIR's.
    Run the Register tool of CCleaner (second item left column). TIP: Do not tack all check points at once, but start with the upper item (missing DLL) - scan for problems - no back up needed - Correct all problems. Tack the second chechpoint and repeat the procedure, tack the third - and so on.
    It is obvious that the checkpoint(s) you have already scanned will not show any problems.
    Doing this step by step you will not be confronted with a mess (and mass) of information you don't know how to handle.
    Have a look at CCleaner - Tools (third item left column). May be it shows the program (or part of it) you want to delete.
    Check once again whether the program you wish to delete is shown in the software list of the configuration screen.
    All the above is based of WINXP.
    Hope you will be able to find the equivalents in WIN7.
    Have a nice day.

  • Need help deleting graphic junk mail

    I need help. I cannot delete graphic junk mail into trash. When I try it says unable to move messages. Messages could not be moved to mailbox trash. And the dial keeps spinning. I'm not getting mail cuz this junk is bogging down my iPad &amp; iPhone.
    Any suggestions would be greatly appreciated. I tried going on my MAC and deleting but they dont show up there?!? I tried rebooting, hard reset, nothin.
    Please anyone out there ? I'd be eternally grateful.

    If you cannot delete them on the Mac, it will probably be problematic trying to delete them on the iPad as well.
    You said you couldn't delete them on the Mac either. If you mean in the Mac mail app, don't delete them there. Delete them on the server in your web browser. Launch Safari - or whatever browser you use on the Mac and then go to your web mail and delete the email there.

  • Process Chain Help - Delete Overlapping requests

    Dear Experts,
    I have a requitement where I want to delete the ' previous days' request from the cube. This has to be from the data coming from only one DSO.
    I can use the Delete overlapping request process type but I want to know how.
    And again, this has to be only for the current month.I want to delete the overlapping requests of current month i.e now since I am in April I want to delete only the April requests. When I am in  month May I dont want to delete april request anymore.
    In other words I want to delete the april request until April 30th. On May 1st I dont want to delete the april 30th request. On may 1st it shouldn't delete anything. On May 2nd it should delete the May 1st request.
    Can anyone help me with this.
    Thanks,
    KK

    Hi KK,
    If I have understood you correctly, you mean to say your cube is getting loaded from various Datasources and you want to delete the requests only for a particular Datasource and not for others.
    Please correct me if i am wrong.
    If I am right ! Then on the window "Delete Request from Infocube after update" you can "Delete Existing Requests - > Is current month" and on the bottom of that screen you can see a checkbox for Request Selection Through Routine. Check this and you can simply write a routine to do the deletion for only requests loaded from a particular datasource.
    Hope it helps.
    Regards
    Hemant Khemani

  • Help - deleted files won't go away!

    I am trying to permamently delete two files that I no longer need, but which had previously been deployed. Whenever I deploy my application, these files cause me to get the error "The asset is deployed and cannot be deleted. To delete the asset, first undeploy it." Okay, but it won't let me undeploy a single file, so I undeployed the entire application. Afterwards, I still wasn't able to delete the files.
    Just wondering if anyone could help me figure out how to permanently get rid of these files?
    Thanks!

    Follow these steps to delete files from local machine.
    1. Close Workbench ES2 (if already opened)
    2. Goto C:\Users\<YOUR_USER_NAME>\Workbench ES2\<APP_SERVER_NAME>\<APPLCIATION_NAME>\<VERSION>
    3. Delete the files which you no more required.
    4.Open Workbench ES2 and click refresh on seletec application.
    You will get rid of the "Cannot delete" problem.
    Nith

  • Need help:  deleting duplicate photos & freeig up space

    when i first got my macbook pro and transferred all my photos to it from another computer, the iPhoto library was separated into 5 folders (iPhoto Library 1, 2, etc).
    For whatever reason, when i opened iPhoto, there were thousands of duplicates and triplicates and even.... quadruplicates (if thats even a word)
    Anyway, i had to manually delete each duplicate photo, which took hours.
    the problem is, i dont feel like any memory was freed up. Reason being, my pictures folder (where the iPhoto libraries are located) is about 9 GB, while my iPhoto library with 1880 photos is only 2.7 GB.
    So i'm wondering if there's a way to create a new iPhoto library using my current library of photos, and deleting all those extra libraries in my Pictures folder, without in the process deleting any more photos (that aren't extras)

    Max Good:
    I'm guessing you imported each of the other iPhoto libraries into the current one by dragging the entire folder into the open iPhoto window (or selecting the iPhoto Folder to import). That brings in all of the thumbnail files, modified files along with the original files. That's why you have the duplicates.
    Duplicate Annihilator will remove duplicate copies of photos as long as they are the same size. So it will remove duplicates of the full sized images and duplicates of the small thumbnails that were imported. It may help.
    If you want to restart from scratch first run Duplicate Annihilator on your current library. Then do the following:
    1 - copy the Originals folder from it to the desktop.
    2 - open the Originals folder and type Command-F. Set the following search criteria in the search window: Kind = Image, Size is less than 100 KB.
    3 - in the Search results window will be all thumbnail sized image files. Select all of them and drag to the Trash.
    4 - launch iPhoto with the Option key depressed and create a new library.
    5 - drag the Originals folder from the desktop into the open iPhoto window. this will import your originals into the new library with the same rolls as the previous library (the roll dates may be different, however).
    If you have keywords on the photos that you need to save you can apply Tutorial #1 after running Duplicate Annihilator and before Step 1.
    Do you Twango?
    G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM, 80G HD,   Mac OS X (10.4.7)   22 LCD Display, 200G & 160G FW HDs, Canon S400, i850 & LIDE 50, Epson R200

Maybe you are looking for

  • Delete button not available for goods receipt when PO has GR-Based IV set

    Hi ll, the delete button for confirmations is greyed out when the PO has the GR-Based IV set, the return delivery button however is available. There are several goods receipt on the PO some of which have linked invoices but the goods receipt I want t

  • Fillable forms doesn't work when I upload it to google docs

    I have created a form that I can seem to share once I upload it to google docs.  Does everyone I share this doc with need to have adobe Pro?  Is there a help line I can access for live support? 

  • Average Calculation in Hierarchial ALV

    Hi, I need to calculate average mean in hierarchial alv. the standard menu for calculate totals is disabled in both in function module REUSE_ALV_HIERSEQ_LIST_DISPLAY and in the class cl_salv_hierseq_table. Please help with this Regards, Mathivanan.G

  • How to use BAPI_RE_CN_CHANGE to insert conditions

    Hi, I need to insert conditions in a RE contract, i find out that the BAPI BAPI_RE_CN_CHANGE   could do this, but it's not working, the BAPI return is OK, but no records are inserted in the cointract. Anyone can send me the parameters that i had to p

  • Problem moving xcode cocoa c++ app to other mac's

    Hi everyone, My apologies if I am posting this in the wrong forum/section. I am developing a C++ Cocoa app using the latest version of XCode on my MACOS which is running Mountain Lion. It is a fairly simple C++ app but upon copying the executable to