Cancel the PO

Hi experts,
How to cancel one PO? &what is the t-code available?
Thanks in advance
Deepa.V.G

hi,
You can't cancel the PO,  could do following things:
1. if want to delete the PO, then delete all the line items from item overview and save it...then PO will be automatically deleted...
2. Make flag for deletion and archive it...
And then create a new PO....
hope it helps...
Regards
Priyanka.P
Edited by: Priyanka Paltanwale on Sep 25, 2008 7:03 AM

Similar Messages

  • I mistakenly clicked to purchase the HD version of Downton Abbey. I have lite internet access! I should have purchased the SD version instead. Can I cancel the purchase and go back to buy the SD version?

    Is it possible to cancel the purchase - it says that there are 11 hours left just to download episode one!!!

    When you purchase an HD movie or show, in most cases the SD copy can be downloaded from your purchases area in iTunes. On the main iTunes Store page, go to Purchases under the Quick Links and then select Movies or TV shows as appropraite. Click the "Not On This Computer" button. Uncheck the "Download HD when available" box and you should then see the SD copies of the movies/shows and be able to download them.
    Note that with digital copies from a Blu-Ray or DVD, if it comes with an HD copy, you normally cannot get the SD copy as well and have to purchase it separately if you want it.
    Regards.

  • There is a problem on my mac mini. I install windows7 in my mac then i cancelled the installation did not finish..after that i saw the black screen on my monitor..

    There is a problem on my mac mini. I install windows7 in my mac then i cancelled the installation did not finish..after that i saw the black screen on my monitor untill now the monitor is black..

    It maybe trying to boot from the incomplete install.
    Try starting your Mac while holding down the Option key, it should then list all the available boot drives including the Mac OS X one. Boot from the Mac one and then you can wipe the damaged PC one or set the Mac to stay booting in to OS X.

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • Not able to cancel the indexing job in BO Explorer.

    Not able to cancel the indexing job in BO Explorer. When I clicked Cancel Indexing, Its still in processing mode. Please advise. Thanks!!

    Thanks Henry. Actually Indexing server was down, So it was not getting cancelled. I restarted the Explorer services and it worked fine afterwards.
    However, Could you please also let me know if there's any way in Explorer to show description of the Dimension/Measure Objects while exploring data in any information view.
    I have defined the object's descriptions in my underlying universe and they are also while confirguring the information space. But I am not able to see the while exploring data.
    Could you please advise on this. Thanks!!

  • HT3702 I contacted a vendor about an app and they have not returned my email. I want to cancel the purchase.  What should I do?

    contacted a vendor about an app and they have not returned my email. I want to cancel the purchase.  What should I do?

    You probably cannot get a refund, since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    It's possible they'll make an exception for you, particularly if the app is defective in some way. If you just don't like or no longer need the app, a refund is unlikely.
    Good luck.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Not able to cancel the Credit Note due to "Net Value could not be 0" error

    Hi Gurus
    We have created the Credit Memo Request with ref. to invoice and PGR , and  against that Credit Memo Request entered Credit Note .
    Credit Note is showing 0 Net Value and no accounting document generated .
    Further system is not allowing to cancel the billing document i.e. credit note .
    Pls. Suggest how can we cancel the billing document i.e. credit note and recreate it.
    Regds
    PR

    I wrote that system is not allowing us to create the cancel document with 0 net value.
    I need to cancel this document , so that i can recreate new one.
    Regards
    PR

  • How to Cancel a Sale Order without cancelling the subsequent document.

    Dear All,
                 I want to cancel sale order but the sale order have a subsequent document is there is any soulution that when i cancel the sale order all the subsequent document, outbound delivery and invoice cancelled in jn\ust one step, if not then what is the other way to solve that problem.

    Hi
    You can reject the sales order by going to VA02
    Go to-> Item -> Enter Reason for Rejection
    and save the order.
    This will reject the order even if the subsequent documents are created so that no further open quantities can be delivered.
    Reward points if useful.
    Regards,
    Nimit
    Edited by: Nimit Raiya on Jul 3, 2008 4:03 PM

  • Issu in Rejected PR after cancelling the requistion line

    Hi,
    I have an issue after cancelling a requisition line in the rejected purchase requisition.
    I have 2 purchase requisition lines in PR. Approver rejected the PR as one requisition has to be deleted. PR status changed to 'Rejected'. Originator cancelled the requisition line though Tool->Control and sent for approval. But the PR is still in 'Rejected' status and is not going to supervisor for approval.
    How can i bring this PR to 'In progress' state so that it goes for approval.
    Thanks

    986936 wrote:
    Hi,
    I have an issue after cancelling a requisition line in the rejected purchase requisition.
    I have 2 purchase requisition lines in PR. Approver rejected the PR as one requisition has to be deleted. PR status changed to 'Rejected'. Originator cancelled the requisition line though Tool->Control and sent for approval. But the PR is still in 'Rejected' status and is not going to supervisor for approval.
    How can i bring this PR to 'In progress' state so that it goes for approval.
    ThanksCheck whether he has cancelled one of the line or whole req..
    Did he sent the req again for approval?
    Mahendra

  • Cancel the Release for PO & PR

    Hi
    Once PR or PO released and follow on documents are processed then release can not be cancelled .
    If PR is released  and Po has created  , the PR release can not be reversed .
    Similarly If PO released and GR has taken for that PO then release can not be cancelled .
    How can I achieve this ?
    Actually system allows to cancell the release even after follow on documents are processed . I obseved it in our system . Our head of Dept Released one PO and GR was taken , but afterwards he cancelled that release
    Similarly If there is two step release ( R1 and R2 ) and PO was release by both . After R2 released the PO then person  R1 should not able to change the PO or Cancel his release
    Is there any solution to restrict such situation ? Please provide complete solution
    Please help
    Edited by: Bhushan Bivalkar on Dec 15, 2009 4:25 PM
    Edited by: Bhushan Bivalkar on Dec 15, 2009 4:26 PM

    Hi,
    you can set the release status as not changeble for release indicator " Changeability of Purchasing Document During/After Release " and set the release indicator in release strategies,
    rgds

  • Not able to cancel the Excise invoice for STO process

    Hi All,
    In  STO process, we need to cancel the excise invoice due to some business requirement. When we tried to do the same in J1IH, it is not allowing us to do the same with the error "No item information transferred into Accounting". Tried the same through J1IS with the internal Doc No. Here the error is document is complete.
    Please guide how to cancel the same.

    Hi,
    STO has been created either through MM route or through SD-MM route.
    In MM route, the process is as below,
    You create PO, followed by MB1B (Transfer posting) , then followed by J1IS (Excise Invoice).
    In SD-MM route the process is as below,
    You create PO, followed by VL10B , then VF01, then followed by J1IIN (Excise Invoice from Factory).
    Normally, when you create Excise Invoice through J1IIN, it is automatically released to Accounting.
    In your case, I feel it has not yet been released to accounting and I hope, Excise Invoice has been created through J1IS.
    In MM route, you need to release the Excise doc to Accounting.
    In that case, you need to go for J1IV and release the same to accounting.
    Find out the Internal document number from the Excise Invoice and with the reference of this Internal document number release it to Accounting through t.code J1IV.
    Now, once it is released to accounting, you should be able to cancel it through J1IH or J1IS.
    Please let me know if any further problem you are facing.
    Regards
    Pradyumna

  • Cancel the excise invoice in Intra company stock transfer

    Dear Gurus,
    I have one issue in CIN.
    The following are the my sequence of operation.
    Intra company stock transfer.
    1. Purchase order with UB. (from plant A)
    2. Delivery ( from plant B),
    3. PGI ( from plant B),
    4.Excise Invoice ( from plant B to A),
    5. Billing ( from plant B),
    6. Creating Excise Invoice without purchase order Manually (from plant A),
    after PGI and Before MIGO.
    7. MIGO.
    Now i want to cancel the Excise invoice in Plant A.
    how can i cancel the excise invoice.?
    kindly provide the valid information.
    Thanks.
    Best Regards
    Anbu

    In T.Code: J1IIN, there is an option of deleting / cancelling the Excise Invoice. On the top most left hand side (after entering the Excise Invoice number) select Excise Invoice --> Cancel / Delete.
    Here it is possible to cancel the Excise Invoice.
    Regards,
    Rajesh Banka

  • Reverse the material document before cancelling the excise invoice.

    Dear Experts,
    While cancelling the exice invoice thru J1iex , system is giving me an error message "Reverse the material document before cancelling the excise invoice" .......I checked PO history where all the material documents are already cancelled with MIGO cancellation (movement 106 )
    But in J1iex , if I select the cancel option and put this invoice number , it is showing me one document with status "IN PROCESS" and if I select that doc and try to save it. System prompted me the message "Reverse the material document before cancelling the excise invoice ,but if I am trying to post this document system is issuing me a message "All Part I entries have been canceled for excise invoice ...........xx.Exicse table J_1IGRXREF and J_1IPART1 alrady update with both documents.kindly any one suggest me positive.
    MINI

    Hello
    follow the below steps
    1. MIGO:Cancel the material document (movement type 102) & during cancellation update part1 only. This changes the excise invoice document status to In process
    2. J1IEX:Post the excise invoice referring the material document (of movement type 102). Creates an accounting document to reverse the CENVAT postings. Creates a corresponding entry in Part II of the appropriate excise register
    Thus the excise postings are reversed.
    3.J1IEX: Cancel the excise invoice (Do this if your plant does not allow multiple goods receipts per excise invoice).Now the system will allow you to cancel the vendor excise invoice
    above the procedure right. you will get this updation excise registers also
    Laxman

  • Cancel the Excise Invoice.

    Hi,
    I created the Billing document and Excise Invoice. When i went to the Document flow in the Billing Document I found the Accounting document of the Excise Invoice and its status is Cleared.
    After that I Cancelled the Excise Invoice. And again I checked the Document flow in the Billing document. But the status is showing the same.i.e Cleared.
    Wt it mean..is it correct?
    regards,
    jyothi.

    It is correct. the cancellation of excise invoice wont affect the document flow of sales document. For status go to J1ip enter the invoice no or billing doc and enter. here u can see reversed in the status.
    Hope it clarifies ur doubt.
    anya

  • Cancel the GR after UD and capture excise invoice

    Hi
    i have created a GR (migo) and in this step i have also captured the excise invoice. QC people done the UD. after that i came to know that GR is wrong. now i want to cancel the GR.
    and make the new GR against the same PO.
    but after doing 102 movement, i am going to cancel the excise invoice (j1iex), but it is now allowing me to cancel the invoice.
    Thanks & Regards
    Pankaj Garg

    Hi Pankaj.,
    Firstly i would like to share some must-do things in Excise
    Whenever  any excisable  material comes in your company premises  
    you must do excise postings(as per CBEC rule).
    Your registers should update for the same (rather the material is damaged/spoiled).
    The provision for separate capturing the excise invoice & later posting it is for only convenience purpose for the users.
    Because when material enters in company premises ,generally  it goes to store.They do the GR & only captures the details of excise invoice(this is because sometimes vendors passes partial amount of excise duty).After that accounting person posts the excise duty as per vendor excise invoice.so don't confuse while reversing the excise duty.
    Remember that it is compulsory to post excise invoice as per excise rules.
    procedure is.
    1)goto-J1IEX_P-post vendor excise invoice
    2)Do cancel/return delivery of GR No.
    3)Goto-J1IS-create excise invoice-give references-post excise invoice
    4)Goto-J1IV-Print the excise invoice
    5)Send this rejection excise invoice with the rejected material to vendor
    regards,
    satpal

  • Restrict if the excise invoice isn't cancel we can't cancel the billing Doc

    HI
    How to Restrict if the excise invoice is not cancel we can't cancel the billing Document
    I know if the billing document is Cleared we can restrict by using the copy control Requirement in VOFA (29)
    Is it possible to Standard SAP ? if Yes how?
    Regards,
    Prasanna

    Dear prasanna_sap,
    It is not possible in standard SAP.
    You have to go for a development.
    Exit RV60AFZZ-USEREXIT_NUMBER_RANGE
    Please find the logic
    If XVBRP-WERKS = J_1IWRKCUS - J_1IWERKS Pass the XVBUK - VBELN to J_1IEXCHDR u2013 RDOC, If STATUS = R the document should not allow saving (Error message: Excise invoice to be cancelled first), else allow saving.
    Please let me know if you have any further clarifications.
    Thanks&Regards
    Raghu.k

Maybe you are looking for

  • How to use i tunes i depth

    i have installed i tunes on my pc and sync with my 30gb i pod after some time i have formatted my pc and i installed i tunes and when i connected i pod i tunes is showing that i have to erase my old library is it is must that everytime when i format

  • Site Studio Designer Install on windows 7 - 64 bit

    has anyone installed designer on a 64 bit system? windows 7? thanks!

  • Exchange 2013 - OWA "Something Went Wrong", Out of office in Outlook "Server unavailable"

    Hi, We have a new deployment of Exchange 2013 CU2 V2 running on a Windows 2012 server.  Everything has been running without issues and then without any real clue to why, we are now getting an issue where OWA says "Something Went Wrong" after processi

  • Custom Swatch Panel

    Hello, I want to create a custom color swatch panel for Illustrator. But I cant figure out a way to add swatches to the panel and drag/drop them into file. Kindly guide me to an example or the steps required to build such a panel. I'm new to flex sdk

  • Java version for PI 7.0

    Hi all, Our PI 7.0 is running on JVM 1.4.2_21 over Windows Server 2008.  For our desktop upgrade from XP to Win7, I had tested on PC to launch Integration Repository (design) and Integration Directory (Config): Success: - Win XP with JRE 1.4.2 - Win7