Paramform=yes and submit button

Hi all,
I'm trying to deploy a new report from web (just want to put a link to that report)
This report takes 2 parameters from user input, my link looks like that : http://myserver:myserverport/reports/rwservlet?server=myserver&report=myreport.rep&desformat=pdf&destype=cache&userid=xxx/xxx@xx&paramform=yes
From that url I get a paramform with my 2 parameters which i fill in, then i click on the "submit query" button, but nothing happen, it just reload the same page and never display my reports which run fines when i put the parameter in the url.
I've look in the reports queue manager and my report are show as executed successfully.
Can anybody point me what i'm missing for my reports to be display when i click that button?
I'm using Report Builder 9.0.4.0.33 , for the moment i'm trying to run the reports against an Windows 2000 IDS 9.0.4.1 OC4J instance, and will deploy it on an Redhat 3 ES IAS 9.0.4.2
Thanks in advance.
(sorry for my poor english)

Arun, I am just learning my way around reports in the 10g world so take my suggestion with a grain of salt.
Look at adding a "pfaction=" param to your report_others parameter on the report object. It might look something like this:
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_1='||:block3.deptno||' pfaction=reports/rwservlet?_hidden_server=rep_server&report=my_report_name&paramform=no&destype=printer&desname=\\print_server\HPLaserJ4240n&desformat=pdf&userid=scott%2Ftiger%40oradev.world&p_1='||:block3.deptno);
The sample I pasted above gives more params than you need but I think the pfaction param that is passed in the report_others param of the object basically tells the "Submit" button what to do. I also used a hard coded text string for most of the example where you would probably want to make it more dynamic.
The rp2rro library can handle the encoding of characters to make it URL safe i.e. @ = %40, etc.
See the document below for more details, it also has an encode function example:
http://www.oracle.com/technology/products/forms/pdf/10g/frmrepparamform.pdf

Similar Messages

  • YES AND NO buttons!!

    HOw do you implement a yes and no button and what it does if you press yes and no?

    public static void createConfirmDialogButton() {
            int result = JOptionPane.showConfirmDialog(new JPanel(),
                    "What do you want (Y/N) ??");
            if (result == JOptionPane.YES_OPTION) {
                //Do or add method/code
                JOptionPane.showMessageDialog(new JPanel(), "You selected Yes ;)");
            } else if (result == JOptionPane.NO_OPTION) {
                //Do or add method/code
                JOptionPane.showMessageDialog(new JPanel(), "You selected NO!!!!");
        }Hope this helps !

  • Customizing the text of next,back, and submit buttons in form guides

    Hi,
    We are preparing some forms in Turkish language. So, we need to change the text of next, back and submit buttons in the form guides. Is this possible? If so, how? Thanks for your help.

    This can be done via Flex Builder.  There is a good Next panel button example in this guide:http://help.adobe.com/en_US/livecycle/es/fggettingstarted.pdf.  I believe you can also control the text via the style sheet applied to the guide.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Specifies that the button should only be enabled if the current panel is
    not the last panel, and if a user clicks the button the form guide retrieves
    the next panel in the hierarchy. -->
    <mx:Button click="{panels.selectedIndex++}"
    enabled="{panels.selectedIndex &lt; panels.length-1}"
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <!-- Gets the panels ActionScript class instance that includes the list of
    visible the panels in a form guide. -->
    <mx:Script>
    <![CDATA[
    import ga.views.PanelListView;
    private var panels:PanelListView = PanelListView.instance;
    ]]>
    </mx:Script>
    </mx:Button>

  • Tabbing to "Prev", "Next" and "Submit" buttons in FormsCentral template

    I try to use my mouse as little as possible when entering data in forms.  How does one tab to "Prev", "Next" and "Submit" buttons in FormsCentral template so that all one has to do is press "enter" on the keyboard or spacebar?

    Thanks Roman for your response.  Press Tab or Shift-Tab works fine on my Windows computers but does not appear to work on my IPad.  Maybe it’s an Apple thing.  BTW – loving what I’m seeing so far in FormsCentral.
    Dixie Folzenlogen
    Dixie Folzenlogen
    Project Coordinator
    Striker Land Services Northeastern, L.L.C.
    6801 N Broadway, Ste 310
    Oklahoma City, OK 73116
    330-492-2401 (office)
    405-229-3907 (mobile)

  • How to display warning message box with yes and no buttons

    Hi,
    I am writing the code to delete emp details from database.
    I want to display warning message with yes and no buttons after clicking the delete button in the same page, if yes is clicked, i want to invoke delete() method in AM.
    Is it possible, if yes pls suggest me how to do it.
    Thanks
    Message was edited by:
    user536125

    This is being discussed in
    warning message(dialog page) to be displayed in the same page
    Thanks
    Tapash

  • "Accept and Submit" button disabled

    I am trying to applying for Adobe Runtimes / Reader Distribution License Agreement but the "Accept and Submit" button is disabled on https://www.adobe.com/cfusion/mmform/index.cfm?name=distribution_form. I have tried everthing I could but unable to proceed. Please help. Thanks.

    One more thing: Since I did not have Safari installed on my office computer on which I was facing the problem, I tried at home on my home computer using Safari which worked. So, I do not know if the problem was with web browser only. It is also possible that on my home computer, I might have had another version of Java and/or different settings.

  • Paramform=yes and Rep-52007

    I have forms and report services 10.2.0.2 installed on my Win2003 server.
    Reports runs perfectly with paramform=no but when i use paramform=yes it show html param form but pressing submit query it show The page cannot be displayed page. the same report with paramform=no and hard coding paramter runs perfectly.
    This is the procedure i am using after adding hidden_action i start getting REP-52007 instead of the page cannot be displayed.....
    PROCEDURE show_report(pRptServer varchar2,pRptObj varchar2,pRptFormat varchar2,pRptPath varchar2,pRptParameter varchar2,pParamForm varchar2) IS
    repid REPORT_OBJECT;
    rep_status varchar2(30);
    v_rep VARCHAR2(100);
    vjob_id varchar2(100);
    v_reportserver varchar2(50):=pRptServer;
    v_runformat varchar2(50):= pRptFormat;
    hidden_action varchar2(1000);
    v_report_other VARCHAR2(4000) :='';
    begin
    repid := FIND_REPORT_OBJECT(pRptObj);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,pRptPath);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_reportserver);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,v_runformat);
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,pRptParameter||' paramform='||pParamForm);
    -- code for pfaction
    hidden_action := hidden_action ||'&report='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME);
    hidden_action := hidden_action ||'&destype='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE);
    hidden_action := hidden_action ||'&desformat='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT);
    hidden_action := hidden_action ||'&userid=' ||GET_APPLICATION_PROPERTY(username)||'/'||GET_APPLICATION_PROPERTY(password)||'@'||GET_APPLICATION_PROPERTY(connect_string);
    hidden_action := hidden_action ||'&'||v_report_other;
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'pfaction='||hidden_action||' '||pRptParameter||' paramform='||pParamForm);
    v_rep := RUN_REPORT_OBJECT(repid);
    vjob_id := substr(v_rep,length(v_reportserver)+2,length(v_rep));
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    while rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    loop
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    end loop;
    if rep_status = 'FINISHED' then
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||v_reportserver||'','_blank');
    message('Finished');
    else
    message('Error');
    end if;
    end;
    --------------------------------------------------------------------------------

    Hello,
    There is an example in the document :
    Oracle Forms Services – Using Run_Report_Object() to call Reports with a parameter form
    http://www.oracle.com/technology/products/forms/pdf/10g/frmrepparamform.pdf
    Regards

  • Call Report with ParamForm=yes and Rep-52007

    I have forms and report services 10.2.0.2 installed on my Win2003 server.
    Reports runs perfectly with paramform=no but when i use paramform=yes it show html param form but pressing submit query it show The page cannot be displayed page. the same report with paramform=no and hard coding paramter runs perfectly.
    This is the procedure i am using after adding hidden_action i start getting REP-52007 instead of the page cannot be displayed.....
    PROCEDURE show_report(pRptServer varchar2,pRptObj varchar2,pRptFormat varchar2,pRptPath varchar2,pRptParameter varchar2,pParamForm varchar2) IS
         repid REPORT_OBJECT;
         rep_status varchar2(30);
         v_rep VARCHAR2(100);
         vjob_id varchar2(100);
         v_reportserver varchar2(50):=pRptServer;
         v_runformat varchar2(50):= pRptFormat;
         hidden_action varchar2(1000);
         v_report_other VARCHAR2(4000) :='';
    begin
                   repid := FIND_REPORT_OBJECT(pRptObj);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,pRptPath);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_reportserver);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,v_runformat);
                   --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,pRptParameter||' paramform='||pParamForm);
                   -- code for pfaction
                   hidden_action := hidden_action ||'&report='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME);
                   hidden_action := hidden_action ||'&destype='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE);
                   hidden_action := hidden_action ||'&desformat='||GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT);
                   hidden_action := hidden_action ||'&userid=' ||GET_APPLICATION_PROPERTY(username)||'/'||GET_APPLICATION_PROPERTY(password)||'@'||GET_APPLICATION_PROPERTY(connect_string);
                   hidden_action := hidden_action ||'&'||v_report_other;
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'pfaction='||hidden_action||' '||pRptParameter||' paramform='||pParamForm);
                   v_rep := RUN_REPORT_OBJECT(repid);
                   vjob_id := substr(v_rep,length(v_reportserver)+2,length(v_rep));
                   rep_status := REPORT_OBJECT_STATUS(v_rep);
                   while rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
                   loop
                        rep_status := REPORT_OBJECT_STATUS(v_rep);
                   end loop;
                   if rep_status = 'FINISHED' then
                        WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||v_reportserver||'','_blank');
                        message('Finished');
                   else
                        message('Error');
                   end if;
    end;
    Edited by: Zahid Rahim on Oct 2, 2009 10:39 AM

    but when i use paramform=yes it show html param form but pressing submit query it show The page cannot be displayed page
    for Paramform=yes u have to enter values manually.
    open the following link.
    REP-52007: Parameter form format error
    http://www.orafaq.com/forum/t/97088/2/
    sarah

  • Reader Extension and Submit Button

    Hi,
    I reader extended a form with the Reader extension web application.
    The issue is when I start the process in the workspace and my form is open, the submit is not embed anymoe in the workspace.
    How could I fix that ?

    When a PDF Form is shown in Workspace, the LC server actually attempts to make a modification to the form (called "augmentation") in which a scripting bridge is added to the form. This happens inside the Render Service used to show the form. Workspace needs this to happen so that it can instruct Acrobat/Reader in the browser to hide the submit button, thus allowing the Workspace UI buttons to be used instead. I know that if the PDF Form is signed then LC will not attempt to make this modification in case it breaks the signature. This is what might be happening here because when you reader extend a PDF there is actually a signature applied.
    If this is the cause I can think of two suggestions off hand:
    - You might consider Reader Extending the Form on demand as part of your render service by uploading your Reader Extensions Credential (the p12 / .PFX file) to Trust Store and then using it with the Reader Extensions Service in a new version of your render service.
    - You can use LC Designer to add the "Form Bridge" to your form before you reader extend it with the web application and place it in your repository.

  • Check and Submit Button dont trigger the events

    All,
    I have two webdynpro activex buttons check and submit embedded on the form. These buttons have this script on their respective click events -
    app.eval("event.target.SAPSubmit();");
    app.eval("event.target.SAPCheckFields();");
    This inturn is supposed to trigger the code within the onCheck and onSubmit event handlers of SAP Interactive Form.
    But, when I click these buttons nothing seem to happen.
    Can someone help me resolve this issue as it is very criticial for me.
    Any help is highly appreciated.
    Many thanks,
    Divya

    All,
    I now made the events as "Server"and get an information message stating (Couldn't post data to '' ) when I click on these buttons.
    But, it still  does not trigger the event handler method.
    What can be wrong?
    Many thanks,
    Divya

  • What license is required for import/export AcroForms and Submit button

    I want to know what kind of license do I need to programmatically interact with AcroForms and AcroFields for a asp.net web application.
    I use a third party software (Aspose) to import/export AcroField data value and also dynamically modify some of the fields.
    I also want to place a Submit button on the PDF so users can submit field data to a web server with free PDF readers.
    Have anyone done this before?

    Here are the steps I'm invisioning:
    1. The PDF form template is created with Acrobat Pro and Reader Rights is DISABLED.
    2. The user logins in to a web page and then clicks on a link to download the PDF template.
    3. Before the PDF is streamed to the client browser, the PDF template is modified with Aspose to fill in some personalized user data.
    4. User downloads a PDF with his/her data pre-filled.
    5. User saves and opens the PDF with PDF reader, fill in some more data and clicks on the Submit button on PDF.
    6. Submit button sends all the AcroFields that has data filled in back to a web server.
    7. Server processes the data accordingly.
    So, will a regular Acrobat Pro license be enough for this use?

  • Use checkboxes with drop down and submit button to pas values

    I have a form with six checkboxes, one drop down, and one submit button. I want the check box ON values to be appended to the hyperlinks stored in the drop down. The onclick event of the submit button sends the form results to a url with the checkbox values appended to the end of the hyperlink in the drop down. Need code please. Several programmers have bailed out on this when they got down to the event in the submit button. Can you Sun experts do better??? Here is the code for the form WITHOUT a properly programmed submit button and no javascript.
    <form name="jump">
    <select name="menu">
    <option value="http://www.whateversite.com/CP/View2Ref.php">Option 1 View 2 Test</option>
    <option value="http://www.whateversite.com/CP/AllNew.php?BK=Tap&CH=10&VR=20">option 2</option>
    <option value="http://www.whateversite.com/CP/AllNew.php?BK=Tap&CH=10&VR=20">option 3</option>
    <option value="http://www.whateversite.com/CP/AllNew.php?BK=Tap&CH=10&VR=20">option 4</option>
    </select>
    <input type="button" onClick="window.location.href=document.jump.menu.options[document.jump.menu.selectedIndex].value;
    " value="GO">
        <input type="checkbox" id="chkbx_TR_id1" name="TR" value="ON" alt="TRCheckbox" title="Search 1" tabindex="4">TR
        <input type="checkbox" id="chkbx_ES_id2" name="ES" value="ON" alt="ESCheckbox" title="Search 2" tabindex="4">ES
        <input type="checkbox" id="chkbx_NV_id3" name="NV" value="ON" alt="NVCheckbox" title="Search 3" tabindex="4">NV
        <input type="checkbox" id="chkbx_BT_id4" name="BT" value="ON" alt="BTCheckbox" title="Search 4" tabindex="4">BT
        <input type="checkbox" id="chkbx_SM_id5" name="SM" value="ON" alt="SMCheckbox" title="Search 5" tabindex="4">SM
        <input type="checkbox" id="chkbx_EN_id6" name="EN" value="ON" alt="ENCheckbox" title="Search Bible Encyclopedia" tabindex="4">ENThe resulting URL when the submit button is hit should be like this if all check boxes are checked.
    http://www.whateversite.com/CP/AllNew.php?BK=Tap&CH=10&VR=20&EN=ON&TR=ON&ES=ON&NV=ON&BT=ON&SM=ON&TR=ON"
    Thank you in advance for any replies.

    This forum is concerned with Java and not Javascript (they are not the same) . Though there are forum members who could help you on this you would probably do better to go to a Javascript forum.

  • cfinput search box and submit button

    So I'm doing a search box with a submit button
    I'd like it to be intuitive by having the words "search..." inside it by default
    how do I make "search..." disappear when the user clicks on the box ?
    is there any preference to post or get ?

    If it's a search box though, making it a get probably makes sense: it doesn't change the system so it's not really a POST sort of operation, plus the punter can bookmark the search (results) URL which is quite handy.
    Google uses a GET, for example.
    But there's no hard-and-fast rule, obviously
    As for the original question: this is really a client-side question, not a CF question (despite using <cfinput>).  As someone else suggested, read up on HTML and probably the JavaScript event model.
    Adam

  • Signature field and submit button not working

    I recently upgraded to LiveCycle Designer ES2 and am having problems with some functionality.  I created a form with 3 signature fields and a submit button for the final signator to email the form back.  None of the signature fields work; neither does the submit button.  I did everything the same as I had in the previous version of the software.  However, it appears that there have been some changes that I'm unaware of.  I read about locking objects, but got a little confused.  Can someone tell me (in very lay terms) what I need to do to get these functions to work? 

    George,
    Then, I guess I don’t know what I’m looking at.   When I look at the document properties, it shows that rights have been granted.  See the screen shot below.
    Would you tell me how I should enable Reader?
    Gloria
    Gloria Díaz
    Gloria Díaz

  • Help with submit button, signatures and locking fields

    https://acrobat.com/#d=sCcToPsLqquP0uePmVL1pQhttp://https://acrobat.com/#d=ZsRL5CeME*4iV3VHnvUFXw
    Well here's a doozy for ya. I have no idea what I'm doing as you will be able to see when you look at my form.
    What I want to happen is to have the user fill out the form, choose the operations manager and select submit button associated with the drop down box. All other dropdown boxes and submit buttons should be hidden. I need the form to lock so there are no edits except the signature field, the next dropdown box and submit button. I'd like to customize the email with a specific subject line and specify the email address based on the person selected from the drop down box. I'd like this to repeat itself until there are no more signature fields left. It is very important that this document follow the order specified.
    I tried to use an example Niall put out there to use regular buttons as submit buttons with script. I changed a couple things and it worked to submit the form based on the person selected but I still do not know how to lock the fields. Long story short, I broke what did work and don't know how to do what I really want to do or fix what had once worked. I don't understand javascript so please, if you're willing to help teach me, be patient and spell it out like i'm speaking a foreign language.
    Oh boy, even I don't want to do this. What a mess!

    I believe that you should re-post this in either the Forms or the Designer forum.  You are more likely to get the right folks to look at it there.
    Generally this forum is for building custom Document Service Component (DSC) plugins that extend the LiveCycle ES server side product.

Maybe you are looking for