Uncheck OK checkbox in GR Confirmation Page

Hi,
i got an situation where my purchase order has 20 items. Only one item was received and should be GR. However in SRM, when you enter the confirmation page, the default is to check all checkbox of the OK checkbox. My users would want the default to be unchecked for all OK checkbox.
May i know where is the configuration to make this changes or a technical enhancement should be made. If so, what is the badi to solve this problem.
Hope to hear from you gurus.
Many thanks.
Regards,
Wilson

Jegan,
The checkbox is not associated with any VO Attribute(not to any db attribute, and transient attribute).
And When you are moving between the pages you are keeping the retainAM true, that is keeping the value in the checkbox.
Try the following,
1) when you move the first page to second page,
pageContext.removeParameter(<id of the checkbox field>);
or if you want the checkbox should be unchecked when the page loads, get the handle of the bean and setValue to N in the ProcessRequest.
And check the issue.
With regards,
Kali.
OSSI.

Similar Messages

  • Uncheck a Checkbox when Select List Clicked

    version 4.0.2.00.06
    Hello,
    Jari helped me with a javascript function to select all options in a multi-select list when a checkbox is checked by the user.
    A bug was reported that after clicking the checkbox to select all the options in the list, if the user then clicks on a single value in the select list the checkbox is still checked.
    Would someone help me with how to uncheck the checkbox when a single value is selected in the select list after the checkbox is checked to select all of the options in the select list?
    If you need more information please let me know.
    Thanks,
    Joe

    Hi,
    Same sample as in this post
    Re: The requested URL /apex/wwv_flow.accept was not found on this server
    I did add page JavaScript
    function checkSelected(pThis,pChk,pVal){
    var self=$($x(pThis));
    var o=self.find("option");
    var s=self.find("option:selected");
    if(s.length==o.length){
      $s(pChk,pVal);
    }else{
      $s(pChk,"");
    }And to P65_EMP multiu select HTML Form Element Attributes
    onchange="checkSelected(this,'P67_SELECT_ALL','ALL')"Regards,
    Jari

  • UnCheck a CheckBox in AM

    Hi all,
    I would like to uncheck a checkbox after i clicked a button.
    I have a check box.
    --After i check a check box and press apply button the page gets reloaded. And at that time the check box must be unchecked.*
    --After i check a check box and When Cancel button is clicked then the page gets reloaded. And at that time also the check box must be unchecked.*
    The issue i am facing is after check the checkbox if i click apply or cancel button the check box remains unchecked.
    I tried by writting code as
    OAMessageCheckBoxBean oamessagecheckboxbean1 =
    +(OAMessageCheckBoxBean)pageContext.getPageLayoutBean().findIndexedChildRecursive ("ChkBox");+
    oamessagecheckboxbean1.setChecked(false);
    But the above code works whenever i clicked a checkbox also.
    So that when the ckeckbox is clicked the page gets loaded and the checkbox gets unchecked.
    I have set partialfireAction property to the checkbox.
    Is there a possbile way to handle the code in AM so that i can call the method while clicking Apply button.
    Please advice,
    Thanks in Advance,
    Jegan

    Jegan,
    The checkbox is not associated with any VO Attribute(not to any db attribute, and transient attribute).
    And When you are moving between the pages you are keeping the retainAM true, that is keeping the value in the checkbox.
    Try the following,
    1) when you move the first page to second page,
    pageContext.removeParameter(<id of the checkbox field>);
    or if you want the checkbox should be unchecked when the page loads, get the handle of the bean and setValue to N in the ProcessRequest.
    And check the issue.
    With regards,
    Kali.
    OSSI.

  • I have created a pdf and then want to send it to my boss.  When he recieves it it is saved in the 14 X 8.5 inches version.  How can I saved it on my end as a 11 x 8.5 inch so he doesn't have to uncheck "Choose paper source by PDF page size"?

    I have created a pdf and then want to send it to my boss.  When he recieves it it is saved in the 14 X 8.5 inches version.  How can I saved it on my end as a 11 x 8.5 inch so he doesn't have to uncheck "Choose paper source by PDF page size"?

    Hi heathers,
    You would need to print the file to a new PDF with the appropriate page size.
    Best,
    Sara

  • Using Javascript To UnCheck A Checkbox

    Hi,
    I have a select list with two options in. When one of them is selected I have two checkboxes that I want hiding and setting to unselected. I can hide and show them fine using *$x_HideItemRow* and *$x_ShowItemRow*, but when I hide them I want the setting as unselected.
    Have tried using html_GetElement(pThat).checked = false; but when the items are displayed again they are still displayed as selected.
    Can anyone show me how to uncheck a checkbox using javascript?
    Cheers
    Simon

    Simon,
    Use firebug in firefox to see what's happening. The name of your item is applied to an HTML fieldset element that contains the actual inputs of type checkbox. Each of those has a name based on the item name with "_X" on the end as in PXX_ITEM_NAME_0.
    You'll need to select the one you want to check/uncheck directly by adding the underscore and the number. Also, you can use $x over html_GetElement (just shorter).
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • How to create a XML Form with confirmation Page

    Hi!
    I need to create a XML Form that have a confirmation page to enter de data and save it (into XML file).
    It's possible to make it with the XML Forms Builder, or I need to make it manual at xml & xsl??
    (Sorry about my poor english!)

    Hi Ernesto,
    there is currently no confirmation message available in the XMLForms EditForm. But you can use the "preview" button to show how it looks like, before you are using the "Save" button.
    Regards
    --Matthias

  • Checkbox on a JSP page

    hi experts
    is there any control for Boolean field in JSP??
    how can bind boolean field in JSP page??
    waiting for help
    Thanks

    Surely, someone must have tried to put a checkbox on a JSP page and bind it to data?
    All suggestions are welcome.
    tnx
    -Jan

  • JSP Form with Formatted Confirmation Page

    I have a basic form, and I would like to have a confirmation page pop-up when the user clicks that they are done. The confirmation page needs to have considerable formatting on it, and include the data the user inputted on the form. It also needs to have a "Continue", "Go Back" and "Print" buttons. Continue will tell the form to proceed with submitting the form to the servlet, Go Back will put the user back on the form, Print will bring up another JSP with the form data in printable format with print/email options. Upon exit from the print page they will be back on the Confirmation Page.
    The code below will allow for an OK, and Cancel button in the standard Message box, but this won't work.
    I am assuming I need to create another jsp for the confirmation page. But i am stuck on two issues. How can i ...
    1) Get the data onto the confirmation page from the form?
    2) How can I pass back to the initial form the value of what the user selected (Continue or Go Back) so i know whether to proceed with submitting the form, or staying put.
    Thanks for any help! I am very new to jsp programming.
    <FORM
    ACTION="http://www.mcfedries.com/scripts/formtest.asp"
    METHOD="POST"
    NAME="Monikers"
    onSubmit="return validate(Monikers)">
    Here's the JavaScript for this function:
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function validate(frm) {
    // Build the form data
    var formData
    formData = "First Name: " + frm.First.value + "\n"
    formData = formData + "Last Name: " + frm.Last.value + "\n"
    formData = formData + "Nickname: " + frm.Nick.value + "\n"
    formData = formData + "Stage Name: " + frm.Stage.value + "\n"
    // Show the data to the user
    return confirm("Here is the form data you entered:" + "\n\n"
    + formData + "\n"
    + "Do you want to submit this data?")
    //-->
    </SCRIPT>

    Does the problem persist if you upload All Files (and not just modified). Do you continue to receive the message even if you choose "After Sending: Stay on Current Page" option? If yes, a site URL would help in identifying the issue.
    Also try inserting a fresh form on a page/new Muse site and see if you're able to replicate the behaviour on different browsers.
    Thanks,
    Vinayak

  • How to uncheck a checkbox using Screen Variants?

    Hi Masters!
    Anybody knows how to uncheck a checkbox that is already checked by default?
    I'm trying to do this using screen variants. I uncheck the checkbox and save the value (I also tried filling other values there like 'a', space, etc. and it didn't work), but at runtime it always shows the checkbox checked.
    At the same transaction there is a unchecked checkbox by default witch I can check it with a screen variant, but somehow I can't do the other way around...
    Any suggestions?
    Many thanks in advance,
    José Omar

    I checked the code and found something interesting. The
    variable I'm trying to uncheck is GV_WITH_CONTACT_PERSON.
    It's declaration:
    DATA: GV_WITH_CONTACT_PERSON TYPE XFELD VALUE 'X'.
    At the initialization of the program (at the first screen module):
    PROCESS BEFORE OUTPUT.
    MODULE INITIAL_STATE.
    And inside the MODULE INITIAL_STATE there is also:
    MOVE 'X' TO GV_WITH_CONTACT_PERSON.
    So there are places in the code that the checkbox is checked.
    Now we get another problem. I don't now when the values set at a screen variant are inserted in the screen. Is it possible that the code itself is overwriting the value set with a screen variant? Or is this not possible at this point in the code?
    Many Thanks,
    José Omar

  • Order confirmation page - include copy of order

    Is it possible to include a copy of the customers order on the online order confirmation page?  It's a bit sparce at the moment, and a customer has commented that it looks dodgy.
    I've just tried using the tags from the order conf email but that didn't work.
    Thanks
    Ben.

    No easy solution. Why would anyone want to see what they’re buying before submitting credit card details? I kid, I kid
    The only solution is to use ajax, perhaps jQuery’s .load() function to pull in the content of the shopping cart onto that page, parse out only the stuff you need and render it on the page. This is made more difficult by the fact that BC renders the whole cart inside a single TR, and then TDs have these divs in then rendered by the tags, indistinguishable from each other, by IDs or classes.
    Good luck!
    _M

  • Unable to uncheck hidden checkbox in RSA6

    Hi,
    I have to following problem: In datasource 0CO_OM_OPA_1 a field is marked as hidden but I am unable to uncheck the checkbox because the field is disabled (is gray so no action can be performed). Other fields in the datasource have their hidden checkboxes enabled. so it's this one field (AUTYP).
    Any idea how to enable the checkbox again because I need to add this field for extraction.

    Ok this seems to work now. Its not the kind of solution I prefer but it has done the job.
    UPDATE roosfield SET SELECTION = 'X' where OLTPSOURCE = '0CO_OM_OPA_1' AND FIELD = 'AUTYP'.

  • How can i uncheck a checkbox in table component on clicking a button

    In my application I have a table component that display data from the database and a submit button outside the table component, the first column in the table component is a checkbox, How can i uncheck the checkbox in the table component when the submit button is clicked?
    Thanks in advance.

    Something like this ... I THINK it will uncheck all checkboxes in table, but I'm not positive ... you can test!
    if checkbox id is checkbox1...
    <script type="text/javascript"><![CDATA[                                         
    function disableCheckbox()
    document.getElementById('form1:checkbox1').selected = false;
    }]]></script>Put above code inside of head tag in JSP View
    NEXT...
    go to Design View and select your button and go to properties section and select onClick property and insert this javascript in dialog...
    setTimeout('disableCheckbox()', 1)Now run the project when you click the button does the checkbox become unselected?
    Anyway this is where I would start...as far as selecting just the first checkbox if there is more than 1 record...I'm not sure...but I'm curious if this works.
    Jason

  • Use spacebar to check/uncheck a checkbox in a datagrid.

    I have a DataGrid that has checkbox in the first column. The user wants to be able to check/uncheck the checkbox when he selects a row, by mouse or up and down keys, and hits the spacebar. Currently the spacebar functions if the last thing that the use has clicked on is the Checkbox. If the user clicks in the cell where the checkbox in located(not the checkbox itself), the spacebar won't do anything.
    <mx:TabNavigator>
         <mx:VBox>
              <ms:datagrid id="lgGrid" dataProvider="{this.lData}">
                   <mx:columns>
                        <mx:Array>
                             <mx:DataGridColumn dataField="vis" id="dfID" sortable="false">
                                  <mx:itemRenderer>
                                       <mx:Component>
                                            <mx:CheckBox click="data.vis = !data.vis"  paddingLeft="4"/>
                                       </mx:Component>
                                  </mx:itemRenderer>
                              </mx:DataGridColumn>
                              <mx:DataGridColumn dataField="name"/>
                        </mx:Array>
                   </mx:columns>
              </ms:datagrid
       </mx:VBox>
    </mx:TabNavigator>

    Your TableModel has to indicate that the column is editable. Your TableModel also has to implement setValueAt() so that when the user changes the value, it updates the data.
    The table will know to use it's own boolean renderer/editor for that column because it knows what to do when a column returns a Boolean.

  • How is Define Links on Confirmation Page-link list key linked to iviews?

    Hi All,
    Although there is no ESS in MSS as such in our new portal (hompage framework), we have configured it as much as we could, so that it was similar to the previous ESS in MSS.  We have used a copy of the ESS address iview for the ESS in MSS emergency contact.
    The trouble is that the links on the confirmation page are trying to resolve to ESS rather than resloving to an option in MSS.  E.G. the Go to Address Overview link is trying to resolve to the address overview screen in ESS rather than MSS.
    I have  checked the parameters on the view and there does't appear to be anywhere that you can assign the lnk list key.  Similarly I have checked the resources and the services parameters and have nowhere to put this key.
    So my question is, how exactly is the link list key attached to an iview? In our case the iviews are in 2 different PCD's so how can I create a zlink list key and assign it to the copied address iview?
    Many thanks,
    Liz.

    The confirmation links are defined in V_T7XSSSERLNK - as far as I can see they are linked to services not iviews
    defined in HpF
    Also "ESS in MSS" is available as "Self-Service for My Employee" in MSS Related Activities for certain SAP releases
    Best wishes
    Stuart

  • How do I attaching a confirmation page to a survey submission?

    The link below goes to my survey. I want to prompt participants to a confirmation page on submission. Where and how to I link to that confirmation page?
    http://www.diojeffcity.org/Home%20Page/Parishioner%20Survey/survey.html

    Hi
    At the end of your-
    sendresults.php
    page, you would have to redirect them to the confirmation page, using something similar to the following -
      $confirmGoTo = "confirm.php";
      header(sprintf("Location: %s", $confirmGoTo));
    PZ

Maybe you are looking for

  • Host('sqlldr') is not working in oracle forms 10g

    oracle database version:10.1.2.0 oracle forms version:10g client ans server are on the same machine. when i am trying to load the file in to oracle,i wrote the when-button-pressed trigger as host('sqlldr'); when i run the form its not giving any resu

  • Drag and Drop files on mac?

    I've been using Dreamweaver for years but this is the first time on a mac. I noticed that I can't simply drag documents into my files view in Dreamweaver. Am I doing something wrong? Is the only way around this to keep one window open with all the si

  • Powerbook G3 screen display hinge won't stay open

    Does anyone know how to tighten the hinge on the display screen? Once open it just flops open 180 degrees all the way, even with the keyboard. Thanks

  • Anti-virus for Mac

    I'd like to know if there is any anti-virus software for Mac. I'm afraid my Mac is infected! If the answer is yes, which one is the best? What should I do to keep my Pc safe?

  • Can't format HD - Mountain Lion, MacBook Pro

    Hi everyone. My MacBook Pro stopped working a few weeks ago. It wouldn't pass the initial grey screen with the Apple Logo. I realized that something happened with the OS and decided to connect to my Mac Pro by Firewire cable and backup everything. Th