How to close  or delete a PO?

Hi
How to close or delete a PO ?
I can see to delete the line items .
But if I wanna delete a PO itself , is it possible ?
regards,

Hi Sandeep
You can flag all items for delete in Purchase Order,
Go to ME22N and enter purchase order. Select item and click on delete button (which is available just above item details) and save.
Once you complete mark for deletion, you can proceed for archiving.
transaction code for archiving: SARA
Object: MM_EKKO
also check above link for detail process.
regards
Srinivas

Similar Messages

  • How to close, not delete, all open emails at one time.

    When I reply to an email, it isn't automatically closed. Therefore I have hundreds of open emails and in order to get back to my inbox I have to slide, with my cursor, through many of them. I don't want to delete them and it would take me way too long to close them individually. Is there a way to close, but not delete, them all at once? Then could I set up something that would automatically close, and keep, an email after I have responded to it? Thank you. Will a response to this question be sent to my email address or do I need to periodically check a message board? Thank you!

    If you're a keyboard oriented person, Ctrl+w will close the current tab, same as most browsers. In some cases, pressing that several times may be faster for you than moving the mouse up to a tab and right-clicking.

  • How to close extended classic PO in ECC...

    Hi Friends...
    We are in SRM 7.02 and ECC 6.05 in Extended Classic Scenario. One PO had been created for 1 Quantity 3 years ago. There was no GR/IR document posted against that PO. Now that PO had been archieved from SRM. But still PO is available in ECC with open quantity and also its appearing in the open PO report. Now requester wanted, the PO to be closed in ECC and shouldnot appear in the open PO list.
    How to handle this situation.. How to close the extended classic PO in ECC at this scenario. As PO not available in SRM, we can not do anything from SRM side.
    Your inputs are appreciated....
    Regards
    Sivakumar Kandasamy

    Hi Sivakumar,
    If you mean how to archive PO in MM side, please refer to the following info:
    ====
    In ECC system, if you want to archive a MM PO, please use transaction
    SARA->archive object MM_EKKO.
    456129 FAQ: Archiving in purchasing
    401318 Archiving: Additional information
    ====
    If you want to delete this ECC PO, please use BAPI_PO_CHANGE and
    refer to the following test data:
    Parameters:    PURCHASEORDER      =  XXXXXXXXX
    Parameters:    POITEM
    PO_ITEM                        = 00010
    DELETE_IND                     = X
    Parameters:    POITEMX
    PO_ITEM                        = 00010
    PO_ITEMX                       = X
    DELETE_IND                     = X
    You also need to run BAPI_TRANSACTION_COMMIT after BAPI_PO_CHANGE for updating the change.
    Regards,
    Ivy

  • How to Close a PO?

    Dear all,
    Can anyone pls kindly brief me on how to close a PO
    permanently once for all i.e that no user can able to amend it
    anymore.Though after the following steps been done the PO is
    still amendable by ME22N
    Actions taken:
    1. Checked Item details in delivery column,Delivery completed indicator.
    2.checked Final Invoice indicator
    Thanks
    Sanjay

    Hi Sanjay,
    To close the Purchase ORder follow the below Steps:
    1) In Po Item Detail in Delivery Tab Check Delivery Completed Indicator.
    2) Select the Line ITems which you want to Cancel/Close then Click on Delete Button / Icon below the Line Items so that If any user tries to change the po, It says po item is deleted.
    To Delete Po permanently from System, Please go thru the link:
    http://www.sap-img.com/materials/how-to-use-me98-to-delete-po-from-system-completely.htm
    Reg,
    Ashok

  • How to close po

    how to close po for all line items at one step for further process of GR and invoice.

    hello,
    If you want to Block some Items from PO you can block it at item level in Me22n and below the Item details you can find the tab for Block . and if you want to delete the Item from PO then same you can find the TAB below the Item details in Me22n screen..
    Before deleting the items from PO please make sure that you have procured GR for these Items yet.
    regards,
    ninad kshirsagar

  • How to close contract..

    Dear All,
    I want to close contract which is created using ME31K .
    How to close it if my requirements are full (created PO and recd goods).
    And also how to close if requirements are still open (PO not created)
    Amit

    Hi,
    You have to close all purchasing documents (PR's,PO's).
    Make sure that all PO's are GR and all invoices for GR PO's are paid.
    You should not have open purchasing documents and when everything is closed and paid , only then you can mark your contract line item for deletion using T-code ME32K.
    Thanks
    Silas

  • How to close saved image?

    hi 
    I can't close the saving image after i created it. It becomes read only and  i get error  unless i exit from application when i want to create it again  i think it remains open.
    Would you help me how i can solve problem?
     ofd.Filter = "Image Files|*.jpg;*.png;*.gif;*.bmp;|All Files (*.*)|*.*"
            If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
                TextBox1.Text = ofd.FileName
                Dim img As Image = Nothing
                Dim sfilename As New System.IO.FileInfo(ofd.FileName)
                Dim yol As New FileInfo(TextBox1.Text)
                Dim f As String = System.IO.Path.GetFileNameWithoutExtension(ofd.FileName)
                Dim path As String = yol.Directory.FullName & "\" & f & yol.Extension Dim fs As FileStream = sfilename.OpenRead()
    Dim outputStream As Stream = New MemoryStream()
    AddWatermark(fs, TextBox2.Text, outputStream)
    fs.Close()
    sfilename.Delete()
    img = Image.FromStream(outputStream)
    Using savingImage As New Bitmap(img.Width, img.Height, img.PixelFormat)
    Using g As Graphics = Graphics.FromImage(savingImage)
    g.DrawImage(img, New Point(0, 0))
    End Using
    savingImage.Save(path, ImageFormat.Jpeg)
    PictureBox1.BackgroundImage = Image.FromFile(path)
    End Using
    outputStream.Close()
    img.Dispose()Public Sub AddWatermark(ByVal fs As FileStream, ByVal watermarkText As String, ByVal outputStream As Stream)
            Dim img As Image = Image.FromStream(fs)
            Dim font As New Font("Verdana", 32, FontStyle.Bold, GraphicsUnit.Pixel)
            font = FontDialog1.Font
            'Adds a transparent watermark with an 100 alpha value.
            Dim color As Color = Color.FromArgb(100, 0, 0, 0)
            'The position where to draw the watermark on the image
            Dim pt As New Point(10, 30)
            Dim sbrush As New SolidBrush(color)
            Dim gr As Graphics = Nothing
            Try
                gr = Graphics.FromImage(img)
            Catch
                ' http://support.microsoft.com/Default.aspx?id=814675
                Dim img1 As Image = img
                img = New Bitmap(img.Width, img.Height)
                gr = Graphics.FromImage(img)
                gr.DrawImage(img1, New Rectangle(0, 0, img.Width, img.Height), 0, 0, img.Width, img.Height, GraphicsUnit.Pixel)
                img1.Dispose()
            End Try
            gr.DrawString(watermarkText, font, sbrush, pt)
            gr.Dispose()
            img.Save(outputStream, ImageFormat.Jpeg)
        End Sub
                                                      

    Hi,
     Here is a small example that does the same thing as your code i believe and will overwrite the opened image with the watermarked image.  Perhaps you can arrange your code to follow these steps.
    Imports System.Drawing.Imaging
    Imports System.IO
    Public Class Form1
    Private Img As Bitmap
    Private wmFont As New Font("Verdana", 32, FontStyle.Bold, GraphicsUnit.Pixel)
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Using ofd As New OpenFileDialog
    ofd.Filter = "Image Files|*.jpg;*.png;*.gif;*.bmp;|All Files (*.*)|*.*"
    If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
    Dim frmt As ImageFormat
    If Img IsNot Nothing Then Img.Dispose()
    Using i As New Bitmap(ofd.FileName)
    frmt = i.RawFormat
    Using g As Graphics = Graphics.FromImage(i)
    Using sb As New SolidBrush(Color.FromArgb(100, 0, 0, 0))
    g.DrawString(TextBox2.Text, wmFont, sb, New Point(10, 30))
    End Using
    End Using
    Img = New Bitmap(i)
    End Using
    Img.Save(ofd.FileName, frmt)
    If PictureBox1.Image IsNot Nothing Then PictureBox1.Image.Dispose()
    PictureBox1.Image = Img
    End If
    End Using
    End Sub
    End Class
    If you say it can`t be done then i`ll try it

  • How to close my apple id account

    How do I deactivate my Apple ID account?  I have people with iphones still trying to message me and I am unable to receive them as their Iphones are still trying to imessage me instead of text message.
    Also I no longer have the iphone

    HeidrunK Canada
    Re: how to close my apple id account 
    Apr 10, 2014 9:15 AM (in response to imagesbyliz)
    Perhaps you might go to your apple account, sign in and delete yourself?
    You'll lose stuff saved to that ID.
    ^^^
    I tried this but it won't allow me to do that....I don't have worries about loosing things as I don't have any other apple products or any use for anything that might be saved

  • How to close Internet Explorer and other programs running on Windows?

    In order for Flash Player to be installed or updated, any programs that use Flash Player must be closed.  This includes Internet Explorer or other browsers, instant messengers, Skype, etc.
    These programs may be running in the background, not as visible windows, but need to be closed anyway.
    To close such programs use the Windows Task Manager.  To start Task Manager, take any of the following actions:
    Press CTRL+ALT+DELETE, and then click Task Manager.
    Press CTRL+SHIFT+ESC.
    Right-click an empty area of the taskbar, and then click Task Manager.
    Once the Task Manager is running, select the Processes tab.  On older Windows version you may need to click on the Process Name or Image Name header to sort the process names.
    Now right-click on every process that the Flash Player installer needs to close (e.g. iexplore.exe), then select End Process.
    It would be desirable if the Flash Player installer could perform that action by itself; I have therefore created an enhancement request.  If you were affected by this problem, please head over to the Bugbase and vote for this request: https://bugbase.adobe.com/index.cfm?event=bug&id=3548136

    See How to close Internet Explorer and other programs running on Windows?

  • How to close MASS PO

    Hi,
    I was trying to close STO No.s by the T-code--MEMASSPO, but the system is not allowing as there are some delivery created but no PGI has been done. I have 150-200 ine items in a single STO. So its impossible for me to delete the delivery no. from each STO. Kindly advise how to close the STO fully irrespective of delivery created or not.
    Thanks In Advance
    Satya

    you are trying to create inconsistences, this is not allowed by SAP. 
    What do want to do with the deliveries that are not yet goods issued? shall they stay forever, or accidently used in future?

  • How to close appstore and camera ?

    app store and camera always running when i use system monitor even i close from the background ?
    how to close them from processes and what is the processes that usually work in system monitor ??
    it was mail also running but after i delete the iclould account it gone ...
    plz help ...

    Thank you for that link. I bought two tutorial programs for Iphone 4 and that's where I saw that it was adviced to close Safari and other Apps entirely as they were running in the background and in doing so were wearing down on the battery.
    As far as I understand the link you went me Safari and other Apps are kind of closed once I have clicked the Home button so that should be OK.
    However, when I opened a radio program it did not seem to be possible for me to close it down even though I was using the Home button. The music kept playing which of course many times would be great however I would like to know how to close a program when I do not want to use it any more.

  • How to close an Investment Project without Capitalizing

    Hi All,
    Requirement is how to close an Investment Project midway, when cost have been settled to AuC over several periods.
    In present system they transfer the cost from their Work In progres account to a Cost center.
    Thanks and regards
    Maneesh

    let us say over the time 1000 is in AuC
    do a financial journal
    Cr 1000 WBS Dr 1000 Cost centre (just use a dummy cost centre)
    Now settle WBS to AuC
    Dr 1000 WBS Cr AuC 1000
    Now the AuC has 0 and can be deleted
    The WBS has 0 and can be closed
    The cost centre now has the debit 1000 - you can do whatever you want with that

  • How to close Open Outbound Deliveries

    Hi All,
    please could u tell me how to close Open Outbound Deliveries?
    Regards,
    Ramesh

    Ramesh,
    The delivery will be open until the PGI is completed and fully invoiced. If you don't want to inoice, then PGI needs to be reversed and delete the delivery.
    If all the subsequent documents are created for full qunaity and still the delivery is open, then you will need to set the status as completed in the debug level. Consult your ABAP expert.
    Prase

  • I just need to know how to "close" firefox.

    I am hitting the red X in the upper right hand corner of my screen and although it seems to close everything, when i go to reopen firefox, it says its already open. I need to know how to close the firefox out completely....I dont want to delete it, just close.

    The X on the title bar just closes that one window as it does not close the Firefox browser unless that was the only window for anything Firefox related open.
    To close Firefox completely go to "File->Exit" if Menu bar is visible or by orange Firefox button -> Exit.

  • How to close a issue

    Dear Sir/madam,
    If i'm posted 10 issue, how i close the issue ?
    To rise a thread like close issue or go to Questions and that point i delete one of the relevant issue
    Regards,
    Sahoo

    See - [https://support.mozilla.com/en-US/kb/Firefox%20hangs#w_firefox-hangs-when-you-quit-it Firefox hangs when you close it]

Maybe you are looking for

  • Error while running bex

    Hi, I am trying to run a report in BEX and its giving me following error:- "Client Out of Memory" Can anyone please help me. Regards

  • How to read a excel file with more than one worksheet.

    Hi, I wanna read a sheet (anyone of it,not the first) in a excel.Who can help me! best wishes, Grant Chen

  • How do I keep my HP1510 All-in-one from printing so many test pages?

    How do I keep my HP1510 All-in-one from printing so many test pages? My printer is connected to my laptop, and it seems that every time I disconnect, the printer wants to print an test page when I reboot. I don't know where the option is to turn this

  • IPage application crash when I just ran it

    Hello, I just did an upgrade from iOS 4.x to iOS5.1 on my iPad 1. Then,  I re-install iPages, and I restore my saved data. When I try to launch page, the application start, I can see the background,, but no documents are displayed, then after a few s

  • SAP Business Explorer 7.0 availability

    Hello Expert, We've migrated BW 3.5 query in BW 7.3 SAP System. Dataflow migration was successful but Query Designer 7.3 product version not compatible with BW 3.5 Query. Have found from SAP  SCN  thread  that firstly we need to install BEX tool 7.0