Deletion of Purchase order iems brings back the requirement to sourcing

Hi,
A purchase order is created from sourcing cockpit. When the PO item is deleted, the requirement is appearing back in sourcing cockpit.
I understand it as a standard functionality.
Can I know where I can verify my understanding in SAP HELP?
Vasu

Hi Vasudevarao,
I don't know if we have it fully documented in the SAP help yet, however I can assure you your assumption is correct, this is the desired outcome.
There might be various reasons to delete a PO. But that does not automatically make the requirement invalid, the deleted PO was based on.
If this was helpful please reward points. If not, please let me know anyway.
Thank you and best regards,
Andreas

Similar Messages

  • HT1766 How can I bring back the information from an application that was mistakenly deleted?

    How can I bring back the information from an application that was mistakenly deleted?

    Only if you backed up the phone before that and did not back up after that. App settings and data are part of the backup. But all other data will be set back as well, you can't choose a single app to be restored from the backup.

  • How do I bring back the "Are you sure you want to delete this photo" dialog box in Iphoto.  I accidentally clicked "never ask again" so it never appears.  I want it back.

    How do I bring back the "Are you sure you want to delete this photo" dialog box in Iphoto.  I accidentally clicked "never ask again" so it never appears.  I want it back.

    The following previous discussion may help: Re: Delete Confirmation Warning.  I want back.

  • Acrobat 9 standard. The adobe inons on my desktop turned white, how can I bring back the normal pdf icons?

    Acrobat 9 standard. The adobe inons on my desktop turned white, how can I bring back the normal pdf icons?

    Please don't post the same question mutliple times!  I have deleted your duplicate post.
    Have you tried a System Restore to a time before the change occurred?

  • Purchase Order : printing table in the SAPScript.

    Hi all,
            I want to print taxes in the PO . I have created SAPScript from the standard Script MEDRUCK & also attached it to the Appln - EF, in the T-Code : NACT.
            To pass the taxes i have written a code and that program i have called from the script. But, it is only the last entry in the internal table (it_out). I want to print all the taxes for the respective PO. And, the only last one tax entry in the it_out ,  it is showing in the print preview for 'Domestic PO', and, for 'Import PO', it is not showing any entry.
            Plz, try to solve this problem.... if anybody could give me the proper solution of this problem, i will definitely reward the points to him.
            I am giving the code that i have used in the report & in Script.
    Code in the SAP Script...
    /E  ITEM_CONDITIONS
    /:   PROTECT
    /:   DEFINE &TYPE& = ' '
    /:   DEFINE &TEXT& = ' '
    /:   DEFINE &PER& = ' '
    /:   PERFORM GET_TAX IN PROGRAM ZMM_PO
    /:   USING &EKKO-EBELN&
    /:   CHANGING &TYPE&
    /:   CHANGING &TEXT&
    /:   CHANGING &PER&
    /:   ENDPERFORM
    IN  ,,&TEXT&,,&PER&
    /:   ENDPROTECT
    Respective code in the Report
    *&      Form  GET_TAX
          text
         -->IN_PAR     text
         -->OUT_PAR    text
    FORM GET_TAX TABLES IN_PAR STRUCTURE ITCSY
                        OUT_PAR STRUCTURE ITCSY.
      TABLES : EKKO,         "Purchasing Document Header
                      KONV,         "Conditions (Transaction Data)
                     T685T.        "Conditions: Types: Texts
      DATA : BEGIN OF ITAB OCCURS 10.
      DATA :   EBELN LIKE EKKO-EBELN.
      DATA :   KNUMV LIKE EKKO-KNUMV.
      DATA : END OF ITAB.
      DATA : BEGIN OF ITAB1 OCCURS 10.
      DATA :   EBELN LIKE EKKO-EBELN.
      DATA :   KNUMV LIKE KONV-KNUMV.
      DATA :   KPOSN LIKE KONV-KPOSN.
      DATA :   KSCHL LIKE KONV-KSCHL.
      DATA :   VTEXT LIKE T685T-VTEXT.
      DATA :   KBETR LIKE KONV-kbetr.
      DATA :   WAERS LIKE KONV-waers.
      DATA :   KWERT LIKE KONV-kwert.
      DATA : END OF ITAB1.
      DATA : BEGIN OF IT_OUT OCCURS 10.
      DATA :   KSCHL LIKE KONV-KSCHL.
      DATA :   VTEXT LIKE T685T-VTEXT.
      DATA :   KBETR LIKE KONV-KBETR.
      DATA :   KWERT LIKE KONV-KWERT.
      DATA : END OF IT_OUT.
      DATA : PONO LIKE EKKO-EBELN.
      DATA : NO LIKE KONV-KPOSN.
      READ TABLE IN_PAR WITH KEY 'EKKO-EBELN'.
      IF SY-SUBRC = 0.
        PONO = IN_PAR-VALUE.
        SELECT EBELN KNUMV
                FROM EKKO
                INTO TABLE ITAB
               WHERE EBELN = PONO.
       READ TABLE IN_PAR WITH KEY 'KONV-KPOSN'.
        IF SY-SUBRC = 0.
         NO = IN_PAR-VALUE.
          LOOP AT ITAB.
            MOVE ITAB-KNUMV TO ITAB1-KNUMV.
            SELECT KNUMV KPOSN KSCHL KBETR WAERS KWERT
                  FROM KONV
                  INTO CORRESPONDING FIELDS OF ITAB1
                WHERE KNUMV = ITAB-KNUMV
                AND KAPPL = 'M'.
              ITAB1-KBETR = ( ITAB1-KBETR / 10 ) .
              APPEND ITAB1.
            ENDSELECT.
          ENDLOOP.
          SORT ITAB1 BY KPOSN kschl.
          LOOP AT ITAB1.
            IF ITAB1-KPOSN <> ''.
              SELECT *
                        FROM T685T
                       WHERE KSCHL = ITAB1-KSCHL
                       AND KAPPL = 'M'
                       AND SPRAS = 'EN'.
                IT_OUT-VTEXT = T685T-VTEXT.
                IT_OUT-KSCHL = ITAB1-KSCHL.
                IT_OUT-KBETR = ITAB1-KBETR.
                IT_OUT-KWERT = ITAB1-KWERT.
                APPEND IT_OUT.
              ENDSELECT.
            ENDIF.
          ENDLOOP.
          SORT IT_OUT BY KSCHL.
          DELETE ADJACENT DUPLICATES FROM it_out COMPARING KSCHL.
          LOOP AT IT_OUT.
            IF
                  ( IT_OUT-KSCHL = 'JADC'
                 OR IT_OUT-KSCHL = 'JCDB'
                 OR IT_OUT-KSCHL = 'JCV1'
                 OR IT_OUT-KSCHL = 'JECV'
                 OR IT_OUT-KSCHL = 'J1CV'
                 OR IT_OUT-KSCHL = 'JSDB'
                 OR IT_OUT-KSCHL = 'JEXC'
                 OR IT_OUT-KSCHL = 'JEXS'
                 OR IT_OUT-KSCHL = 'FRC1').
              AT NEW KSCHL.
                CLEAR out_par.
                CLEAR out_par[].
               LOOP AT OUT_PAR.
                  READ TABLE IT_OUT INDEX SY-TABIX.
                  SUM.
                  WRITE:/ IT_OUT-KSCHL,IT_OUT-VTEXT,IT_OUT-KBETR.
                  OUT_PAR-NAME = 'TYPE'.
                  OUT_PAR-VALUE = IT_OUT-KSCHL.
                  APPEND OUT_PAR.
                  OUT_PAR-NAME = 'TEXT'.
                  OUT_PAR-VALUE = IT_OUT-VTEXT.
                  APPEND OUT_PAR.
                  OUT_PAR-NAME = 'PER'.
               OUT_PAR-VALUE = IT_OUT-KBETR.
                  APPEND OUT_PAR.
               ENDLOOP.
              ENDAT.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    "GET_TAX
    Plz, help me by giving the solution...
    Thanks,
    Ajit

    Hi,
    System will not display the Purchase order item details in the first screen. First enter the data on the Item overview like Material or short text then only it will display the Item details.
    I think you are checking with out entering the data on Item overview .
    Check by entering the material/short text.
    rgds
    Chidanand

  • Purchase order archived long back. User wants to retrieve specific POs.

    Purchase order archived long back in 2004.
    These POs are not displayed in ME23n and ME2l.
    User wants to retrieve specific list of POs and make them displayed in ME23n & ME2l.
    Is there way to retrieve only selected (say 100 specific Purchase orders or Purchase order from specific Company code) purchase orders?
    Kindly guide me.
    Thanks & Best Regards,
    Mohan

    Hi Steeve,
    Thanks for the information.
    When I execute ME82, I get a window with "Archive Administration: Select Files for Read Program"
    and list as below,
          000943 26.08.2006 all EKKOs older than 720 days
          000557 01.01.2005 all EKKOs older than 720 days
          000512 09.10.2004 all EKKOs older than 720 days
          000458 29.06.2004 SD_EKKO - archiving run file
          000434 28.05.2004 SD_EKKO - archiving run - job cancelled, files de
          000294 18.11.2000
          000291 16.11.2000
          000276 14.10.2000
          000267 16.09.2000
          000261 09.09.2000
    Can I click, process and proceed? Would this create any problem?
    Kindly inform.
    Thanks & Best Regards,
    Mohan

  • Please bring back the Modern Skype App for x86 devices

    The desktop Application is unusable on small tablets, due to its fiddly controls, missing features and extremely high demand of system resources (RAM, CPU, etc.). It's sad to see Microsoft once again neglecting its creations (like you did with Zune). Especially, when theres no logical reason for it (RT users can still use the app, you're just blocking us out - it's the same codebase!). People, let them hear your voice. I know, many others share my point of view, but they won't change anything if they don't see any complaints!

    Links for this topic:
    Regression in 6.3 - CREATOR and MASTER cannot edit or remove messages
    Skype Forum:
    I'm the MASTER of the group chat and I can't edit other people's messages who are USERS
    CREATOR in a group bug
    Please bring back the Delete and Editable feature for CREATOR in version 6.3
    Previous Skype version
    You can install the previous 6.2.0.106 version using this msi-installer:
    Downgrade to Skype version 6.2
    N.B. Don't forget to disable automatic updates !!!
    How to turn off automatic updates?
    In the menu go to: Tools > Options > Advanced > Automatic updates
    then click the button: Turn off automatic updates and Save.

  • Auto Deletion of Purchase Orders

    Hello
    Is anyone aware if there is a process available for auto delettion of purchase orders which have not been goods receipted within a given time frame
    Cheers
    Prakash

    Hi,
    As far as I know, there is no automatic report for deletion of purchase orders. Document deletion should be done manually, since it requires the user acknowledgment.
    Kind regards,
    Ricardo

  • Bring back the 12 month devise installment plan.

    You need to bring back the 12 month devise installment plan. I am grandfathered into the unlimited data plan and do not want to give it up, so the edge plan is out of the question. I cannot afford to pay full price for a phone and accessories. the installment plan helped me tremendously in my purchase of a new devise withOUT, changing my plan and coming greatly out of pocket. HELP!!!
    I have been a VZW customer for more than 12 yrs. The devise installment plan, unlimited data plan that I have and great service, are just a few of the reasons i an still with VZW. Please remain competitive and re-offer this service.

    Who cares what my data plan is? Has nothing to do with my opinion on unlimited data. I could of had it. Chose not to, didn't need it. Still don't. I use maybe 500 MB per month.
    The point is Verizon wants to get rid of it. And has been getting rid of it piecemeal for years. My point is if they are  going to do it, just do it. Like pulling a band-aid off. You just rip it off you don't try to finesse it. Just dumping it gets rid of all the 'How can I still get a discounted upgrade" threads also gets rid of the "Verizon tricked me into giving up unlimited data" threads.
    Will people get mad? yes.They get mad now. What's the difference? Heck offer them 10 GB per line bonus for 2 years for each unlimited data line as a gesture. The ones that leave likely use the most data and that will actually help if they left.

  • How can I bring back the default setting in photshop elements 4.0

    HP Pavilion desktop M7240UK
    Monitor HP vs19 LCD
    Windows XP
    Explorer 8
    Service Pack 3
    Photoshop Elements 4.0
    Hi
    How can I bring back the default setting in Photoshop elements 4.0
    Thank You
    York44

    In the editor? Quit the editor , then restart it while holding down Ctrl+Alt+Shift. Keep holding the keys till you see a window asking if you want to delete the settings file. You do.

  • Is there a way to bring back the actual tab "bar"?

    So in switching from FF3.6 to 5.0 I have noticed that the actual "bar" that holds the tabs is gone.
    Observe:
    [http://i.imgur.com/eU7lo.jpg http://i.imgur.com/eU7lo.jpg]
    It's visually slightly annoying to not have a distinct separator between the tab area and the button toolbar, but that is something I can live with.
    However I can NOT live with the extremely annoying functionality drawback that comes as a result of this. In 3.X and before you could right click anywhere in the tab bar and it would bring up the tab management menu. Now you can't bring up the menu from empty space because it treats that space as part of the rest of the UI and gives you a different menu, forcing you to mouse all the way over to a tab to accomplish the same end.
    So my question is, does anyone know of a way, or an addon, that can bring back the actual tab bar? I find all of these UI changes to be nothing short of infuriating. I swear, Mozilla, Facebook, Pandora, Google, and Microsoft must all be in cahoots with each other because they're all introducing horrible UI designs at the same time.

    Well I guess that's kind of cool that you can add buttons in the bar as well, but I honestly don't have a use for that and I think it would get in the way more often than not in most scenarios I can think of (there's a reason buttons were segregated from the tab bar and it wasn't tech limitations). The previous functionality is much more convienent and useful and, well, functional.
    As for why FF5, well I've had the FF5 installation since before 6.0 was out, but the UI changes angered me so much that I abandoned it after about 20 minutes and went back to using my 3.6 installation; I've been letting the community stew and cook up solutions to the UI problems (status4evar for example) and like any good stew, giving it more time is better. Also a whole bunch of my addons (some of which are mission-critical to my browsing needs) were not [and a small few are still not] compatible with anything above 3.x, 4.x, or 5.x so I had to wait for those (mmm, stew). And then to top it off I figure the possibility that I'll run into upgrade problems is smaller if I go through the chain of updates rather than jumping from 3.6 straight to 7. And don't get me started on the whole rapid release schedule. :P

  • Is Windows 8.1 Update 2 bringing back the start menu?

    Was browsing group policies in Windows 10 GPMC, and discovered something new... Start Menu layout. But the requirement is "At least Windows 8.1 Update 2". So is 8.1 Update 2 bringing back the start menu? This could change before the final release
    of Windows 10 obviously, and they might have originally planned to bring it back in 8.1, before deciding to make it a big deal for Windows 10, but an interesting discovery nonetheless.

    Unfortunately, there will be no Windows 8.1 Update 2.  If you want the new Start Menu design, you'll need to upgrade to Windows 10.
    "...customers can expect that we’ll use our already existing monthly update process to deliver more frequent improvements along with the security updates normally provided as part of “Update Tuesday.” So despite rumors and speculation, we are not planning
    to deliver a Windows 8.1 “Update 2.”  (Copied from this blog)
    Carey Frisch

  • Purchase order item details in the drop box is not appearing

    Hi all ,
    I have created a 'Z' transaction  ME22N .Purchase order change .
    In that transaction purchase order item details in the drop box is not appearing.
    Please suggest .

    Hi,
    System will not display the Purchase order item details in the first screen. First enter the data on the Item overview like Material or short text then only it will display the Item details.
    I think you are checking with out entering the data on Item overview .
    Check by entering the material/short text.
    rgds
    Chidanand

  • Purchase Order : function to determine the purchase order number

    Hi,
    I'm working on data migration to create purchase order. I must use the internally range number. Does anybody knows which function must i use to create the purchase order number before calling the bapi bapi_po_create ?
    with regards
    Jean-Luc Ledoux

    Hi,
    The BAPI is designed to generate the next free number that is defined by the company and allocate it in series.
    This is taken care internally.
    explain the scenario like as from what data ur creating the PO and wht exactly do u mean by having ur own internal number range.....
    No body will have 2 number ranges to define PO....
    if ur uploading data from legacy system then u can have 2 fields called as old purchase order number and purchase order number in new erp system.
    if this is ur scenario ask how the functional mapping is done in the company to accomadate legacy purchase order numbers.
    Regards,
    Jayaram Maganti

  • Sending Purchase Order in mail without the spool generation

    Dear All,
    When i create a Purchase Order using Tcode ME21N, the PO should go by mail to an external email id as a pdf attachment.
    A Z sapscript is used . The spool request is not generated.
    Could anyone please let me know the method/code to use the script data for creating Purchase Order and send it via email without spool generation.
    Waiting for solution.
    Thanks & Regards,
    Bhavika

    Hi,
    as i said:
    create an printer with devices type PDF1, set  host spool access method to M (E-Mail to Receiver/Owner).
    Use this printer as output-device.
    To create and use a printer with PDF1 try searching in SCN or use SAP OSS.
    Regards Dieter

Maybe you are looking for

  • ORA-24333 on Select Statement

    Last night I attempted to roll a Crystal Reports .NET project to my production web server. This app has 3 new Crystal Reports. The Reports are all based upon the same Oracle Views on the same Oracle Database. Two of the reports work while the third r

  • 10.7 Lion: Hand Tool - jumpy movements when accessed via spacebar?

    I just upgraded to 10.7, and notice that the Hand Tool is very erratic and jumpy when accessed via the Spacebar. It's not so hot when directly using the Hand Tool, but it's about the same as it was under 10.6. Is anyone else seeing this? It happens w

  • Uncompiled SQL and REP 1247

    There weas some discussion a year ago on the REP 1247 error and uncompiled SQL. It did not appear if there was an answer for the situation I am dealing with. Another developer has some "program units" which are of the type CF_1FORMULA. When we try to

  • Regarding ODI Interview

    i am suppose to face the client interview. Can any one help me to know what kind of questions we can expect from client on Oracle Data Integrator? Thanks in advance... Regards, Gokul V

  • CMD+\ ... what is this called?

    I've been using this shortcut for a really long time to align text after a manually inserted bullet, but do not know what it's called. I'm asking because I'm creating a "real" bulleted list (using the bullet feature) but cannot get the text to align