Multiple submit buttons in flash form

I need to make this page so that when the submit button is
pressed, the action page will be based on the cfforgroup, not on an
overall form action. Essentially I have 2 main tabs and multiple
tabs underneath each one of those that need seperate action calls
on submit:
<cfquery name="modelinfo" datasource="inventory">
SELECT cd_manufacturer.name + ' ' +
model + ' ' +
processor_type + ' ' +
processor_speed AS system,
cd_manufacturer.name + ',' +
model + ',' +
processor_type + ',' +
processor_speed AS val_list
FROM cd_manufacturer
INNER JOIN cd_model ON
cd_manufacturer.pk_manufacturer=cd_model.fk_manufacturer
</cfquery>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title></title>
</head>
<cfquery name="modelinfo" datasource="inventory">
SELECT cd_manufacturer.name + ' ' +
model + ' ' +
processor_type + ' ' +
processor_speed AS system,
cd_manufacturer.name + ',' +
model + ',' +
processor_type + ',' +
processor_speed AS val_list
FROM cd_manufacturer
INNER JOIN cd_model ON
cd_manufacturer.pk_manufacturer=cd_model.fk_manufacturer
</cfquery>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>IT Asset Tracking System Main Menu</title>
</head>
<body>
<cfform format="flash">
<cfformgroup type="tabnavigator"><!--begin main
navigation-->
<cfformgroup type="page" label="Asset"><!-- Begin
sub page ASSET---->
<cfformgroup type="tabnavigator"><!-- Begin sub
page ASSET navigator---->
<!---ADD ASSET START (uses asset_processes/newAsset.cfm
for processing)---------------------->
<cfformgroup type="page" label="Add Asset"
action="asset_processes/newAsset.cfm">
<cfset vdate=DateFormat(Now(), "mm/dd/yyyy")>
<cfinput type="datefield" name="cdate" width="150"
label="Entry Date" validateat="onSubmit" validate="noblanks"
required="yes">
<cfselect
label="System Type"
name="modelinfo"
query="modelinfo"
required="yes"
multiple="no"
display="system"
value="val_list"
width="350">
</cfselect>
<cfinput type="text" name="location" width="150"
label="location" validateat="onSubmit" validate="noblanks"
required="yes">
<cfinput type="text" name="user" width="150" label="user"
validateat="onSubmit" validate="noblanks" required="yes">
<cfinput type="submit" name="submit" value="Create New
Asset" />
</cfformgroup><!--end page Add Asset -->
<!------------END PAGE ADD
ASSET------------------------------------------------------>
<!--------------- Assign LotID START (uses
standard/assignLotID.cfm for processing)--->
<cfformgroup type="page" label="Assign lotID">
</cfformgroup><!--end page Assign LotID -->
<!-----------------ASSIGN LOTID
END------------------------------>
<!----------------------Add to surplus
START--------------------->
<cfformgroup type="page" label="Add to Surplus">
</cfformgroup><!--end page add to surplus -->
<!------------------END ADD TO
SUPLUS------------------------------>
<!---------------------------ADD OTHER
START----------------------->
<cfformgroup type="page" label="View Inventory (not
surplused)">
</cfformgroup><!-- end page "View Inventory (not
surplused)"-->
<!---------------------------END
OTHER---------------------------->
</cfformgroup><!-- end sub page ASSET--------->
</cfformgroup><!-- end sub page ASSET
navigator---->
<cfformgroup type="page"
label="maintenance"><!--begin sub page maintenance-->
</cfformgroup><!--end sub page maintenance-->
</cfformgroup><!-- end main navigation -->
</cfform>
</body>
</html>

Here's my code and thanks for your help!
<!--- begin form --->
<cfform format="flash" width="850" height="750"
action="insert.cfm" skin="haloblue">
<!--- begin tab navigator --->
<cfformgroup type="tabnavigator">
<!--- Begin check out tab --->
<cfformgroup label="Equipment Check-Out" type="page"
width="600">
<cfinput type="datefield"
name="dueDate"
label="Due Date:" message="Please Select a Valid Due Date"
validate="date"
required="yes"
width="100">
<!--- Equipment Information --->
<cfselect enabled="yes" name="equipTag" size="1"
label="Select Property Tag:" required="yes" multiple="no"
width="100">
<cfoutput query="allEquipTag">
<option value="#equipTag#">#equipTag#</option>
</cfoutput>
</cfselect>
<!--- Person Information --->
<cfinput type="text"
name="csulbID"
label="CSULB ID:"
message="A CSULB ID is required and must be 9 Digit!"
mask="999999999"
required="yes"
size="10"
maxlength="9" >
<cfinput type="text"
name="fName"
label="First Name:"
message="A First Name is required!"
required="yes"
size="10" >
<cfinput type="text"
name="lName"
label="Last Name:"
message="A Last Name is required!"
required="yes"
size="10" >
<cfinput type="text"
name="phone"
label="Phone Number:"
message="Phone Number is required!" mask="999-999-9999"
required="yes"
size="10" >
<cfinput type="text"
name="email"
label="Email:"
message="Email required! i.e. [email protected]"
required="yes"
validate="email"
size="15" >
<cftextarea name="notes"
label="Additional Notes:"
rows="5"
width="300"/>
<cfinput type="submit" name="btnSubmit" Label='checkOut'
tooltip="Submit Check-Out Information" id="btnSubmit"
value="Submit">
<!--- end check-out tab--->
</cfformgroup>
<!--- start Check-In Tab --->
<cfformgroup label="Equipment Check-In" type="page"
width="850" height="700">
<!--- start data grid--->
<cfgrid name="equipCheckInGrid"
query="equipCheckIn"
selectmode="browse"
griddataalign="left"
height="300"
width="800">
<!--- Don't show all columns and change header
name--->
<cfgridcolumn name="dueDate" header="Due Date">
<cfgridcolumn name="checkOut" header="Checked Out">
<cfgridcolumn name="checkIn" header="Checked In">
<cfgridcolumn name="csulbID" header="CSULB ID">
<cfgridcolumn name="fName" header="First Name">
<cfgridcolumn name="lName" header="Last Name">
<cfgridcolumn name="phone" header="Phone">
<cfgridcolumn name="email" header="Email">
<cfgridcolumn name="notes" header="Additional Notes">
<cfgridcolumn name="equipTag" header="Equip Tag">
<!--- end data grid--->
</cfgrid>
<!--- start input fields--->
<cfinput type="text"
name="checkInEquipTag"
label="Equipment Tag:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['equipTag']}"
size="15">
<cfinput type="text"
name="checkInDueDate"
label="Due Date:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['dueDate']}"
size="15">
<cfinput type="text"
name="checkInCheckOut"
label="Checked Out:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['checkOut']}"
size="15">
<cfinput type="text"
name="checkInCheckedIn"
label="Checked In:"
width="150"
value="#DateFormat(now(), "MM/DD/YYYY")#">
<cfinput type="text"
name="checkInCSULBID"
label="CSULB ID:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['csulbID']}"
size="15">
<cfinput type="text"
name="checkInFName"
label="First name:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['fName']}"
size="15">
<cfinput type="text"
name="checkInLName"
label="Last Name:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['lName']}"
size="15">
<cfinput type="text"
name="checkInPhone"
label="Phone:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['phone']}"
size="15">
<cfinput type="text"
name="checkIneEmail"
label="Email:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['email']}"
size="15">
<cftextarea type="text"
name="checkInNotes"
label="Additional Notes:"
bind="{equipCheckInGrid.dataProvider[equipCheckInGrid.selectedIndex]['notes']}"
width="300"
rows="5"/>
<cfinput type="submit" name="btnUpdate" Label='update'
tooltip="Submit Update Information" id="btnSubmit"
value="Check-In">
<!--- end Check-In Tab --->
</cfformgroup>
<!--- overdue tab --->
<cfformgroup label="Equipment Over-Due" type="page"
width="850" height="700">
<cfgrid name="equipOverDueGrid"
query="equipOverDue"
selectmode="browse"
griddataalign="left"
height="300"
width="800">
<!--- Don't show all columns and change header
name--->
<cfgridcolumn name="dueDate" header="Due Date">
<cfgridcolumn name="checkOut" header="Checked Out">
<cfgridcolumn name="checkIn" header="Checked In">
<cfgridcolumn name="csulbID" header="CSULB ID">
<cfgridcolumn name="fName" header="First Name">
<cfgridcolumn name="lName" header="Last Name">
<cfgridcolumn name="phone" header="Phone">
<cfgridcolumn name="email" header="Email">
<cfgridcolumn name="notes" header="Additional Notes">
<cfgridcolumn name="equipTag" header="Equip Tag">
<!--- end data grid--->
</cfgrid>
</cfformgroup>
<!--- end tab navigator--->
</cfformgroup>
</cfform>

Similar Messages

  • Multiple Submit buttons in Adobe form !

    Hello Experts,
    Scenario :
    Form has Material number as input field and Material description should get automatically populated( maybe as a script or button , dont know yet ). Then the form is to be submitted at the backend.
    I have created an Adobe interactive form with Multiple Submit buttons( one is Submit toSAP) button , other is a normal pushbutton( for Material desc to be populated ) . I have been able to Submit data at backend.
    But problem is there is only one event on the Interactive form UI element properties.
    Please suggest how to achieve the above ? via script or sm code in web dynpro ?
    System Config :  WAS 6.4 /  SP12 .
    Need a quick resolution. Generous points for help.
    Regards,
    Sonika

    Hi Sonika,
    control_param structure is used in case of ISR forms, but I dont think your form is related to the ISR.
    Use a context attribute, and set its value to get the Material description from backend.
    Like you can define an attribute in context, "GETDESCRIPTION", and set its value at the exit event of Inputfield to "GET".
    $.parent.GETDESCRIPTION.rawvalue = "GET"
    app.eval("event.target.SAPSubmit();");
    And at the click event of the button you can write:
    $.parent.GETDESCRIPTION.rawvalue = "SET"
    app.eval("event.target.SAPSubmit();");
    And in the backend, read the value of this attribute and perform the desired action.
    Hope this helps,
    Amit

  • How to use multiple submit buttons in jsp form

    hello dextors,
    Im using a jsp page which have got some 'n' no submit buttons according to the Iterator ..each iterator display a row contains few fields plus submit button ..ex., If ' n' rows means 'n' respective submit buttons..the problem here is when i click any of the submit button only the value of the first row goes
    to the other jsp page..no matter wat ever button I click only first row goes..
    remember the page displays all the rows correctly and though the values of submit button are also different it gives the same result...
    what could be the reason please help it out...
    my jsp page contains
    <%@ page language="java" import="java.util.*" %>
    <%@ page language="java" import="java.io.*" %>
    <form name="frmChangeCorrection" method="post" target="childwindow" action="popup.jsp" >
    <body>
    <%
    RFTrackerDAOFactory factory = new RFTrackerDAOFactory();
         DailyDataDAO dailyDAO = factory.getDailyDataDAO();
         String month = request.getParameter("month");
         String year = request.getParameter("year");
         String empNo = request.getParameter("empno");          
         Collection coll = dailyDAO.getMonthyEmployeeData(empNo,month,year);
    Iterator iter = coll.iterator();     
    %>
    <div align="center">
    <center>
    <table border="1" width="75%" bgcolor="#B6C7E5">
    <tr>
    <th width="11%">EMPNO</th>
    <th width="30%">EMPLOYEE NAME</th>
    <th width="11%">DATE</th>
    <th width="11%">IN TIME</th>
    <th width="11%" >OUT TIME </th>
    <th width="15%" >TOTAL HRS</th>
    <th width="11%" >MODIFY</th>
    </tr>
    </table>
    </center>
    </div>
    <%
    int count=0;
    while(iter.hasNext())
         EmployeeData data = (EmployeeData)iter.next();
         String str=data.getDuration();
         String str1= str.substring( 0, 5 );
    count++;
    %>
    <div align="center">
    <center>
    <table border="1" width="75%" bgcolor="#B6C7E5">
    <tr>
    <td width="11%"> <%= data.getEmpNo() %> </td>
    <input type="hidden" name="empno" value="<%=data.getEmpNo() %>">
    <td width="30%"> <%= data.getEmpName() %> </td>
    <input type="hidden" name="empname" value="<%= data.getEmpName() %>">
    <td width="11%"><%= data.getDate() %> </td>
    <input type="hidden" name="date" value="<%= data.getDate() %>">
    <td width="11%"><%= data.getInTime() %> </td>
    <td width="11%" > <%= data.getOutTime() %> </td>
    <td width="15%" > <%= str1 %> </td>
    <td width="11%" > <input type="submit" name="Change" value="<% =count%>" onclick="popupResult()" >
    <input type="hidden" name="Change" value="<%=count%>" >
    </td>
    </tr>
    </table>
    </center>
    </div>
    <%
    %>
    </form>          
    </p>
    </table>
    </body>
    <script>
    function popupResult(){
    window.open('about:blank','childwindow', 'height=300,width=300');
    </script>

    It is assumed that one submit button will function for a form..if you want more that one submit form try to build as many forms as u need and put the submit inside that
    that will cure your problem
    and y do you want to create so many submit buttons.. instead you can make use of select button

  • Multiple Submit buttons on one form

    I'm developing an application that will have 4 buttons at the bottom of the form to do various things with the form information. One of the buttons will link to a separate web page for confirmation of the action. I tried to set a global variable and place an onclick event for the button which assigns a specific value for that variable. I then placed a <jsp:forward tag in my code that would be included if the global variable was the specific value which the button changes it to. I"m not sure if I'm being clear here. There is the forms page with the 4 buttons. It possesses all of this code. So the global variable is declared at the top. The variable is set if the 'Delete' button is clicked. And further down there is an if statement used to include the <jsp:forward tag when the 'Delete button has been pressed and this form is again being drawn up.
    What I describe doesn't work. The global variable I guess is reset when this form is drawn up a second time after the 'Delete' submit button is pressed. I''m not married to the way that I'm solving this problem at this point so I'll take any suggestions. But basically I want the Web Forms fields to be sent to this delete jsp so that I can confirm the command to delete the indicated record from the database. The three other buttons on this form are 'Add/Update', 'Rename', and 'Cancel'. The Add/Update and Rename buttons should also be submit buttons but they should link back to the same page as they are located on. The cancel button is to return the user to the index page. I have this working using a document.location.href command in the onclick event for that button.
    Brian

    Hi Brain. If I'm following your thoughts, you may want to consider replacing the four sumbit buttons with four radio control buttons and one submit button.
    I would suggest that you set your form action via a radio control button then, thru the form action, pass the form to a Servlet or JSP that contains some logic.
    <!doctype html public "-//w3c//dtd html 3.2 final//en">
    <html>
    <head>
    </head>
    <body>
    <!-- set your action here to go against a Servlet or JSP.  The
         Servlet or the JSP will contain the logic to Delete, Add/Update, Rename or Cancel
         based on the formAction value.
    -->
    <form action='ServletOrJSPNameHere' method='post'>
    <br> <input type='radio' name='formAction' value='Delete'>Delete
    <br> <input type='radio' name='formAction' value='Add/Update'>Add/Update
    <br> <input type='radio' name='formAction' value='Rename'>Rename
    <br> <input type='radio' name='formAction' value='Cancel'>Cancel
    <br> <input type='submit' value='submit'>
    <form>
    </body>
    </html>
    // this code would go into your Servlet, JSP, or worker class
    String formAction = request.getParamger("formAction");
    // test for null value  
    if ( formAction == null ) { 
         // reload the page with a message to pick a radio button
    else if ( formAction.equals("Delete") {
       doTheDeleteProcessing();
    else if ( formAction.equals("Add/Update") { 
       doTheAdd/UpdateProcessing();
    else if ( formAction.equals("Rename") {
       doTheRenameProcessing();
    else {
       doTheCancelProcessing();
    }I hope this helps.

  • How to distribute a form with multiple submit buttons?

    I have a form that has multiple submit buttons depending on the information that is being entered and then who the information should go to.  When I try to disbribute the form, I get an error message stating the following, "Acrobat is unable to distribute this form because it contains multiple submit buttons with different formats or return URLs."  Is anyone able to let me know how I can distribute the form?

    Sounds as if you need your own web script to process submissions - written by an experienced web programmer (I very strongly recommend someone familiar with all the latest security weaknesses, and not a project for anyone else). Your needs are (it seems to me) too complex for Adobe's automatic system.

  • Multiple submit button on a single form

    hi all,
    My current system have 1 submit button with single form. This submit button will call file_content.upload.
    htp.p('function on_submit() {');
    htp.p('     ...the rest of my code here..');
    htp.p('     document.forms[0].submit();');
    htp.p('     return true;');
    htp.p('}');
    htp.p('<form enctype="multipart/form-data" method="post" action="file_content.upload">');
    htp.p('     ...the rest of my code here..');
    htp.p('<input type="button" id="btn_Submit" value="Submit" onclick="on_submit()"></form>');
    My question is, i want to enhance this by adding additional 1 submit button with value "Save". But this new "Save" button will call/trigger different file. This new button will call file_content.update. How to accomplish this and how to differentiate these 2 button?
    htp.p('<input type="button" id="btn_Submit" value="Submit" onclick="on_submit()"> 
    <input type="button" id="btn_Save" value="Save"></form>');
    Appreciate any help from you guys. Thanks
    Edited by: morezack on Jul 20, 2011 8:21 PM
    Edited by: morezack on Jul 20, 2011 8:29 PM

    PLEASE IGNORE THIS THREAD. ACCIDENTLY SUBMIT IT. I WANT TO DELETE THIS BUT CANNOT

  • Multiple submit button on jsp

    Hello,
    Can I have multiple submit button on single JSP page?
    if its possible then tell me how?
    And how to call multiple functions in JSP?
    reply me urgent

    I think this code will help you
    <html>
         <head></head>
         <script>
              function submitForm(clickedButton){
                   if(clickedButton.name =="button1"){
                        alert("button1");
                        document.multipleSubmitDemoForm.action="linkToJSPWhenFirstButtonClicked.jsp";
                   }else if(clickedButton.name =="button2"){
                        alert("button2");
                        document.multipleSubmitDemoForm.action="linkToJSPWhenSecondButtonClicked.jsp";
                   }else if(clickedButton.name =="button3"){
                        alert("button3");
                        document.multipleSubmitDemoForm.action="linkToJSPWhenThirdButtonClicked.jsp";
                   document.multipleSubmitDemoForm.submit();
         </script>
         <body>
              <form name="multipleSubmitDemoForm" method="POST" action="" >
                   <input type="button" name="button1" onClick=submitForm(this) />
                   <input type="button" name="button2" onClick=submitForm(this) />
                   <input type="button" name="button3" onClick=submitForm(this) />
              </form>
         </body>
    </html>

  • Regarding multiple submit buttons in a page!!

    hi all,
    If i have two submit buttons in a html page then i can put them in two separate forms ,one form with get method and another with post method and pass the information to the servlet and then retrieve the values using doGet and doPost methods. How can i retrieve the information in the servlet if i have multiple submit buttons in my html page?
    pls help me.......

    is your question how do i know what button was pressed?
    in html
    <INPUT name="type" value="a" type="submit">
    <INPUT name="type" value="b" type="submit">
    <INPUT name="type" value="c" type="submit">
    <INPUT name="type" value="d" type="submit">in servlet
    String type = request.getParameter("type");
    // type = a | b | c | d

  • How do I change the destination of a the submit button on a form in Form Central?

    How do I change the destination of a the submit button on a form in Form Central?

    Sure. Because it is a scheduling form and I want the filled out form to be forwarded to our scheduling department email.
    Sincerely,
    John Biester
    Operations Manager

  • How do i add a submit button to a form

    ho do i add a submit button to a form.

    Hi;
    If you are using the FormsCenral website to create a form it will have a submit button by default for the HTML (web) form and also by default it you are saving as PDF (there is an option to create a PDF without Submit, but by default it does submit to FormsCentral). 
    If you are using the FormsCentral desktop application that is bundled with Acrobat XI you would have to sign into the service to create forms with Submit buttons.  You can also create a form without submit button in FormsCentral Desktop and then edit the form in Acrobat XI adding a submit button using your preferred submit method such as by email.
    Let me know if you need more information on either of these, it will be easier to assist knowing more about what you are using.
    Thanks,
    Josh
    PS - if this is a question about adding a submit button in Acrobat not related to FormsCentral your question would be best asked in http://forums.adobe.com/community/acrobat

  • Submit Button in Interactive form is not Triggering (Webdynpro Java)

    Hi,
    I have developed one application for Online intractive form.I have  created one text box and one submit button in Intractive
    Form.I created a Action method Submit.I have bound the onActionSubmit() method to  onSubmit Event of Intractive Form.
    For testing i am putting some value in text box and Clicking Submit button.I have set the debugger in onActionSubmit()
    method.But when I am Clicking Submit button, onActionSubmit() method is not triggering.I have
    1. I have used Submit to SAP button (Pallet>Library>Web Dynpro).
    2.I have ACF(Active Control Framework) instalation.
    3.I have WAS 6.4 and NWDS 04.
    4.I have SAPForms.api in   Program Files\Adobe\Acrobat 7.0\Reader\plug_ins path.
    One Value Node DataSource (Cardinality 1..1) is binded into dataSource Property.And pdfSource property is binded to one value
    attribute of binary Type.
    I have done one application where i am getting data from R/3 System and displaying in PDF ,It is working fine.
    I got below error in Log File for the above two applications.But geting the data from R/3 and displaying in PDF is working
    fine even if it is giving below Error in Log
    ClientJTSInterceptor.receive_reply
    [EXCEPTION]
    org.omg.CORBA.BAD_PARAM: Not found ServiceContext with id=0  vmcid: OMG  minor code: 1A completed: Maybe
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.get_reply_service_context(ClientRequest.java:284)
         at
    com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor.receive_reply(ClientJTSInterceptor.java:91)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:133)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:125)
         at com.sap.engine.services.iiop.server.portable.Delegate.invoke(Delegate.java:282)
         at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:486)
         at com.adobe.service._ControlAgentStub.done(_ControlAgentStub.java:83)
         at com.adobe.service.ProcessResource.onCommit(ProcessResource.java:609)
         at com.adobe.service.ResourcePeer.invokeCommit(ResourcePeer.java:130)
         at com.adobe.service.J2EEResourcePeerImpl.commit(J2EEResourcePeerImpl.java:124)
         at com.sap.engine.services.ts.jta.impl.ResourceList.commitTwoPhase(ResourceList.java:80)
         at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:355)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:174)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
         at java.lang.reflect.Method.invoke(Method.java:391)
         at
    com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageLis
    tener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:214)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Please Suggest.
    Thanks & Regards
    muna

    Hi Muna,
    May ADS is not configured in server properly.
    Check the below link. I hope it will  help you.
    Re: no action got executed corr to SubmitToSap button of Interactive forms
    Thanks
    Siva Arikatla

  • Submit button missing from form, can see it in Pro but not in Reader XI

    I've created and disributed forms in the past with no problem, however, when I open up my form in Reader XI, the submit button is missing.  In the purple ribbon, it instructs people to click the submit button once the form is complete but there is no button showing.  Help! 

    What does this command say:
    ls -ldaeO@ Documents
    If it has 'hidden' attached to it, then look at the "man chflags" command.
    chflags nohidden Documents

  • PRocessing Multiple "Submit" buttons

    I want my JPS to have multiple submit buttons, one for Contineu and one for Cancel. It appears to me that the only way to detect which was clicked in the servlet is pretty inelegantly, something like this:
    if(request.getParameter("continue") != null)
    // do continue stuff
    else
        if(request.getParameter("cancel") != null)
    // do cancel stuffIs this correct? Is there a less cumbersome way? Thanks.

    I will suggest that you write two servlets one to do cancel action and the other to do continue action and through JS call the servlet of cancel or continue.
    that makes your work easier.
    Like this
    <Script language="JavaScript">
    function fn_Perform_Action(chr_User_Action)
                   //-- 2.1) -- ADD a record to database
                   if (chr_User_Action == "Save")
                             var bln_Ret_Val = fn_Check_Mandatory_Fields();                                                       if (bln_Ret_Val)
                                       document.frm_name.action = "/path";
                                       document.frm_name.submit();
                                       return true;                              
                   //--2.3) -- Back to the Menu
                   if (chr_User_Action == "Back")
                                       document.frm_name.action = "/path";
                                       document.frm_name.submit();
                                       return true;                              
                        return false;
    </script>
    <Input Type="Button" Value=" Update " id="id_btn_Save" Name="btn_Save"  OnClick="return fn_Perform_Action('Save');">   
    <Input Type="Button" Value="Back" id="id_btn_Back" Name="btn_Back"  OnClick="return fn_Perform_Action('Back');">
    </Td>          
    </Tr>
    [/code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Submit button in Interactive form WDA

    Hi All,
    I have created one WD ABAP interactive form using one BAPI. I have placed one Submit button on the form which is of type (webdynpro native). And i have defined on action in WD. But when I click on submit button the action is not trigerring. I tried even with Webdynpro Active x type but still no use.
    How can I link the button in form to action?
    With Regards,
    Ravi

    Ravi,
    There is onSubmit event in Web Dynpro where you can create your own method for data processing.
    If you have set displayType as native then you should be using Submit button from WD Native Library in Designer.
    Once you place the button on the form, check if following script is present in the click event of button in Script editor of Designer or not.
    // DO NOT MODIFY THE CODE BEYOND THIS POINT - SubmitToSAP.xfo
    ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
    // END OF DO NOT MODIFY
    Also check Control Type in Object Palette for the button. It should be Regular.
    Chintan

  • Submit button from Adobe form doesn't trigger action???

    Hi all,
    the submit button within Adobe form doesn't trigger any action that i wrote. it happens to my machine, but it doesn't happen on some of my colleague's machines.
    i am using Adobe reader 8, when the first time i use IE to display the app, it prompts me to install some kind of activeX plug in, and after it installed, it told me that some setting is not correct, and it mentioned about adobe reader 6 or 7.
    will downgrade to 6 or 7 solve this problem? is there any other walkaround for it?
    thank you!

    If you are on Netweaver 2004s SP9 or higher, you could change the displayType property of InteractiveForm UI element to "Web Dynpro Native" and use the submit button from "Native" tab.
    If you are any other lower version, you dont have a choice but to use "activeX" which requires Active Component Framework (ACF) to communicate with server. You need to use button from "Web Dynpro ActiveX" tab. You need to install the right version of ACF (SAP Note 766191). Better if you use Adobe Reader 8.1.2.
    Thanks
    Ram

Maybe you are looking for

  • SAP XI : Date and Time Service

    Hi All, Is there any runtime variable or service  in SAP XI through which I can map the current DATE and TIME of the system. Currently I am using XSLT mapping and in that XSL I am calling java code for Date and Time. So is there any other way through

  • Transfer data from a worksheet to a Flex embedded application

    Hi, I would like to transfer data from an Office 2003 worksheet to a Flex application located on the same worksheet (ie Flash activeX inserted). To pass these data, I use the ExternalInterface API in the Flex framework. All works fine if the Flex fil

  • Attaching document on hierarchy nodes

    Hello, I have problems with attaching documents on hierarchy nodes. I have created a hierarchy with only postable nodes. Now it is possible to attach documents on nodes, but here I don't see any practicable option for the users to attach the document

  • Batch Sequence Shutdown Test Stand Randomly

    Hi , I have a problem with Test Stand in one of my projects . I'm using TS 4 & CVI 9.1 . TS is using CVI DLL . The software is using parallel Device checking for 30 cards , at 25c , 75c and -15c ( temp ). While checking 9-10 evrey thing works fine an

  • TAble store total plan consumption in CJR2 (layout 1-702)

    Hi All, Plz help to find what is the table which save the total plan consumption in in tcode CJR2 with layout 1-702. I just find Table name : RKPLN , field name MEG, Data element MEGXXX and screen field Z-BDC03. I cannot find quantity the quantity in