Purchase Request need to be Open when respective PO Cancelled

Hi Experts
One of my customer is asking very basic and essential requirement.
When raise the PO from Purchase Request, PR will close automatically. In the same way if you cancel the PO respective PR need to be open.
But it is not happening in SAP 9.0 PL 08
Is there any possibility to achieve this?
Regards
Karuanakaran.P 

Dear Karunakaran
Not possible as of now.
You can put recommendations \ Ideas in "SAP Idea Place".
https://ideas.sap.com/ct/s.bix?c=5E7C8A57-8FB9-4C04-9571-9B61022802BAhttps://ideas.sap.com/ct/s.bix?c=5E7C8A57-8FB9-4C04-9571-9B61022802BA
regards
Unnikrishnan

Similar Messages

  • How do I get an app to show up after I have mistakenly deleted it during the process of the app updating. The App Store says that it is purchased but it will not open when I push open

    Help!

    Does it show on your device's taskbar (double-click the home button) ? If it does then try closing it from there (swipe/drag it up and off the top of the screen).
    If it still doesn't open, or if you can't find it on the taskbar, then have you tried a soft-reset to see if you can open or download it after the device has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

  • Try to keep accordion panel open when selected

    Hello,
    Could someone help me find the code to "keep the selected panel open" instead of having them closed on each pages.
    There is 2 spry collapsed panels. Within the first one there is 1 Spry Accordion with 5 panels  which need to stay open when selected.
    You will find the site here : www.otaa.fr (but you may use Safari)
    Here the codes:
    <Head>
    <script type="text/javascript" src="SpryAssets/SpryURLUtils.js"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript"> var params = Spry.Utils.getLocationParamsAsObject(); </script>
    <style type="text/css">
    </head>
    <body>
    <div id="CollapsiblePanel2" class="CollapsiblePanel">
              <div class="CollapsiblePanelTab" tabindex="0">PROJETS</a></div>
              <div class="CollapsiblePanelContent">
                    <td><div id="Accordion1" class="Accordion">
                      <div class="AccordionPanel">
                        <div class="AccordionPanelTab">Logements</a></div>
                        <div class="AccordionPanelContent">
                            <tr>
                              <td height="21" align="left"><a href="html/Vignoles.html">Rue des Vignoles</a></td>
                          </tr>
                        </table>
                <div class="AccordionPanel">
                        <div class="AccordionPanelTab">Maisons</a></div>
                        <div class="AccordionPanelContent">
                            <tr>
                              <td align="left"><a href="html/Serrieres.html">Maison Serrières</a></td>
                          </tr>
                        </table>
                   <div class="AccordionPanel">
                        <div class="AccordionPanelTab">Bureaux et Sièges Sociaux </a></div>
                        <div class="AccordionPanelContent">
                            <tr>
                              <td align="left"><a href="html/Tchad.html">Ambassade du Tchad</a></td>
                          </tr>
                        </table>
                   <div class="AccordionPanel">
                        <div class="AccordionPanelTab">Aménagements Intérieurs</a></div>
                        <div class="AccordionPanelContent">
                            <tr>
                              <td align="left"><a href="html/Martin.html">Appartement Martin</a></td>
                          </tr>
                        </table>
                   <div class="AccordionPanel">
                        <div class="AccordionPanelTab">Equipements</a></div>
                        <div class="AccordionPanelContent">
                            <tr>
                              <td align="left"><a href="html/Aquatonic.html">Centre Aquatique</a></td>
                          </tr>
                        </table>           
    < /body>
    <script type="text/javascript">
    var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2", {contentIsOpen:false});
    var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3");
    var accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, defaultPanel:(params.panel?params.panel:-1)});
              </script>
    Thanks for you help.

    Forget about the tutorial by David Powers. There is an easier way to achieve what you want.
    If I understand right, you want the about panel to be open when on the about page and the homw panel when you are on the home page. Simply set the default panel for each page as follows
    For the Home page
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Home Page</title>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet">
    <script src="SpryAssets/SpryAccordion.js"></script>
    </head>
    <body>
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Home</div>
        <div class="AccordionPanelContent"><a href="index.html">Home</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">About</div>
        <div class="AccordionPanelContent"><a href="about.html">About Us</a></div>
      </div>
    </div>
    <script>
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {defaultPanel: 0});
    </script>
    </body>
    </html>
    and for the About page
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>About Us</title>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet">
    <script src="SpryAssets/SpryAccordion.js"></script>
    </head>
    <body>
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Home</div>
        <div class="AccordionPanelContent"><a href="index.html">Home</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">About</div>
        <div class="AccordionPanelContent"><a href="about.html">About Us</a></div>
      </div>
    </div>
    <script>
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {defaultPanel: 1});
    </script>
    </body>
    </html>
    Repeat this process for each of your pages.
    Gramps

  • Hello,I have done this successful in the past but on my IPad it shows I have 4 apps that need to be updated so when I hit the update tab all I get is a white screen. When I hit the purchase or other tabs it opens up. What could be the problem?

    ****,I have done this successful in the past but on my IPad it shows I have 4 apps that need to be updated so when I hit the update tab all I get is a white screen. When I hit the purchase or other tabs it opens up. What could be the problem?

    There have been numerous reports on the forum today regarding this issue. It seems to be an issue at Apple, but no information has been posted on the status site.
    http://www.apple.com/support/systemstatus/

  • I purchased keynote for my new iPad do I need to purchase keynote for my iMac?  When I try and purchase keynote for my iMac I am told that "you have already  purchased keynote, do you want to purchase it again?"  Answer NO.  I try to open the keynote app

    I purchased keynote for my new iPad do I need to purchase keynote for my iMac?
    When I try and purchase keynote for my iMac I am told that "you have already
    purchased keynote, do you want to purchase it again?"  Answer NO.  I try to open the
    keynote app on my iMac and it asks "do want to buy iWork again?"  answer NO.  Then the keynote app
    closes. What an I to do?

    Call the apple store you got it from and ask them. Sometimes in the past they've extended the 'no questions asked return' but only Apple can tell you for sure.

  • Licence purchase request when membership is still on

    I purchased a year Cloud membership in March and now (in December) I am suddenly requested to buy a licence when I try to open the programs. What are the possible reasons?

    Hi Langur,
    Solution 1:
    Try to sign out and sign back in to Creative Cloud Desktop App.
    In case your are facing trouble in signing in  refer : http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivat ion-products.html
    Solution 2:
    Rename : Opm.db to Opm.db.old from :
    WIN 7/8 : C:\Users\{Username}\AppData\Local\Adobe\OOBE
    Mac OS: /Users/[user name]/Library/Application Support/Adobe/OOBE folder
    Additional information If the OOBE folder is not visible in the specified location on mac, change your system settings to allow hidden files and folders to be displayed.
    Thanks!
    Atul Saini

  • I am trying to buy an app (Aperture). I don't see a "buy" icon in the app store. If I go to Apple site, there is a buy icon but when I click it, I get a dialogue box saying the link needs to be opened with an application. Please help. Thanks.

    I am trying to buy an app (Aperture). I don't see a "buy" icon in the app store. If I go to Apple site, there is a buy icon but when I click it, I get a dialogue box saying the link needs to be opened with an application. Please help. Thanks.

    Hi ...
    Installing the OS X Lion Update 10.7.3 (Client Combo) will reinstall the App Store for you.
    Restart your Mac after the combo is installed then try purchasing Aperture.

  • When i try to save purchasing request  following error come

    HI ALL
    When i try to save purchasing request following error come , i oracle webside not number ID 1095183.1 it say i need to apply a pach. but in the R12.1.3 already apply the patch
    but still this error comming what can i do now
    please help me
    APP-PO-14142: get_real_segment1-: ORA-01407: cannot update ("PO"."PO_REQUISITION_HEADERS_ALL"."SEGMENT1") to NULL
    Cause: A SQL error has occurred in get_real_segment1.
    The SQL error is ORA-01407: cannot update ("PO"."PO_REQUISITION_HEADERS_ALL"."SEGMENT1") to NULL
    Action: Take note of both this error number and the actions you were trying to perform. Contact your system administrator for further assistance

    It seems when you are trying to save a requisition, system is not allowing to save the requsition (requisition Number : segment1 of PO_REQUISITION_HEADERS_ALL table). It may be b'coz of unique key violation...
    You need to check the Purchasing option setup too. Is the Document Numbering against Requisition number is set as Entry : Manual and Type : Numeric? ... if so then you might be trying to use an existing requisition number...
    If above case is not true then we will recommend you to raise a SR with oracle for your issue.. They may guide you better :)
    /S.P DASH

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • HT1338 I need help with numbers. I try to open numbers and I get a message stating that I need an update. When I go to update apple say I am up to date, but I still can't open numbers. I keep going around and circles. Help

    I cannot open numbers. When I click to open the message says that, I need to update. When I go to updates is says I am updated. I keep going around and circles. Can anyone help?

    Look in your Applications folder for the new version.
    Remove the old icon from the Dock and drag down the new one for ease of use.

  • When I have a pdf file open, I used to be able to click on "Bookmarks" tab on left side and allow me to click on each individual page and delete if I needed to.  Now when I click on the Bookmarks tab, that section is empty.  How can I get it to show each

    when I have a pdf file open, I used to be able to click on "Bookmarks" tab on left side and allow me to click on each individual page and delete if I needed to.  Now when I click on the Bookmarks tab, that section is empty.  How can I get it to show each page again?

    Hi chrismarks1,
    I think you may be confusing bookmarks with thumbnails. If you click the Page Thumbnails icon (the one above the Bookmarks icon), then you can delete a page by clicking its thumbnail, and clicking the Delete Pages icon (the trashcan icon). Just make sure that you're viewing the PDF file in Acrobat (rather than Acrobat Reader), as you can't delete pages from Reader.
    Best,
    Sara

  • Do I need to pay again when I download past purchases from the app store?

    Do I need to pay again when I download past purchases from the app store?

    Bare with me...I need to explain the situation first.
    I purchased an external harddrive and with the help of phone support, I moved some(most) of my itunes stuff to that hard drive. However, when I sync my iphone, it occasionally says something like..."did not sync song because it could not be found".
    When I typed in the finder thing at the top right corner of my screen (spotlight?), I searched for itunes media. I found one file but it doesn't show me it's location. So I started looking (I'm still new to this) but I think I found 2 itunes media folders...1 on my imac harddrive and the other in my external harddrive.
    After reading some of the online posts regarding downloads, I discovered that it is possible to redownload something you purchased before and NOT be billed again. I know that when I download an app in my iphone and then delete it, if I go to download it again, it tells me i already downloaded it and can download it again for free...so no problems there.
    However, my interest is to greatly reduce the amount of "stuff" I have in my external harddrive as well as my internal harddrive. But before going into my external harddrive and deleting all 8 seasons of 24...which is something like 250gigs, I wanted to test the theory. So I looked for something cheap that I downloaded. I would then delete that and then go into the itunes store to redownload it again.
    One thing I also want to mention, I read that there should be a purchased tab in my itunes store. Either I don't have it, or don't know where to look. One other thing I read is that it might be not available to me based on where I live. I live in Toronto, Ontario.
    Back to what I did. I deleted an episode of Wallace and Gromit (kids show). Then went in itunes to download the same episode. When I checked my account information...it shows that I was just charged for that download...AGAIN! Now granted it was only $2.99...apparently this doesn't need to be the case.
    So...going back to the 2 itunes media folders. I checked my system preferences and saw that itunes was set to save downloads here.../users/"my name"/music/itunes/itunesmedia.   This folder is on my imac. However, the Wallace and Gromit video was on my external. So when I deleted it, I removed it from my external drive.
    So here's what I have done so far...I went into the system preferences and proceeded to change the path to my external harddrive.
    Now...before I go and delete something else...am I doing things correctly?
    Also...what should the path be in itunes? I suspect it should be to my imac so that anything I download, downloads successfully to my internal harddrive...and then I drag and drop into my external...
    I also want to mention that I have a time capsule as well. So basically...I want to keep my imac and time capsule free of as much media as possible...My computer and timecapsule each have 1 TB and I nearly maxed them out...I take alot of home videos with an HD camera...I had no idea how much that would add up.
    Any help would be greatly appreciated.
    Thanks

  • When I try to down load the software i get "this link needs to be opened with an application"

    help please
    when I try to down load the software i get "this link needs to be opened with an application"
    What kind of application do I need to choose?

    Lynda in woodstock this error occurs if the AAM Detect Plug-in is not loaded.  Please try using a different web browser or installing through the Creative Cloud Desktop application.  You can find more details at Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • My Finder window no longer opens when I click on it.  What do I need to change?

    My finder window in my dock used to open when I clicked on it.  Now it does nothing when I click on it and I have to right click and select New Finder Window to be able to see the contents of my computer.  What setting do I need to change to get back to click and open?

    Tried this (thanks) but the Finder is listed twice in the Force quit box and each time I select Relaunch both windows just reappear and I still can't click on the Finder icon in the dock and get it to open!

  • When attempting to download, in the Launch Application panel, it says ..."this link needs to be opened with an application" and shows send to "CC URI Handler", but also Choose an application.  How do I get past this point, as neither option seems to work?

    When attempting to download, in the Launch Application panel, it says ..."this link needs to be opened with an application" and shows send to "CC URI Handler", but also Choose an application.  How do I get past this point, as neither option seems to work?

    Code 6 & Code 7 http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for

  • Can't I/O select a keyword clip?

    I have a bunch of clips in an event. I have gone through these clips making selections and assigning keywords to the selections (such as "man plus car" or " happy face". In some cases I have assigned keywords to the whole clips too (such as "day 1").

  • CTS+ - Release button missing in CTS browser

    Hello, I am trying to set up CTS+ for our Portal environment. I can create a transport in the Portal, add objects and export. But when I go to the CTS browser Web UI interface through the link beside the transport in the Portal, I don't have the rele

  • Imported Subtitles from and STL file are missing German characters.

    I have had an STL subtitle file prepared by external company. It works beautifully and imports into DVDSP fine. The problem i have is that some German characters (ö and ü) are not displaying and instead i get other characters. I have tried changing l

  • What else can i do to recover my serial number on my ipod it is disabled

    what else can i do to recover my serial number on my ipod it is disabled

  • Web Service instead of the FM HTTP_PROXY

    Hi all We've a zFM here which uses the FM http_proxy. Now the user wants some web service to replace this (http_proxy) FM. I'm new to web services. Do we create our own web service definition or use some existing one ? Thanks Pushpraj