Multiple Submit / Applychanges  - Issues

Dear All,
I am having form with 3 submit buttons.
1. Submit (create)
2. submit (Approved) -> sequence ->30
3. Submit (Rejected ) -> sequence ->40
I have created 2 processes like 'submit-app' & 'submit-rej'. I have written the conditional for 2 ,3 submit buttons. If i click 2 or 3 buttons , which is last sequence process , that value only its updating . But that is not correct.
if i click 2 submit button , status value='app' should be updated in the table.
if i click 3 submit button , status value='rej' should be updated in the table.
Please help me on this.
Regards
Ayyanarkulam Dhanush.R

Hi Ayyanarkulam Dhanush.R,
Could you show me the processes that you have written for Submit (Approved) Button2 and Submit (Rejected) Button3?
Thanks,
Maggie

Similar Messages

  • Multiple submissions issues

    multiple submissions - how to handle issues on multiple submission by the recipients if the form is intended for single submission only per recipient

    If you're using a web form, there's nothing you can do. It would be possible to configure a PDF to include hidden data with each submit that identifies a particular instance of a form, but if the user doesn't save the form they could always reopen it and submit more times, so it would basically identify the submissions from a single session. So even with a PDF you can't guarantee that you'd be able to identify multiple submissions from a single user, unless you customize the form for each user.

  • Multiple App syncing issues...

    Hello, all.
    I am having multiple application synching issues. I have a half dozen devices and have never had any of these issues before about a week ago. May have had an iTunes update? Here are the issues.
    1.     Some Apps re-installing even though no update was available.
    2.     Some apps not completely installing and showing with an empty progress bar through the icon.
    3.     Apps that are not supposed to sync to a particular device are.
    4.     Apps re-installing outside of their designated folders.
    Anyone having any of these issues? It is pretty frustrating since I never know what I am going to end up with after a sync.

    Sure.
    Only select the apps that you want to sync.
    It will only sync what you tell it to sync to each device.

  • 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 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 on 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 21, 2011 2:08 PM

    You again did accident like one below
    multiple submit button on a single form
    Take care..
    Regards,

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 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

  • To avoid multiple submit clicks

    Hi all,
    Need your help, in avoiding multiple submit clicks in HTMLB.
    Thanks in advance.
    Regards,
    Gangadharayya.

    Hi,
    This can be done by setting the button in "Disabled" state once it is clicked. This can be done by calling a java script function on the "onClientClick" event which sets the state of the button to disabled state.
    Add a similar function like this in your JSP, and do the appropriate changes, it should work fine.
    function Process(){
    var myID = htmlb_formid+"_getHtmlbElementId";
    myFunction = window[myID];
    var myButton = eval(myFunction("/* Your Button's ID */"));
    myButton.setDisabled();

  • Multiple certificates on Issuing CA server

    Hi,
    Due to errors multiple certificates were issued from Root CA server for SubCA. Although old certificate was revoked from Root, but I see 2 certificates on Issuing CA. Also, because of 2 certificates, 2 CRLs are getting published everytime for each. Although
    when I see web server certificate issued for IIS, it was signed by new certificate of Issuing CA. Also, in PKIview, I see CDP path for this CA with new CRL.
    But my questions is that how shall I remove old one from Issuing CA as I am not gettign that option. Also, in AD i see 2 certficaates published for that CA. Will that cause any issue.
    Thanks
    Neha Garg

    This is actually a normal state in PKI. When you renew a sub CA with a new key pair, ot will result in multiple CRL files.
    - there is no need to remove the previous subca cert
    - there is no need to revoke the previous subca cert (unless there are config or security issues)
    - make sure the AIA paths use %4 in the paths to keep separate versions
    - make sure that the CDP paths use %9 in the paths to keep separate versions
    - make sure you publish *all* versions of .crts and .crls to *all* publication points
    You need to leave all versions of the CA certs in play so that both current and previously issued certs can be validated
    Brian

  • Limiting Multiple Submissions

    What code would be best to use for limiting multiple
    submissions of an online form?

    quote:
    Originally posted by:
    Newsgroup User
    cml7u wrote:
    > What code would be best to use for limiting multiple
    submissions of an online form?
    if you mean clicking on "submit" button more than once, then
    you can use
    javascript to disable/hide it after it has been clicked.
    i.e. <input type='submit' name='submit' value='Submit'
    onclick='this.disabled="true";'>
    of course, if your user has js disabled in his/her browser,
    the trick
    won't work...
    if you want to prevent someone consciously repeatedly
    submitting the
    form, look into employing some sort of user
    authorization/authentication
    framework
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com
    this is what I'm talking about...

  • Mc.9 Multiple storage location issues

    Hi,
    I am fetching data from mc.9 in my program but if the use enter multiple storage  in selection only 1st value is printed following is code and how will i come to know which material is for which storage location since mc.9 data is not getting stored anywhere
    SELECT-OPTIONS : SLOC LIKE S031-LGORT.
    SUBMIT RMCB0300 WITH SL_WERKS-LOW = PLNT
                        WITH SL_LGORT IN SLOC
                      WITH SL_MTART = 'HALB' WITH SL_MTART = 'VERP'
                        WITH SL_MTART = 'ROH' WITH SL_MTART = 'FERT'
                        WITH SL_SPMON-LOW = FPERIOD
                        WITH SLV_NO = 'STK'
                        WITH SL_SPMON-HIGH = FPERIOD EXPORTING LIST TO MEMORY AND RETURN.
    while append to internal table  even if i specify both high and low value it prints low and high incorrectly how will this problem will solved
    itab-lgort = sloc-low.
    Help required for same.
    Thanks
    Shruti

    Hi Shruti,
    I simulated the code given by you and all the storage locations are being populated in the backed.
    You can check this by putting a breakpoint at the below code in RMCB0300 and checking the value of sl_lgort[]. You will receive the number of SLOC inputs provided.
    AT SELECTION-SCREEN OUTPUT.
      FLG_FOUND = FALSE.
      PERFORM SPEZIAL_AT_SELECTION_SCREEN_O IN PROGRAM (LIS_PROGNAME)
                                            CHANGING FLG_FOUND
                                            IF FOUND.
    This is a data issue and you may not have any records for the selected input.
    Regards,
    Jovito.
    Edited by: dsouzajovito on Dec 29, 2010 5:56 AM

  • Multiple cffile upload issues

    Hello all. I'm having a little issue with a multiple upload I
    am trying to achieve. I've been searching and searching but could
    not find an answer, and maybe you guys could help me. Well I'm
    doing multiple uploads on a form i created and it's uploading the
    file and file name correctly, but it's inserting 6 records
    everytime I'm hitting the submit button. Also, I've notice in my
    database is when you click the submit button, it's inserting the
    same file in one record 6 times, then it creates a new record and
    inserts the second file 6 times. I'm going to post the code here,
    maybe it's something I'm missing, not sure. Thanks for the help.

    dame.cranon wrote:
    > Hello all. I'm having a little issue with a multiple
    upload I am trying to
    > achieve. I've been searching and searching but could not
    find an answer, and
    > maybe you guys could help me. Well I'm doing multiple
    uploads on a form i
    > created and it's uploading the file and file name
    correctly, but it's inserting
    > 6 records everytime I'm hitting the submit button. Also,
    I've notice in my
    > database is when you click the submit button, it's
    inserting the same file in
    > one record 6 times, then it creates a new record and
    inserts the second file 6
    > times. I'm going to post the code here, maybe it's
    something I'm missing, not
    > sure. Thanks for the help.
    >
    >
    >
    > <cfloop index="i" from="1" to="6">
    >
    > <cfif isDefined("form.upload")>
    >
    > <cffile action="upload"
    > destination="D:\Hosting\streetzmag\dev\crush_images\"
    > filefield="pic#i#"
    > nameconflict="makeunique"
    > result="cffile.pic#i#"
    > accept="image/jpeg, image/pjpeg, image/gif" >
    >
    > <!--- Code for insert of information --->
    > <cfquery datasource="mysqlcf_streetzmag"
    name="uploaded">
    > INSERT INTO Information(firstname,
    > lastname,
    > email,
    > contact_info,
    > nickname,
    > recent_work,
    > hair_color,
    > eye_color,
    > ethnicity,
    > age,
    > height,
    > measurements,
    > pic_1,
    > pic_2,
    > pic_3,
    > pic_4,
    > pic_5,
    > pic_6
    >
    >
    > )
    > VALUES('#FORM.firstname#',
    > '#FORM.lastname#',
    > '#FORM.email#',
    > '#FORM.contact#',
    > '#FORM.nickname#',
    > '#FORM.work#',
    > '#FORM.hair#',
    > '#FORM.eye#',
    > '#FORM.ethnic#',
    > #FORM.age#,
    > '#FORM.height#',
    > '#FORM.measurements#',
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>,
    >
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>,
    >
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>,
    >
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>,
    >
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>,
    >
    > <cfif isDefined("form.pic#i#") and
    evaluate("form.pic#i#") NEQ "">
    > <cfqueryparam
    value="#CFFILE['pic'&i].SERVERFILE#" cfsqltype="cf_sql_varchar"
    > />
    > <cfelse>
    > NULL
    > </cfif>
    >
    > )
    > </cfquery>
    > </cfif>
    > </cfloop>
    >
    of course it will do everything 6 times since you have your
    whole code
    wrapped with cfloop from 1 to 6... so the code execution will
    happen 6
    times... plus your synatx for inserting filenames inside your
    query
    makes it insert same file 6 times (since the code is inside
    one same
    cfloop)...
    you should separate your code and wrap only the cffile part
    in a cfloop:
    <cfif isDefined("form.upload")>
    <cfloop index="i" from="1" to="6">
    <cfif len(trim(form.pic#i#)) gt 0>
    <cffile action="upload"
    destination="D:\Hosting\streetzmag\dev\crush_images\"
    filefield="pic#i#"
    nameconflict="makeunique"
    result="uploadedpic_#i#"
    accept="image/jpeg, image/pjpeg, image/gif" >
    </cfif>
    </cfloop>
    <!--- Code for insert of information --->
    <cfquery datasource="mysqlcf_streetzmag"
    name="uploaded">
    INSERT INTO Information
    (firstname,
    lastname,
    email,
    contact_info,
    nickname,
    recent_work,
    hair_color,
    eye_color,
    ethnicity,
    age,
    height,
    measurements,
    pic_1,
    pic_2,
    pic_3,
    pic_4,
    pic_5,
    pic_6)
    VALUES('#FORM.firstname#',
    '#FORM.lastname#',
    '#FORM.email#',
    '#FORM.contact#',
    '#FORM.nickname#',
    '#FORM.work#',
    '#FORM.hair#',
    '#FORM.eye#',
    '#FORM.ethnic#',
    #FORM.age#,
    '#FORM.height#',
    '#FORM.measurements#',
    <cfloop from="1" to="6" index="x">
    <cfif isdefined("uploadedpic_#x#")>
    <cfqueryparam value="#evaluate('uploadedpic_' & x)#"
    cfsqltype="cf_sql_varchar"/>
    <cfelse>
    NULL
    </cfif>
    <cfif x lt 6>,</cfif>
    </cfloop>)
    </cfquery>
    </cfif>
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • My iTunes gift card's redemption code is unreadable.  I tried to submit this issue through the online support but the website wouldn't allow me to attach pictures of the card. What can I do now?

    I have an iTunes gift card from a parent of my student.  When I tried to scratch off the back for the redemption code, the code became unreadable.  I tried to submit this problem on Apple's support website and the site asked for pictures of the card (front & back).  I took pictures with my iPhone and when I tried to submit it, the website said it wasn't in the right format (my pictures were saved as JPEG files).  I tried all of the file extensions acceptable by the website and none worked.  I called customer support (real human) and she said that she could not nothing for me since the card was not purchased from iTunes store directly and it may have been from a retailer.  So there was nothing Apple could do.  I find that surprising since this card has Apple's brand on it and it was a legitimate iTunes card.  I can even provide the serial number but the Apple customer support didn't want to hear it. She told me to submit the question as a product feedback via their website so I did and again, I got nothing in return.
    I'd like to know if anyone can help me with this issue or if I will need to throw away this $25 gift card that would otherwise be very helpful for the students in my classroom?
    Thank you!
    PC

    When you tried to contact Support with the card's images how were you trying to do it, on your phone or a browser on your computer ? And have you tried a different browser to see if you get the same error message ?
    As well as images of the card they might also want an image of its receipt.
    And to contact Support you were using : http://www.apple.com/support/itunes/contact/ , and clicked on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes ?

Maybe you are looking for

  • HT2731 I dont have credit card so, how can i login to itunes?

         I dont have credit card so, how can i login to itunes?

  • Oracle 8.1.7 driver limit causes problems with CMP

    The information below is from Oracle's site and has been noted by a few people on various message groups. We had upgraded to 8.1.7 but hadn't put the latest classes12.zip (June 2001) in our classpath. When we do, we get the following error from the d

  • Access Apple External drives through Windows

    Core question: How do I make external Firewire drives connected to my Mac accessible to my Windows computer? I want to access files stored on external FireWire drives connected to my Mac on my Windows XP computer. Background: I can connect to my Mac

  • I create shortcut for user to get a cr but not working

    1. added report to Customer service folder 2. created shortcut in closure group, which is attached to Customer service. the new report is not appearing when I login as that user. why? I can see the report shortcut when viewing in CMC but not when act

  • IIOMetadata metadata

    This post asks about image metadata. IIOMetadata meta = reader.getImageMetadata(0); when meta.getAsTree( meta.getNativeMetadataFormatName() ) is used to retrieve image metadata one gets Nodes like this: <javax_imageio_jpeg_image_1.0> <JPEGvariety> <a