How to close a PO after partial GR

Hi experts,
I want to close a PO for which a partial GR been done,now the purchasing don't need the remaining qty and want to close the PO I have ticked the delevery completed indicator in PO but it is still allowing me to do GR for remaining quantites.
Please let me know ur valuable inputs
Regards,
Zeeshu

Hi Marco Antonio,
I have similar scenario and would like to apply the first option provided by you.
May I know where is the setting to decrease the PO qty to the total GR qty received?
I have tried but system give me an error message no. 06230.
Please help. thanks
Regards,
Julia

Similar Messages

  • [IPhone SDK] How to close all pages after safari exit

    Apps close when you hit the home screen, however i find that Safari seems to keep multiple pages open even you close it , which no doubt uses memory. so does anyone know how to close these pages after safari exit ? Thanks very much.

    Does anyone know it , please give me some advises , thanks very much.

  • How to close the object after generation Excel file

    I have generated excel file. I save that file using "Save" button on dialog-box. After i go to menu navigation at that time i got javascript error.
    please give me the solution how to close objects after generating excel file.

    Hi,
    Pls don't forget to reward points and close the question if you find the answers useful.
    Eddy

  • How to close browser window after user log out

    Hi,
    Does anyone know how I can close browser window after user logs out. The scenario is when user clicks a log out button I will invalidate user session and close the browser right away in the backing bean.
    Your help would be appreciated.

    Try run this and you'll see that it runs fine with no exceptions:
    <%
         String someText = "bla bla bla";
         response.setContentType("text/plain");
         response.setHeader("Content-Disposition", "attachment;filename=message.txt");
         try {
              ServletOutputStream os = response.getOutputStream();
              os.write(someText.getBytes());
              os.flush();
              os.close();
         } catch (Exception e) {
              out.println("ERROR: " + e);
    %>It looks like that after I've closed the outputStream I can't do any more processing in the JSP. Even if I remove the setContentType and setHeader methods it still behaves this way.
    I'm starting to think that there's no way around this...??

  • How to close browser window after flushing a file to the browser?

    I have this simple JSP, which flushes a String to the browser as a file (message.txt). The JSP gets opened in a new window when the user clicks a link.
    The problem is that after the JSP has run, the browser window won't close automatically. I've tried adding a small javascript to achieve this, but i doesn't seem to even get run.
    How can I close the browser window after the JSP has run?
    <%
         String someText = "bla bla bla";
         // Flush to browser
         response.setContentType("text/plain");
         response.setHeader("Content-Disposition", "attachment;filename=message.txt");
         try {
              ServletOutputStream os = response.getOutputStream();
              os.write(someText.getBytes());
              os.flush();
              os.close();
         } catch (IOException e) {
              return;
         } catch (Exception e) {
              return;
    %>
    <script type="text/javascript">
         window.close();
    </script>After the JSP has run, an empty html page with the following source can be seen:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
    <BODY></BODY></HTML>

    Try run this and you'll see that it runs fine with no exceptions:
    <%
         String someText = "bla bla bla";
         response.setContentType("text/plain");
         response.setHeader("Content-Disposition", "attachment;filename=message.txt");
         try {
              ServletOutputStream os = response.getOutputStream();
              os.write(someText.getBytes());
              os.flush();
              os.close();
         } catch (Exception e) {
              out.println("ERROR: " + e);
    %>It looks like that after I've closed the outputStream I can't do any more processing in the JSP. Even if I remove the setContentType and setHeader methods it still behaves this way.
    I'm starting to think that there's no way around this...??

  • How to close ORMI connections after EJB lookup?

    I am using an InitialContext to look up my EJBs, like this:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.rmi.RMIInitialContextFactory");
    env.put(Context.PROVIDER_URL, "ormi://localhost:23891/current-workspace-app");
    env.put(Context.SECURITY_PRINCIPAL, username);
    env.put(Context.SECURITY_CREDENTIALS, password);
    ic = new InitialContext(env);
    beanHome = (EJBHome)ic.lookup(beanHomeName);
    ic.close();I have been testing this on JDeveloper 10.1.3 and the embedded OC4J.
    This code gave me the problem that the user's credentials were only retireved once while the OC4J instance was alive. So if a user's permissions were changed, they would not be updated for EJB access.
    I then found this document: Excessive ORMI Connections Created, which gave me a clue to use env.put("oracle.j2ee.rmi.loadBalance", "context");
    However, I am concerned with the other part of that release note which states:
    "Closing the context does not cause the connection to be closed. Doing this repeatedly will result in performance degredation."
    Does anyone know how to forcibly close the ORMI connection that is created, or whether it will be released automatically?

    the sample shows how to clear RAS and Enterprise resources after viewing report.
    1. If you use unmanaged RAS - as I can see you using setReportAppServer, then remove the enterprise related stuff : instantiating and cleaning code.
    The sample code is meant to give you an idea on how you can release the resources after done with viewing report. In your case all you need to do for cleaning is call close() on ReportDocumentObject. The sample will need to be modified for your requirements.

  • How to Close InfoPath Form After Submission When Two Buttons Exist?

    I have an browser-enabled InfoPath 2010 form that has two views and a submit button on each view. The form would correctly submit and close the form using one button on the form until the second button was added. After adding the submit button on a second
    view, the second button submitted/closed but the behavior on the first view changed so that the form no longer closes after submission. I’ve researched this and have not yet found a solution to allow closing the form after submission for one of the buttons.
    Things I’ve tried:
     - I’ve attempted creating multiple submit data connections for the different buttons
     - Specifying different Submit Options
     - Try closing the form with the code
     - Add another button to the non-closing view
     - Add duplicate Rule actions to "Close this form: No Prompt"
    Settings:
    Button rules:
     - Submit using data connection: SharePoint Library Submit
     - Close this form: No Prompt
    Button Properties:
     - Action > Rules and Custom Code
    The form Submit Options:
     - Send form to a single destination (a form library)
     - Choose a data connection for submit (SharePoint library submit)
     - Advanced > After Submit: Close the form
    Advanced form options:
     - Filler Features: all items unchecked (not allowing Save, etc.)
     - E-Mail Attachments: uncheck Enable InfoPath e-mail form functionality for this form template
    Resources:
    When considering programmatically submitting and closing the form, I understand from this article that the Rules run before code and I can’t close the InfoPath form programmatically by writing code behind a button that has a rule set on it:
    http://www.bizsupportonline.net/blog/2009/01/how-to-programmatically-run-code-close-infopath-web-form/
    Discussion of creating a custom Save and Submit buttons for InfoPath browser forms:
    http://markhaverty.com/sharepoint/custom-save-and-submit-buttons-for-infopath-browser-forms/

    what if you need to switch views? 
    I have the same problem in a similar situation.  I created a test button to narrow down the cause.  the button submits data & closes the form fine.  however when I add a rule to switch views before the submit & close rule, it
    breaks.  Submit still works but it no longer closes the form.  If I disable the switch-view rule, then it closes fine. 
    I tried added another rule to switch back to the main view but that didn't help. 
    switching views is an integral part of the workflow b/c I want to email the alternate view upon approval & then close the form.  So removing that rule is not a good answer unfortunately. 

  • How to close my app after last update

    I can't close my app with normal way after last update
    Need help for this
    Thx

    You still double-click the home button to open the multitasking bar, but you now drag or swipe the app 'screens' up from there and off the top of the screen :

  • How to close a video after it plays

    Hey people,
    Say you have a video intro that you would like to have dissapear after it plays. Use this code. (place in trigger event)
    var vid = sym.$("bird_holder");
    vid.html('<video width="1022" height="575" id="bird" src="video/Intro_Animation.mp4" controls="controls" type="video/mp4" </video>');
    $(document).ready(function(){  
           $("#bird").bind('ended', function(){
           sym.getComposition().getStage().getSymbol("intro_animation").deleteSymbol();
    A couple things to address:
    1) My video is housed in a symbol called "intro_animation" which contains the holder for the video. (called "bird_holder" in my example)
    2) If your video is on the main stage, just use sym.getSymbol("holder_name").deleteSymbol(); at the end of your function.
    3) be sure to include id="" in your video tag. and make sure your ready function is referencing that id.
    Hope this helps someone.
    -Dylan

    Hi Marco Antonio,
    I have similar scenario and would like to apply the first option provided by you.
    May I know where is the setting to decrease the PO qty to the total GR qty received?
    I have tried but system give me an error message no. 06230.
    Please help. thanks
    Regards,
    Julia

  • How to close an app after a given time

    I would like to kill an app like after pandora or music player or an streaming audio or video after a Given  time period.
    Anyone knows an app doing this?

    No, not with the native Music app (except through the alarm, which only plays one song,  as you have noted). You might check the app store for something.

  • How to close an open PO of partial GR and release procedure

    Hi friends,
       I would like to know how to close an open PO where partial GR has done on it and release procedure exists for that particular PO.
        I would also like to know if Invoice is not done for a PO and GR is done, then can we call it as open PO?
    Please clarify
    Thanks
    Jyothi

    hi antony..
      thank u antony a lot...i ve tried it and working fine..
      but can we go in me22n to tick delivery complete for a PO which has already been released? it is showing "u cannot make change because it has already been output
    regards,
    jyothi

  • How to Close Planned Overhead Rates after production order/ CK40N

    Hi,
    While creating production order,it will pick planned overheads from Costing Sheet.After closing the production Oder,how will we close the planned overheads?
    For example: We have maintained the planned overheads as 3% in the costing sheet.Over a period of time we have observed the actual overheads is only 2%.How to deal with this in the system.In this case how to close the planned overheads which we got from costing sheet?
    Kindly advice me
    thanks
    Sunitha

    Hi,
    If i understand you correctly,currently your planned overhead rate is 3% and you wants to change to 2%.
    if this is the case goto your Overhead rate in configuration and copy overhead rate key which is with plan overhead type(2). and change 3% end as of today and copied one with new rate (e.g 2%) as of tomorrow and till end of life(12/31/9999)....
    hope this helps you.
    Thanks,
    Rau

  • How to Close Planned Overhead Rates(KP26) after CK40N -cost estimate

    HI,
    How to close the planned overhead rates which we have maintained in the KP26 transaction after excuting Material Cost estimate?
    Kindly advice me regarding the same.
    Thanks
    Sunitha

    Hi,
    Goto OKP1, enter your controlling area,version and fiscal year.then click on "PLAN"(F6) icon at your left side top.you will see transaction and period in new window.
    here you can check the boxes under particular period.
    Thanks,
    Rau

  • After I installed iOS 7.0 for iPad update I noticed that I can't close apps like I was used to do till now. Does any one know how to close apps now.

    After I installed iOS 7.0 for iPad update I noticed that I can't close apps like I was used to do till now. Does any one know how to close apps now.

    Close Apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe up on the screenshot of the app you want to exit.
    3. The app will fly off the screen

  • How you close an application on ipad 4 after installing ios 7

    How you close an application on ipad 4 after installing ios 7

    Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app.

Maybe you are looking for