Form Submits twice with IE

Hi, my problem is that my form is submitted twice when using IE 7, but only once on firefox as desired. The steps my jsp app takes are:
1. submit details
2. validate details
3. submit details to database
4. faces-config navigates to appropriate download page and starts download
The second submit happens when the user clicks on the IE warning bar that allows the download. I'm using <h:commandButton id="submit" value="Submit" action="#{userInfoBean.submit}" />
All help is appreciated.

I have the smae issue!!

Similar Messages

  • The form submits twice !

    Hi,
    I'm getting an issue while submitting a pdf form to a php script.
    the javascript code is:
    this.submitForm({cURL: "http://www.mysite.fr/myscript.php#FDF",cSubmitAs: "XFDF"});
    when the code is executed, myscript.php  is called 2 times !!
    I can deal with that but i have to Code spécific actions (php side) to avoid twice Inseert, Update and so on...
    It seems to be a BUG of the submitForm function ? do you know how to get rid of it ?
    Thanks.

    I have the smae issue!!

  • Page hangs and submits twice

    I have page which has three on-submit processes. All of the processes call stored procedures. One of the process takes over 6 to 8 minutes and causes the page to hang and then times out, i.e. instead of showing the next page, I see "page cannot be displayed" message. Moreover, it seems that page has been submitted twice. The other strange thing is that stored procedures called by the page processes finish successfully even though the user do not go to the next page to see the results of the work accomplished by these store procedures.
    I have tried this experiment with a simpler page with one submit button which invokes one long running process when pressed. It seems when page hangs it submits again. I can attest this as there is a row being inserted by the stored procedure called by the on-sumbit process. I see this row being submitted twice with a time span of approximately 5 minutes (there is column for create_date and create_user).
    I have seen suggestions for using dbms_job for long running process, but this operation has to be done synchronously and user needs to see the results of the process on the next page. If the job is done asynchronously, then how can I refresh the hanging page and take the user to the result page.
    TIA,
    Salman

    Salman,
    There is an Apache timeout directive that you can increase, which should solve both problems. It looks like after the timeout the request is being retried, which may be the result of a different Apache directive. The access and error logs should show you some useful information about these cases. Some other reader might offer what those directives are, I'm not sure.
    That you are seeing the page processes complete even though the HTTP request times out is not strange. Once the server-side code is invoked, the request timeout cannot stop it.
    Scott

  • When submitting form, form elements like text box are not available in my action page. This occurs only for several times. if i resubmit the form, i can get the form elements in my action page. May be form get submitted twice in firefox 3.6.13

    I have a simple web page with two form elements say, two text box and submit button. when submitting my form, i didn't get the form data in my action page. This occurs only in Firefox 3.6.13 several times. Not always.
    May be form get submitted twice?
    Note: Remember, i am not facing this issue. However my friend is facing this issue.

    I have a simple web page with two form elements say, two text box and submit button. when submitting my form, i didn't get the form data in my action page. This occurs only in Firefox 3.6.13 several times. Not always.
    May be form get submitted twice?
    Note: Remember, i am not facing this issue. However my friend is facing this issue.

  • In a JSP Page, onclick of submit, it is submitting twice.

    Hello! everybody...
    Please help me.. its urgent!
    I have a jsp page, after i enter values in textboxes and click on submit, i am calling a javascript function wherein i am submitting the form.
    The problem is, it is submitting twice and inserting the record in the database twice.
    here is my code.
    anybody pls let me know where the problem is?
    Thanks in advance.
    /*Javascript Function for onsubmit*/
    function addVersion()
                             alert('hi');
                             this.VersionDynaForm.action = "./Version.do?param=add";
                             this.VersionDynaForm.submit();
    <html:form action="/Version.do" styleId="VersionDynaForm" onsubmit= "return addVersion()">
    <input type="hidden" name="actionType" value="">
         <table cellspacing=0 cellpadding=2 border=0 class="table_view" id="TABLE3" >
              <tr class="table_data">
                        <td class="smalltext" width="200px" align="left"><b>Year<span style="color:Red;">*</span></b></td>
                        <td width="150px">
                        <select id="FLP_YEAR" name="FLP_YEAR" class="mediumtext" style="width:120px; height:30px" onchange="FLP_YEARChanged()">
                        <option value="">Select</option>
                             <%
                             ArrayList year = new ArrayList<Version>();
                             year = (ArrayList)session.getAttribute("years");
                             if(year!=null)
                        for(int i=0;i<year.size();i++){                                 
                             Version temp1 = (Version)year.get(i);
                             if(temp1.getFLP_YEAR().equals(Element6)){
         %>
              <OPTION selected value='<%=temp1.getFLP_YEAR()%>'><%=temp1.getFLP_YEAR()%></OPTION>
                        <%}
                             else{%>
                             <OPTION value='<%=temp1.getFLP_YEAR()%>'><%=temp1.getFLP_YEAR()%></OPTION>
                        <%}
                        %>
                        </select>
                   </td>
                   <td width="150px"></td>
                   <td width="200px"></td>
                   <td width="200px"></td>     
                   <td width="150px"></td>
                   <td width="150px"></td>
                        <td width="200px"></td>
         </tr>
         <tr class="table_data">
                        <td class="smalltext" width="200px" align="left"><b>Business Line<span style="color:Red;">*</span></b></td>
                        <td widht="150px">
                        <select id="LPA_BUSINESS_LINES" name="LPA_BUSINESS_LINES" class="mediumtext" style="width:120px; height:30px" onchange="alert('hi');testChanged()">
                        <option value="">Select</option>
                             <%
                             ArrayList lst1 = new ArrayList<Version>();
                             lst1 = (ArrayList)session.getAttribute("mnemonic1");
                             if(lst1!=null)
                        for(int i=0;i<lst1.size();i++){                                 
                             Version temp1 = (Version)lst1.get(i);
                             if(temp1.getLPA_BUSINESS_LINES().equals(Element1)){
         %>
              <OPTION selected value='<%=temp1.getLPA_BUSINESS_LINES()%>'> <%=temp1.getLPA_BUSINESS_LINES()%></OPTION>
                        <%}
                             else{%>
                             <OPTION value='<%=temp1.getLPA_BUSINESS_LINES()%>'> <%=temp1.getLPA_BUSINESS_LINES()%></OPTION>
                        <%}
                        %>
                        </select>
                   </td>
                   <td width="150px"></td>
                   <td width="200px"></td>
                   <td width="200px"></td>     
                   <td width="150px"></td>
                   <td width="150px"></td>
                        <td width="200px"></td>
         </tr>
         <tr class="table_data" align="left">
                        <td class="smalltext" width="200px" align="left"><b>RC Number<span style="color:Red;">*</span></b></td>
                        <td width="150px">
                        <select id="LPA_RC_NUMBER" name="LPA_RC_NUMBER" class="mediumtext" style="width:120px; height:30px" onchange="LPA_RC_NUMBERChanged()">
                        <option value="">Select</option>
                             <%
                             ArrayList lst2 = new ArrayList<Version>();
                             lst2 = (ArrayList)session.getAttribute("rcmnemonic");
                             if(lst2!=null && Element2!=null)
                        for(int i=0;i<lst2.size();i++){                                 
                             Version temp2 = (Version)lst2.get(i);
                                  if(temp2.getLPA_RC_NUMBER().equals(Element2)){
         %>
              <OPTION selected value='<%=temp2.getLPA_RC_NUMBER()%>'> <%=temp2.getLPA_RC_NUMBER()%></OPTION>
                        <%}
                             else{%>
                             <OPTION value='<%=temp2.getLPA_RC_NUMBER()%>'> <%=temp2.getLPA_RC_NUMBER()%></OPTION>
                        <%}
                        %>
                        </select>
                        </td>
                        <td class="smalltext" width="200px" align="left"><b>Version<span style="color:Red;">*</span></b></td>
                        <td width="150px">
                        <select id="LPA_VERSION_ID" name="LPA_VERSION_ID" class="mediumtext" style="width:120px; height:30px" onchange="LPA_VERSION_IDChanged()">
                        <option value="">Select</option>
                             <%
                             ArrayList ver = new ArrayList<Version>();
                             ver = (ArrayList)session.getAttribute("version");
                             if(ver!=null && Element5!=null)
                        for(int i=0;i<ver.size();i++){                                 
                             Version temp3 = (Version)ver.get(i);
                                  if(temp3.getLPA_VERSION_ID().equals(Element5)){
         %>
              <OPTION selected value='<%=temp3.getLPA_VERSION_ID()%>'> <%=temp3.getLPA_VERSION_NO()%></OPTION>
                        <%}
                             else{%>
                             <OPTION value='<%=temp3.getLPA_VERSION_ID()%>'> <%=temp3.getLPA_VERSION_NO()%></OPTION>
                        <%}
                        %>
                        </select>
                        </td>
                   <td width="150px"></td>
                   <td width="200px"></td>
                   <td width="200px"></td>     
                   <td width="150px"></td>
         </tr>
         <tr class="table_data" >
                   <td class="smalltext" width="200px" align="left"><b>Project<span style="color:Red;">*</span></b></td>
                        <td width="150px">
                        <select id="LPA_PROJECT_NAME" name="LPA_PROJECT_NAME" class="mediumtext" style="width:120px; height:30px" onchange="LPA_PROJECT_NAMEChanged()">
                        <option value="">Select</option>
                             <%
                             ArrayList lst3 = new ArrayList<Version>();
                             lst3 = (ArrayList)session.getAttribute("project");
                             if(lst3!=null && Element3!=null)
                        for(int i=0;i<lst3.size();i++){                                 
                             Version temp2 = (Version)lst3.get(i);
                                  if(temp2.getLPA_PROJECT_NAME().equals(Element3)){
         %>
              <OPTION selected value='<%=temp2.getLPA_PROJECT_NAME()%>'> <%=temp2.getLPA_PROJECT_NAME()%></OPTION>
                        <%}
                             else{%>
                             <OPTION value='<%=temp2.getLPA_PROJECT_NAME()%>'> <%=temp2.getLPA_PROJECT_NAME()%></OPTION>
                        <%}
                        %>
                        </select>
                   </td>     
                   <td align="left" class="smalltext" width="150px"><b>Version Name</b><span style="color:Red;">*</span></td>
                   <td><input type="text" class="smalltext" property="LPA_VERSION_NAME" name="LPA_VERSION_NAME" value="" maxlength="30"/></td>
                   <td width="150px"></td>
                   <td width="200px"></td>
                   <td width="200px"></td>     
                   <td width="200px"></td>
         </tr>     
    </table>          
    <table cellspacing=0 cellpadding=2 border=0 class="table_input" id="TABLE2" >     
              <tr class="table_input">
                   <td height="10px" colspan="5" class="table_top_td" align = "right" >
                   <INPUT id="button" class="mediumtext" style="width:80px; height:20px;" type="submit" value="NewVersion" class="btn" >
                   <INPUT id="button" class="mediumtext" style="width:80px; height:20px;" type="button" value="Update" class="btn" name="method" onclick="javascript:return updateFunction();">
                   <INPUT id="button" class="mediumtext" style="width:80px; height:20px;" type="button" value=Cancel class="btn" name="method" onclick="history.go(-1)" >
                   </td>
              </tr>
    </table>

    hi
    change the type="button" in the following line
    <INPUT id="button" class="mediumtext" style="width:80px; height:20px;" type="submit" value="NewVersion" class="btn" >
    and call the javascript function on onClick in above line and dont call it from form(tat u hav done), remove it from form
    then it wont submit twice
    -venkat

  • Preventing user to click on links once form submitted

    Hi All,
    Preventing end user to click on any links once he/she submitted the form until he/she received a response from it.
    I can use filter or shale techniques for this, but it prevents the multiple form submits but not the links.
    (ie, hyperlinks can’t control with the above techniques I suppose.)
    I also used hourglass technique of Javascript. It will show you the hour glass icon once you submitted the form/page.
    Mean while if you mouse over any links on the page (I have other command links on the same page), the hourglass icon showing with hand icon.
    <tr:commandButton provides one attribute blocking=”true”, is not working in this condition.[setting true – blocking user input when the action is initiated and will stop when response received from server.]
    At least if I provide a progress indicator by using <tr:progressIndicator, well enough to the user as some process is going on so that end user can wait for some time.
    I have gone through in detail about it - http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_progressIndicator.html
    Please provide your inputs, how to implement by using <tr:progressIndicator for my <tr:commandButton.
    Or any other fruitful solution for this?
    Thanks in advance :-)

    No idea about the Trinidad component library, but you can also use CSS/JS/DHTML to "freeze" the window during the onsubmit. Add a transparent iframe overlay which covers the whole screen and turn it on during the onsubmit.
    E.g.
    <body>
        <iframe id="freeze" frameborder="0" border="0"></iframe>
        <h:form onsubmit="freeze();">
    iframe#freeze {
        position: absolute;
        visibility: hidden;
        width: 100%;
        height: 100%;
        opacity: 0.0;
        filter: alpha(opacity=0);
    function freeze() {
        document.getElementById('freeze').style.visibility = 'visible';
    }

  • ProcessFormSubmission form submitted as pdf issue

    Hi
    I have a scenario where, the form must be submitted as PDF content_type, i.e while designing the form, I am setting the submit form as "PDF" format. I have written a J2EE application that receives the submitted form.  Here is what, I am doing.
    Document formData =
    new Document(request.getInputStream()); 
    formData.copyToFile(
    new File("C:/home1/eformwas/InputFile.pdf"));
    I ensured that the submitted content from the web browser is a pdf file by opening the InputFile.pdf in the acrobat reader and I verified that the form is siubmitted with the data that I have posted.
    Next step, I wanted to process this form, and extract out some of the data elements in it. Hence I did the following
    RenderOptionsSpec processFormSubmissionOptionsSpec =
    new RenderOptionsSpec();
    processFormSubmissionOptionsSpec.setXMLData(
    true);processFormSubmissionOptionsSpec.setPDF2XDP(
    true);processFormSubmissionOptionsSpec.setExportDataFormat(
    "XMLData");
    formsResultObject = formsServicesClientObject.processFormSubmission(formData ,"HTTP_REFERER=referrer&HTTP_CONNECTION=keep-alive& CONTENT_TYPE=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml&CONTENT_TYPE=text/ xml",
    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",  
    processFormSubmissionOptionsSpec);
    When I execute the above code, I get the following error at processFormSubmission method,
    Caused by: com.adobe.livecycle.formsservice.exception.FormServerException: Parse error on document: DataSets error: Parse error on document: FSRequest error:  Content is not allowed in prolog.
    Any idea, of what is causing this issue. Can I process a form that is submitted as "pdf" content type.? I guess, I can.
    As a cross check, I created the whole scenario by creating a process in the LC process modeller and used the processFormSubmission task of the Forms Service and I was successful in processing the form. Not sure, am I missing to set something in RenderOptionSpec or is this a bug in LC SDK ?
    LiveCycle error log, also reports the error when invoked through LC SDK API
    [1/26/10 11:13:36:627 EST] 0000008a FormServerExc E com.adobe.livecycle.formsservice.logging.FormsLogger logMessage ALC-FRM-001-016: Parse error on document: DataSets error: Parse error on document: FSRequest error: Content is not allowed in prolog.
    However, everything works like a charm if processFormSubmission invoked as part of LC process model. I even downloaded the data part as getOutputXML task in the process model and it looks well formed.
    Will greatly appreciate your response.
    Many Thanks
    Gopala...

    Hi,
    The issue got resolved. Just posting the solution to benefit other folks who can potentially face the same issue.
    It worked by setting the content_type="application/pdf" only in environment buffer parameter of formSubmission when the submitted content is of type pdf.
    Actually, I referred to the livedocs adobe article @ http://livedocs.adobe.com/LiveCycle/8.2/programLC/programmer/help/wwhelp/wwhimpl/js/html/w whelp.htm?&accessible=true
    which specifies the following, which is contradictory to the solution.
    "You can also specify multiple content type values such as:
    CONTENT_TYPE=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml
    to ensure various form submissions can be used"
    Regards
    Gopala...

  • Oracle Collaborate Suite ORA-6502 error during loging or form submitting

    Hi!
    I had Oracle Collaborate Suite ORA-6502 error during loging or form submitting:
    Internal error (WWC-00006)
    An unexpected error has occurred (WWS-32100)
    ORA-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWC-36000)
    Unexpected error encountered in wwsec_api.person_info (ORA-06502: PL/SQL: numeric or value error: character string buffer too small) (WWC-41417)
    Error (WWS-20000)
    An unexpected error has occurred (WWS-32100)
    ORA-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWC-36000)
    Unexpected error encountered in wwsec_api.person_info (ORA-06502: PL/SQL: numeric or value error: character string buffer too small) (WWC-41417).
    This happened when:
    I was using Russian letters in OCS HTML forms (for example - in Administration provision console or in my own HTML forms)
    and only I work in Linux (with UTF-8 encoding) (in Windows with win1251 encoding all is OK).
    My Database NLS not-null Parameters are:
    NLS_LANGUAGE      - AMERICAN
    NLS_LENGTH_SEMANTICS      - BYTE
    NLS_TERRITORY      - AMERICA
    NLS_CHARACTERSET - AL32UTF8
    NLS_NCHAR_CHARACTERSET - AL16UTF16
    WHAT MUST I DO TO AVOID THIS SITUATION?
    Thank
    Valery

    All,
    It appears that the page Javascript maximum limit size was reached. The error stopped appearing after some of the page Javascript code was removed out to Application Static Files. I wonder if there exists any "direct" indicator by the system whenever the size limit has been reached?
    Again, the run error only occurred when the page was loaded in "Debug" mode.
    Bernard

  • Form submitting to itself

    I have a form that submits to itself. When there is a
    server-side error, for ex. a key value is already in the database
    table, when the form comes back with the error message on the
    screen, the values move over in the entries and sometimes the
    numbers or letters on the end or beginning of the values are
    missing. What can I do to prevent this from happening? I am using
    Firefox and Internet Explorer for my browsers.
    Thank you for any advice you can give me.

    Below is a text box for a SSN number:
    <input name="ssn1" type="text" id="ssn1" <cfif
    isdefined("form.ssn1")>
    value = "<cfoutput> #form.ssn1#</cfoutput>"
    <cfelse> value =
    "<cfoutput>***</cfoutput>"</cfif>size="3"
    maxlength="4" onKeyUp ="validotherssn(this);" onKeypress="if
    (event.keyCode < 48 || event.keyCode > 57 ) event.returnValue
    = false;" />
    <input name="ssn2" type="text" id="ssn2" <cfif
    isdefined("form.ssn2")>value = "<cfoutput>
    #form.ssn2#</cfoutput>"<cfelse> value =
    "<cfoutput>**</cfoutput>" </cfif>
    size="2" maxlength="3" onkeyup="validotherssn(this);"
    onKeypress="if (event.keyCode < 48 || event.keyCode > 57 )
    event.returnValue = false;" />
    <input name="ssn3" type="text" id="ssn3" <cfif
    isdefined("form.ssn3")>value = "<cfoutput>
    #form.ssn3#</cfoutput>" <cfelse> value =
    "<cfoutput>****</cfoutput>"</cfif>
    onKeyUp="validotherssn(this);" size="4" maxlength="5"
    onKeypress="if (event.keyCode < 48 || event.keyCode > 57 )
    event.returnValue = false;" /> </td>

  • What happens to the form I created with free trial when I upgrade?

    I signed up for a free AdobeForms account 6 months ago.  In that time I created a really detailed form.  I am still able to access the account and the form to this day without any problems.  However I now want to upgrade my account so I can do more with the form I created with the free account.
    What will happen to my existing form when I upgrade my AdobeForms account to paid subscription?  I am assuming it would just remain in my account.  However when my secretary called to order the full subscription, the sales rep suggested that the existing form created via the trial would be wiped-out upon upgrading the account.
    Is this true/accurate?  I do not want to lose the form I have already perfected when upgrading.
    Thank you for any info!!

    Thanks!  Ok... well we're going to order the full subscription now, I made a PDF backup of the web form in case, but really looking forward to not losing the designed form.

  • When I connect my iPod touch it tells me that I need a new version of Apple Mobile Device Support and to uninstall iTunes and then re-install it, I've done that twice with the newest version of iTunes and it still doesn't work?

    When I connect my iPod touch it tells me that I need a new version of Apple Mobile Device Support and to uninstall iTunes and then re-install it, I've done that twice with the newest version of iTunes and it still doesn't work?

    Try:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • Workflow event bus1022-created triggered twice with ME21Nu200F

    Hi everybody
    The explanation to my problem is as follow: Initially I was using the Tcode AS01, ME21N, ABUMN to create fixed assets and every asset created triggers the event BUS1022-CREATED, but then I set the system to synchronizing assets with equipments (SPRO -> Financial accounting->Assets accounting->Master Data->Automatic creation of equipment master recordsu2026u2026) but the event BUS1022-CREATED didn´t triggered any more so I create the new entry in SWEC with ANLA as objet of modification and the OBJ BUS1022 and the event CREATED for the creation for any new record; It works but now the problem is that this event  is being created twice with the Tcode ME21N.
    Any suggestion?
    Thanks a lot.
    Felipe Uribe

    Hello Felipe,
    a check on the TCode during the event coupling seems to be the most effective way here. However, only checking on sy-tcode will not help you much, as you don't know the source (change document / application event).
    So what you need to round up your work-around is a flag in the event container that tells you, if the event was created through the SWEC, and if yes, by which transaction code.
    - To do so, create a subtype of BUS1022 with a system wide delegation.
    - Create two new additional event parameters: TransactionCode  (type syst-tcode) and ByChangeDocument  (type boole-boole)
    - Create a function module Z_SWEC_CONTAINER_BUS1022 copied from SWE_CD_TEMPLATE_CONTAINER_FB (or SWE_CD_TEMPLATE_CONTAINER_FB_2 depending on your ABAP OO experiences) and enter this function module under "Event container" in the maintenance entry of SWEC/BUS1022/CREATED
    - Within that event container function module, you just set the two event container elements using the value of SY-TCODE for the field TransactionCode and a fixed 'X' for the value of the field ByChangeDocument
    - Create a new check function module (or workflow start condition) -- as described earlier in this thread -- that checks on:
    ( ByChangeDocument = 'X' AND TransactionCode = 'ME21N' ) OR ( ByChangeDocument = ' ' ).
    This way you'll sort out the doubled events through the change document for all other transactions than ME21N.
    Good luck,
    Florin

  • How to increase count in a text increases on each new form submitted?

    Hi All,
    I have a field in infopath form as 'RefNo', whenever new form submitted, it count should increase. How to achieve this scenario?
    Thanks in advance!

    I'm not sure if you can do this to display on form load, but you could do this on submit and edit form. 
    Refer to the following posts,
    http://sharepointryan.com/2011/05/25/add-an-auto-numbering-field-to-an-infopath-form/
    http://sharepointfromthetop.wordpress.com/2011/08/31/auto-numbering-infopath-forms/
    --Cheers

  • Ora-20001 when creating a form on table with report (bug?)

    Having some trouble creating a "Form on table with report".
    1) I pick my table
    2) take most of the defaults on the page where you pick the report type (interactive) and the page number (I changed it to 950). next->
    3) Do not use tabs. Next->
    4) Select all columns for the report. THEN (here's the problem) set an optional where clause of system_role_name like 'ODPSPOPUP%'. Next->
    5) choose standard edit link. next->
    6) Specify a page of 951 for the form (leave others defaults). next->
    7) Set the form primary key (defined in table). next->
    8) use existing trigger. next->
    9) choose all columns for the form. next->
    10) Leave actions to insert, update, delete. next->
    11) Get to the summary page and click Finish
    Then I get an error page saying:
    ORA-20001: Unable to create query and update page. ORA-20001: Unable to create query and update page. ORA-00933: SQL command not properly ended
    If I go back to step 4 and erase my where clause the wizard completes successfully.
    Also if I change the report type in step 2 from the default of "Interactive" to "Classic" the wizard completes successfully. However upon running the report I get a query parse error. Looks like the where clause in the report sql is: system_role_name like ''ODPSPOPUP%'' (two single quotes on each side).
    It looks as if you cannot specify a where clause with a quoted string. The wizard is expecting a bind variable.
    Workaround(s):
    1) Don't specify a where clause when report type = Interactive in "create form on table with report" wizard.
    or
    2) Specify a bogus where clause using bind variable syntax such as "system_role_name like :BOGUSVARIABLE". Then edit the report query once the wizard finishes and change the where clause to the constant string you wanted to use in the wizard (e.g. "system_role_name like 'MYSYSTEM%'")
    Apex: 3.2.0.00.27
    Database: Oracle Database 11g Enterprise Edition 11.1.0.7.0 64bit Production (Oracle EL5)

    Andy,
    It's a bug, all right. Thanks for the detailed problem description. We'll fix it when we can.
    Scott

  • Pop up new form(Purchase Order) with current data

    Dear All,
    i have created a COPY TO button in my addon form. Now my quiry is that when ever i press the COPY TO button the purchase order form will open with my addon form data. Kindly suggest me the code.
    Thanx
    Sanjoy Paul

    Hi...
             use this code...
    Try
    SBO_Application.ActivateMenuItem("2305")
           oForm = SBO_Application.Forms.ActiveForm
                OItem = oForm.Items.Item("4")
                Oedit = OItem.Specific
                Oedit.Value = vendor.ToString()
                rs1 = Nothing
                rs1 = OCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                'rs1.DoQuery(" Select Ur Table")
                'OItem = OPOForm.Items.Item("aaa")
                'Oedit = OItem.Specific
                'Oedit.Value = rs1.Fields.Item("Ur - Field").Value & ""
                OItem = OPOForm.Items.Item("bbb")
                Oedit = OItem.Specific
                Oedit.Value = rs1.Fields.Item("Ur - Field").Value & ""
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
    REM Matrix
    OItem = oForm.Items.Item("38")
            oMatrix = OItem.Specific
            oCols = oPoMat.Columns REM Columns
    Oedit = oCols.Item("1").Cells.Item(1).Specific 'item no
                Oedit.Value = itmcd.ToString()
    It Will Work...
    Regards...
    Billa 2007

Maybe you are looking for