How do you Finally Close a P-Order that has..

..Approval Status of 'Rejected' and Closure Status of 'Closed'..?
When I go to Tools-Control it says I have 'No control actions for this document'. What can I do with these?
As I understand it, ALL Purchasing Orders & Requisitions MUST BE Finally Closed for any Project-related encumbrance to be released. Also, if they don’t (as in if they just ‘CLOSED’), they remain in the system appearing in some reports.
Thanks for looking.
Steven
Post moved from 'Financials' sub-forum-list thread thing...

answered on its sister thread - I'm gointo give this a go...
http://download-uk.oracle.com/docs/cd/A60725_05/html/comnls/us/ap/point10.htm#index-purchase-orders-closing--0
regards,
Steven

Similar Messages

  • How do you stop spell checking any "word" that has an underscore in it.

    I send lots of email that reference code.  Either with snipits, or mentioning variable names or file names etc.
    So I would I disable any spell check of any word that has an underscore character as part of it.  For example dont_check_this_var.
    I specifically am concerned about settings in Outlook

    Right click on the word, and select "Ignore all".
    To disable spellcheck,
    Click the File tab, and then click Options. 
    Click Mail , and then click Editor Options. 
    Click to clear the Check spelling as you type check box. 
    Click to clear the Mark grammar as you type check box.
    Tylor Wang
    TechNet Community Support

  • How do you make a transparent spry menu that has a background color on sub menus?

    Hi i am a total newbie at html and css scripting/coding and i've been working on creating a website of course because im here and i have search and search and i've found a few topics about this but none of them have what i want and it would be helpful if when you post the reply you explain it so hopefully i can add on and learn but i am trying to get the background color on the sub menus #1A1A1A and then the menu it self transparent here is my code it might make no sense at all since im a newbie ;P
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 8.2em;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #0048ff;
              color: #EEE;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarDown.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRightHover.gif);
              background-repeat: no-repeat;
              background-position: 85% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background: #222222;

    Hi and welcome -
    Start with fixing this missing semicolon  (in red)
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    You will find you will get faster, more accurate help from us if you upload your test page and any dependent files to your server and post a link here.  That way we can examine ALL your code

  • How do you sign out of an account that has a fake email?

    I know its stupid but i signed into my adobe creative cloud app with a fake email and now i want to actually buy creative cloud but i cant sign out of the fake account in the adobe creative cloud desktop app. Whenever i try to get into it, a screen pops up that says resend confirmation email or continue. And i cant continue. Please help, i have an upcoming project i need Premiere for. Thanks.

    UN-install and run the cleaner
    -http://forums.adobe.com/thread/1408331?tstart=0
    -http://forums.adobe.com/thread/1398961?tstart=0
    -and http://helpx.adobe.com/creative-cloud/help/install-apps.html
    -using the cleaner after uninstalling and before reinstalling will usually help
    -http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Fix your email before you reinstall... and don't use fake information for your account
    Change Account https://forums.adobe.com/thread/1465499 may help

  • For the iPad, using OS  7.02, how do you now close an application?

    For the iPad, using OS  7.02, how do you now close an application?  When I double click, go to the task bar and touch on the icon, it no longer gives me the option to close the application.  Do you no longer need to quite an application?

    Double tap the home button and swipe upwards on the preview of the App (not the App Icon)

  • How do you fully close applications?

    How do you fully close application that have been opened?  My battery life does not seem to be very long, so I am thinking that applications must still be running that I am unaware of.

    Double tap the home button to bring up the multi-tasking bar, tap & hold the app icon until they all start to wiggle, tap the red minus sign, tap the home button when finished.

  • How to check the sales order that has been PGI from a range of dates.

    Hi SAP Gurus,
    I have a query on how can I check the sales order that has been PGI from a range of dates in SAP?
    Thanks,
    Madelyn

    Dear Madelyn
    Go to VA05, give the date range and execute.  List of sale orders will be generated.  There you can see a tab "Status"  in which, the status would be like
    -  Not delivered
    -  Partially delivered
    So based on this, you can decide whether the order is still open or completed.
    thanks
    G. Lakshmipathi

  • How do you transfer purchased songs from itunes that you bought on your computer to your iphone? PLEASE HEP!!! :(

    how do you transfer purchased songs from itunes that you bought on your computer to your iphone? PLEASE HEP!!!

    Just follow the steps in this article:
    www.apple.com/support/kb/ht1351

  • How do you get your ring/text tones that were purchased back on your phone

    how do you get your ring/text tones that were purchased back on your phone

    Hey there oops31,
    Welcome to Apple Support Communities.
    It sounds like you want to know how to get tones that you’ve previously purchased on your iPhone 4s. The article linked below outlines the options for downloading past purchases and includes information about syncing tones from iTunes to your iOS device.
    Download past purchases - Apple Support
    Audiobooks, ringtones, and tones
    If you made a backup of these items on your Mac or PC, you can sync the items to your iOS device. You can't download these items again from iTunes in the Cloud.
    Cheers, 
    -Jason

  • HT3702 I have an order that has not been completed and the old card no longer exists and I want to pay with my new card. the order is MHBG5FL5DH How do I delete the restriction in iTunes

    I have an order that has not been completed and the old card no longer exists and I want to pay with my new card. the order is MHBG5FL5DHHow do I delete the restriction in iTunes

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122986)

  • How do you make a photo in DW that changes automatically in a loop and needs  no visable buttons

    How do you make a photo in DW that changes automatically in a loop and needs  no visable buttons?

    I'm sorry to be so vague. I have recently found out that what I want 
    to do is put my images in a javascript image rotator. I have looked 
    this up on google and have now tried about 6 different codes. I try to 
    follow the insert directions but I must be doing something wrong. I 
    get the first photo linked up but can never make the picture change to 
    show the other two photos in the image folder.
    Can you direct me as to how this works in dw?
    Thank you so much for helping.
    Pam

  • How do you download albums to i tunes that are compilations and keep them together as a album

    how do you download albums to i tunes that are compilations and keep them together as an album i have several discs that have downloaded singley the i tunes is a mess

    Steve MacGuire aka turingtest2 - iTunes & iPod Hints & Tips - Grouping Tracks Into Albums - http://www.samsoft.org.uk/iTunes/grouping.asp (older post on Apple Discussions http://discussions.apple.com/message.jspa?messageID=9910895)
    Quick answer:  Select all the tracks on the album, File > get info, and either give them all a single "album artist", or check the "compilation" flag (as in https://discussions.apple.com/message/17670085).
    If these are from multiple-CD sets you may also need to enter the appropriate information in the disc number fields.

  • How do you regulate the number of emails that are kept on your phone before they are deleted?

    HOW DO YOU CHANGE THE NUMBER OF EMAILS THAT ARE KEPT ON YOUR PHONE BEFORE YOU DELETE THEM?

    Your carrier sets this by time, not the number of "rings" since different ring tones take different times/ring.  The typical setting is 30 seconds, sometimes up to 40 seconds.  Contact your carrier to shorten it.

  • How do you limit the number of emails that download in ios7?

    How do you limit the number of emails that download in iOS7? In previous versions, I was able to limit (i.e. 50/100/ etc), the number that would download to my phone at any given time - other than new emails. Past/old emails would only be reloaded if I deleted newer ones or I requested more be loaded.

    Now solved:
    https://discussions.apple.com/thread/5325394?tstart=0
    Guy in my thread fixed it for me. Very simple to do.

  • How do you approve/forward an Expense Report thats fallen into ERROR?

    How do you approve/forward an Expense Report thats fallen into Systems Administration Action status -"ERROR" (or Expense Status Code)?
    When I try logging into IE Audit manager responsibility half the buttons described in the doc:
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121oieig.pdf (Oracle® Internet Expenses Implementation and Administration Guide)
    ..are not visible?
    The approvers Cost (GL) Code is valid and the mileage expense lines have been created correctly. What else could it be?
    thanks.
    S

    Hello.
    For anybody thats interested please find below the reasons I've found so far for ER's dropping into said status..
    ERROR – Pending System Administrator Action
    If an employee cannot get their ER approved – check their Cost Code and/or that the approver named is actually an Approver. Also check the person who’s trying to Approve the ER has that particular GL Code in their Payables Signing Limits. Just add, then get ER creator to withdraw and resubmit it. Also check their actual ER lines table. Something must be up. And, of course, their expense Report via Auditor resp.
    J

Maybe you are looking for

  • Some thoughts on battery

    It is just me? When talking about battery life, people are comparing it with the PowerBook. I don't think you can do that considering the difference between the MBP and the PB. For starter, my 12" PB can go for about 3-4 hours of "limited" use (note

  • Urgent: Customize BP for Products Java iView

    Hi, We have implemented Business Package for Products 50.3.1 in EP 6.0. I want to ewmove some buttons like create document and change materials in the Java iView provided in the Business Package. I have no idea how this customization could be done? I

  • How to uninstall "Command Line Tools" in Xcode 4.3?

    Just installed Command Line Tools using the perference in Xcode 4.3. After removing Xcode 4.3, I found the Command Line Tools are not removed. Is there any way to uninstall? Thanks!

  • Convert a JComponent to an image

    I was just wondering if it were possible to convert and component (in my case a Chart) into an image file in order to "copy" it and "paste" it onto another screen......By the way this needs to be done within an applet.....and help would be awesome...

  • HT1237 Trying to update my Macbook Pro 6.2 but the firmware doesn't seem to work.

    Trying to update the EFI version 6.2 for Macbook Pro but it won't install. Complaining that it isn't for this computer. Checked the systems info and everyting.