Call submit request form

Hi,
In my custom controller, I want to call the submit request form,
and pass a specific request id in order to open a XML Publisher report I created.
I am using the following code:
com.sun.java.util.collections.HashMap parameters = new HashMap();
String url = "OA.jsp";
parameters.put("akRegionApplicationId", "0");
parameters.put("akRegionCode", "FNDCPPROGRAMPAGE");
String id = "" + V_Request_ID + "";
parameters.put("requestMode", "DEFERRED");
parameters.put("requestId", id);
pageContext.setForwardURL(url,
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
parameters,
true,
OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
OAWebBeanConstants.IGNORE_MESSAGES);
But my page is not redirecting...without giving any errors...
Any ideas ?
Thanks
Edited by: costas on 29 Μαρ 2011 11:31 μμ

Hi,
I used OA.jsp?akRegionCode=FNDCPREQUESTVIEWREGION&akRegionApplicationId=0
and I'm getting the following error:
oracle.apps.fnd.framework.OAException: No data found for region (FNDCPREQUESTVIEWREGION).
Thanks

Similar Messages

  • Report name LOV in Submit request form in Oracle Applications

    One of my client have a requirement to make modification in List of Values of Report Name on Submit Request form in Oracle Applications.
    Currently or by default it displays the reports order by Applications name, but the requirement is that It should display reports Order by Report Name instead of Applications Name.
    Any one have idea how to customized the form, can it is possible through custom.pll or any other method.
    THanks in Advance
    Muhammad Ali

    The Report Submission screen is FNDRSRUN. The LOV for the concurrent program name is based on the PROGLOVDEF record group, which has the "order by a.application_name, p.user_concurrent_program_name" order by clause.
    As far as I know, you cannot modify the query for a "static" record group (defined in the form) at run time, so I can't see that you could do anything with the CUSTOM.pll.
    However, you could create a customised version of the form (same name) with a different order by on the record group, but then you have to reapply the customisation every time the form is patched (or you lose the customisation).
    You can create a custom copy of the form (different name) and then update all of the functions that call the standard form to call your custom form, but there are lots of functions that call this standard form and you have the problem with patches overwriting the customised function anyway.

  • Unable to find Active Users Concurrent Program in Submit Requests Form

    We applied a patch 9647331 on our development instance (R12.1.1). It completed succesfully. But when we are trying to submit ACTIVE USERS concurrent request, we are unable to find it in the Submit Requests Form.
    However, we are able to submit the Active Users program using CONCSUB.
    Not sure if the patch has done anything.
    Please suggest.
    Regards,
    RA.

    We applied a patch 9647331 on our development instance (R12.1.1). It completed succesfully. But when we are trying to submit ACTIVE USERS concurrent request, we are unable to find it in the Submit Requests Form.From which responsibility?
    Have you verified if the concurrent program is added to the Request Group which is linked to this responsibility?
    Not sure if the patch has done anything. I do not think so. Was the patch applied successfully included all pre-reqs?
    Thanks,
    Hussein

  • Copy button on Submit request form

    Hi All
    Can we configure Copy button on Submit Request form to view names as per our requirement.
    If yes, How.
    Please share any doc id.
    Thank You for your help!
    -C

    by mistake, got marked as answered.

  • How to get the User entered value in the Submit request form for a parameter of a concurrent program in Oracle applications.

    Hi All,
    I have a requirement where i need to get the user entered value in the Parameter of a concurrent program while submitting it. i tried to query the FND_CONCURRENT_REQUESTS table but in that it stores the ID values from the value set of the Parameter.
    After submitting the Concurrent request when we click on the view Details button it opens a form where it displays the arguments in the parameter field .  i want to get that string.
    Thanks a lot in advance for your time and help.
    - Vijay

    Hi All,
    I have a requirement where i need to get the user entered value in the Parameter of a concurrent program while submitting it. i tried to query the FND_CONCURRENT_REQUESTS table but in that it stores the ID values from the value set of the Parameter.
    After submitting the Concurrent request when we click on the view Details button it opens a form where it displays the arguments in the parameter field .  i want to get that string.
    Thanks a lot in advance for your time and help.
    - Vijay

  • Request being called thru a form is not completing or not getting executed

    Hi,
    Concurrent request being called by a form is not getting executed or not called by the procedure using by the form
    Please give the procedure to submit a concurrent request thru a form
    Rgds,
    Alig

    Hi Alig;
    What is your EBS version?Please check below link and note
    Oracle Applications Developer's Guide
    http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115devg.pdf
    Forms Customization
    Re: Enable Submit Button at User Level and Disable at Block Level
    Forms Personalization Document
    Re: Forms Personalization Document
    Re: Form Personalization
    Regard
    Helios

  • How to call view requests window from forms

    I have a custom form in which i am running a concurrent program using FND_REQUEST.SUBMIT_REQUEST. after I submit the request, I manually go to the view -> requests -> viewoutput to see the report output. Is there any function which can be used in the form to skip this manual step and go directly to the view requests screen?

    Hi,
    You can use fnd_function.execute to open any form from another form. For instance, using fnd_function.execute('FND_FNDCPQCR') should open the Requests form. You can play with the parameters of the form (or use a different function) until you get what you actually need.
    Hope it helps.

  • Completing form on web. I click to submit request. Nothing happnens.

    When on a website, I click "submit request", there is no message tellling me it is in process. Nothing takes place. It's dead. The request does not go through.

    When on a website, I click "submit request", there is no message tellling me it is in process. Nothing takes place. It's dead. The request does not go through.

  • How to submit a form with checkboxes in a page flow?

    I'm having some trouble with a form that contains several checkboxes, and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean, can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

    I am new to this, but I think this may solve your problem:
    I am not sure if this is what you are looking for, but you can create a LinkedHashMap
    with the req key/value pairs in the page-calling action in the pageflow and then
    pass that via a getRequest().setAttribute("myCheckboxes",myCheckboxHashMap);
    You can then access it in code using the optionsDataSource portion of the netui:checkBoxGroup
    - ie
    <netui:checkBoxGroup dataSource="{actionForm.thisCheckbox}" optionsDataSource="{request.myCheckboxes}">
    Hope this helps!
    m
    "Craig Coffin" <craig+1268fbec@nfld-dot-com> wrote:
    I'm having some trouble with a form that contains several checkboxes,
    and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an
    XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give
    me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean,
    can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

  • REST call from PDf form returns error

    I have created a very simple process that allows a user to enter data into a PDF form and submit the form for archiving.  In the process I have used LC Output to flatten the PDF and I am using the Sharepoint connector to create and archive the document. 
    When I do this from the LC Workspace it works no problem.  I can go out the SharePoint and see that archive document and all of the data is there.  I now want to be able to host the form in another location and have the same functionality.  To do this I have change the submit button on the form so that it makes a REST call to the LC server in order to call the correct process.  To be sure that I had the right URL for the REST call I took it right out of the Adminui.
    I have tested the URL in a browser and the process kicks off no problems.  The issue is when I place the URL in a submit button and try to submit the form I get a message box back stating that there was an invalid server response and nothing happens.  I am not sure but I do not think that it is even getting to the LC server.
    I am using LC ES2 and opening the form in Acrobat 9.5.1.  As mentioned it is a very simple process as I am just trying to prove out that a LC process can be invoked using a REST call from a PDF.

    Hey Amr,
    thanks for your feedback. Let me write down some more facts about my environment so we might be able to track down what's going wrong:
    - Virtual PC using Windows Server 2012
    - SharePoint 2013 with September CU
    - Compatibility Level 15 Webapplication using Default "Claims Based Authentication" with form based authentication activated
    - Visual Studio 2013 Console Application .NET 4.5 x64 Build Target
    Writing down what my base configuration is seems to have brought light into the dark. As soon as I deactivated FBA authentication I was able to execute the request without any problems. So now I know what I have to look for. Thank you!
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

  • How can I submit the form back to the server, then reload the page again

    Hi
    I have 2 comboboxes, one is already populated with data by the time the page is loaded. The second combobox will be populated depending on the value chosen from the first combobox
    I need to know how can submit the form to go back to the server with the selected value from the first combobox, get some data from the database and then regenerate the whole page again filling the second combobox with the collected data
    for example, here s my select tag:
    <select name="country" id="firstBox" onchange="populateSecondList()">
         <option value="" SELECTED>
         </select>
    <select name="city" id="firstBox">
         <option value="">
         </select>
    what should I have to add in the retrieveSecondOptions() function?

    declare a second combo box in a iframe and to iframe tag there is attribute to which you can sepcify the file name like one.jsp
    now call onchange event on first combo box and forward request to one.jsp

  • Attachments on the Request Form

    Attachments on the Request Form
    I know you can add file attachments in the initial customer request by selecting the Add and Review Order button and attaching a file on the Order Review form.  But is there a way to have a file attachment button on the request form that will attach a file to the serivce request the same way?
    We are using RequestCenter 2007_1
    thanks
    CMH

    Here is an approach:
    1. Implement something like this on the file server:
    http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=7361&lngWId=4
    (We use an inhouse version of this)
    I would change this script to post back the file name to the parent window as well as some naming/size validations, etc ...
    2. Call the file upload functionality from your service fo

  • My safari is blocked. When I press a window comes up sasking Are you sure you want to submit this form again and it will not let me cancel or submit

    My safari is blocked. When I press a window comes up sasking Are you sure you want to submit this form again? and it will not allow me to cancel or submit

    These are your options:
    1. Restore the iPhoto library from the most recent backup that predates the issue.
              Advantages: Always works, if library damage is causing the problem and the backup is intact.
              Disadvantages: Impossible if you don't have a backup. All changes made since the backup are lost.
    2. Repair or rebuild the library. Be sure to back it up first.
              Advantages: May solve the problem with no loss of data.
              Disadvantages: May fail. May take a long time if the library is large.
    3. Scavenge the library with a third-party application called "iPhoto Library Manager," which you can find in a web search. From the application's menu bar (not the iPhoto menu bar), select Library ▹ Rebuild.
              Advantages: All images should be preserved.
              Disadvantages: All books, calendars, and slideshows will be lost.

  • Question on the upload attachments process in a request form

    hi,
    I have a question on the upload attachments process in a request form. I have 2 pages, one is a request form and the other is an attahment page
    The request form let users fill the mandatory fields (e.g. name, email, address...) And in the form, there is a link (URL without submit) to the attachment page.
    In the attachment page, users can upload the supporting file for their rquest. The file will be uploaded to APEX_APPLICATION_FILES view and then it will be copied it to a customized table (table A) and remove from the view.
    When the users finish uploading files (i.e. the files are stored in table A), users need to press a "Done" button back to the request form to submit the form.
    My question is:
    As the request form is not yet submitted while the attached files are stored in table A, there is no request_id (request from table primary key generated in an Insert trigger after submission) is generated to tag with the files in table A. Is there any standard practice to do this?
    What I am doing now is to generate a hidden value in sequence when user goes to the attachment page. The hidden value is stored in table A togehter with the files when uploading. When user goes back to the request form, the hidden value is passed back as session cache. When the request form is submitted, I make an update statement by using the hidden vaule in the Insert trigger to tag the request_id to the attached files in table A.
    Is my way appropriate?
    Thanks for advice.
    cheers,
    Pong

    Pong,
    Yes, this would work just fine. You may want to consider enabling session state protection so that your process is not succeptable to URL tampering, which would cause a user to change the value of the REQUEST_ID in the URL and potentially associate other attahments with their request.
    Thanks,
    Scott

  • REP 110 & REP 0110 .calling reports from Form 10g(10.1.2.0.2)

    Hi All,
    We are migrating form from Oracle form 6i to Oracle 10g(10.1.2.0.2). I am calling reports from forms
    using Web.Show_Docment(). When we run reports in report builder 10g it works fine.
    But when we try to run reports from Forms 10g it throws error which is given below.
    We want to run reports from UNIX. After using this url to submit report we get error REP 110 and REP 0110
    URL
    http://GEM:7777/reports/rwservlet?server=rep_server&report=/u01/forms/QA_Forms10g/GEMREP.rdf+DESTYPE=CACHE+DESFORMAT=HTML+p_user_id=XYZ+p_client=2
    ERROR
    REP-110: File '/u01/forms/QA_Forms10g/GEMREP.rdf DESTYPE=CACHE DESFORMAT=HTML p_user_id=XYZ p_client=2' not found.
    REP-0110: Unable to open file '/u01/forms/QA_Forms10g/GEMREP.rdf DESTYPE=CACHE DESFORMAT=HTML p_user_id=XYZ p_client=2'.
    I will really appreciate your help.
    Thanks
    Sandy

    Hello,
    You are mixing 2 separators in the URL : & and +
    Use only one separator in the URL :
    Example :
    http://GEM:7777/reports/rwservlet?server=rep_server+report=/u01/forms/QA_Forms10g/GEMREP.rdf+DESTYPE=CACHE+DESFORMAT=HTML+p_user_id=XYZ+p_client=2
    Regards

Maybe you are looking for

  • Need help using flash buttons

    Can anyone help me with flash buttons? I am trying to build my first website, and my five flash buttons (inside a 5 col. table) for page navigation work fine in testing all 5 web pages with mozilla firefox, and they look the same on the index page wh

  • SCEP definition updates for clients in DMZ via UNC is not working.

    Hello, I have configured SCEP definition updates via UNC method for my Win 8.1 clients in DMZ and its not working. Script is properly associated with task scheduler and downloading definition to shared folder properly. Even running the mpcmdrun.exe -

  • Oc4j, jdeveloper and apache, port conflicts ?

    Hi all, I am currently in the process of deploying my first EJB on Oracle 9i AS. I have successfully installed oc4j.zip and set the login credentials. I am however, unable to connect to the index page of the OC4J server from any computer besides the

  • Potential concurrency bug in OC4J 10.0.3 WebServices TestPageProvider

    Hi, I was wondering whether anybody else was having problems with the OC4J 10.0.3 preview when placed under a light load of concurrent users. We have downloaded the JAX-RPC stateless Web service WebServices sample from http://www.oracle.com/technolog

  • Mavericks bugs: open in new tab, slow type, slow Safari, slow wake

    I just upgraded to Mavericks in order to get Pages, which I needed for a project. Otherwise, Lion was working fine. Now, Safari seems slow, it often won't do the open in new tab click, it's slow sometimes when typing things in the web address area, a