List of purchase orders with release code

I want a list of purchase orders which are pending for an approval (release) from a particular release code.
I can get it from ME28 by putting relase code and plant. But this is not to be used as it asks for authorization.
Can we get the same information from any other T-code / report ?

Hi
You can write a simple query using table EKKO and EKPO.
regards
Srinivas

Similar Messages

  • BLANKET PURCHASE ORDER WITH RELEASE

    HOW TO DO CONVERSION OF BLANKET PURCHASE ORDER WITH RELEASE
    ,PLZ SEND SAMPLE CODE OR UNIT TEST(UT) DOCUMENT.

    Hi Suresh
    you can define the copying rules with the help of following customization.
    SPRO>Purchasing > Purchase Requisitions > Text for Purchase requisitions > define copying rules.
    define text types and linkages.
    SPRO>Purchasing>purchase order>Text for purchase order
    Define copying rules for header and item text for PO as per the requirement.
    Best Regards
    Nishant Shende

  • Standard Report to see list of purchase orders with  Payment terms

    Hi  ,
    I want to see list of purchase orders with corresponding  Payment terms.
    Is there any standard report available ?
    I checked ME2L,  ME2M , ME80FN and ME81N ...
    But there is no option to add payment term field ZTERM in layout option.
    kindly let me know if there is any way..
    Thanks & Regards,
    Hari priya

    Hi krishna ,
    Thanks for your prompt reply..
    I know we can use dynamic selection for payment term as input seelction...
    but in i want to display payment terms  for list of purchase order in output.
    Is there any way to add zterm- payment term field in output layout of reports.
    Thanks &Regards,
    Hari priya

  • Print Preview Purchase Order with release strategy

    Hi gurus,
    With release stratregy you can not print a PO before release through ME9F. The system will give error message 'No corrosponding document found'. However, you can print PO through 'Print Preview' by clicking on Print icon in ME22N, we need that "Print Preview"doesn't print PO without release. System it shouldn't print.
    Thank you!

    Hi,
    Hope you are using Z output type & print program for PO printing. You can restrict this by modification in program. Please do it with help of abaper.
    Regards,
    Sandeep

  • Deleted purchase order with release strategy

    Hi all,
    When PO are deleted, the release strategy is disabled. However, if you mark final invoice and delivery completed indicators, the release strategy is triggered, even if the po is deleted.
    Is it possible to disable the release strategy when final invoice and delivery completed indicator are marked?
    Thank you for your answer

    The technical expert in my team has found the explanation to that problem:
    A deleted item is "statistical" => there is no release strategy (standard control in ME_REL_STRATEGIE_EKKO function module)
    But if ''final invoice'' and ''delivery completion'' are marked, the item is NOT statistical (standard control in LMEPOF4X include)
    Therefore, a release strategy is redetermined even if the item is deleted
    Thank you all for having tried to help

  • Report for PO's/Pr's/Planned orders with exception code

    Hi all,
    Is there any report which lists out Purchase Orders/Purchase requisitions/Planned orders for a specific exception message number?
    For example when MRP is run some times the finish date for a planned order may be in past (exception message number 07). I would like to get a list of all the planned orders with exception message number 07. Similarly i would like to get PO's/PR's for a specific exception code.
    Any help is highly appreciated.
    Thanks,
    Avani.

    Hi Neetha,
    You can use the Collective access tab on the MD06 T-Code, don't enter a material number, only the plant number and MRP Controller number.  Then click on the tab marked Exception Groups, check box  number 7 and execute the report.  This will give you a list of all materials with exception group 7.  If you need it as a report. Once the report comes up you can click on MRP List on the tool bar at the top of the page and then click print.  This will format it so you can download it into excel by clicking on the Local File Button.  When the box comes up click on spreadsheet and save it to your hard drive as an excel spreadsheet.
    Hope this is of some help to you.
    Debbie

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • A rlist of purchase orders with Account assign.category  "A" and .....

    Hi All,
    Could anyone show me a transaction code which shows
    the list of purchase orders
    - without good receipt and
    - with Account assignment category  "A".
    Tnaks
    A lot
    G.ROssi

    hi,
    Go to ME2N >> use selection parameter field >> here assign the value ie. NO gr done >> come out...
    then maintain the dynamic selection and in the PO item details maintain the acc. assgn catagory and then execute..
    System will show all PO's for which no GR is done...
    Regards
    Priyanka.P

  • List of Purchase Orders by Conditon Type

    Hi,
    Does anyone know if there is a sap standard list where one can see purchase orders by condition type (at header and/or item level)?
    I don't see this field in t-codes ME2W or ME2N.
    Thanks in advance.
    Best Regards,
    Pedro Mariano

    I dont think you could get Condition type wise purchase orders in any standard report.
    To list all condition types for a Purchase order go to SE16 select EKKO table and input Purchase order number and get the condition record number. Now pass the condition record number in KONV to get Item condition detail.
    To list only Purchase orders based on Condition types then you will have to Use KONV alone with Condition type input

  • Purchase order re-release

    Dear All,
    my client wish , purchase order should not go for re-release if buyer changes/ amends delivery date in ME22N
    Thanks

    Hi,
    Just complementing, customizing path:
    T-code OLME
      > Purchasing
      >> Purchase Order (Assumimg that you are dealing with release strategy in PO)
      >>> Release Procedure for Purchase Orders
      >>>> Define Release Procedure for Purchase Orders
      >>>>> Release indicator
    You can also refer following document:
    -> http://wiki.sdn.sap.com/wiki/display/ERPSCM/RELEASE+PROCEDURE
    Hope it helps!
    Cheers,
    Eduardo Junior

  • Create blocked purchase order with BAPI_PO_CREATE1

    Hi,
    I´m creating stock transport orders with BAPI_PO_CREATE1. At first, I need to
    set them to the release status 'S' for blocked. After some checks, I want be able
    to relase it and create the delivery.
    I have found some fields like rel_status inside of the header structure of
    BAPI_PO_CREATE1. But when I set this to 'S', the purchase order is created
    with status 'released'.
    How can I create a purchase order with BAPI_PO_CREATE1 and set it to 'blocked'
    first?
    Thanks, Arne

    No ideas about that?

  • Purchase Order with reference to Purchase Requisition

    Hello
    I have this situation:
    One Purchase Requisition with quantity of 10.
    When I issue a Purchase Order with reference to this purchase requisition, for the moment I can use this Purchase Requisition many times. For example: two Purchase Order with the same purchase requisition, same item and same quantity.
    The objective is thay the system only allows to use the Purchase Requisition until the quantity is completed. For example: one purchase order for 10, or two purchase orders with 5 each. But never with a quantity superior to the total quantity in the purchase requisition.
    Somebody can help?
    Thank you,
    Elena

    Hi,
    1) By setting the configuration paths as suggested by the previous posts.
    2) In the first place, when converting a PR in PO Create Screen (ME21N), you should make the Open only and Released only field as Display. This way, the results will only show Open and Released PRs to be converted to PO
    Hope this helps

  • How to see the list of purchase order

    hi,
    Please kindly guide me how to see the list of purchase order released and unreleased both.
    Regards,
    Sanchita

    Hi
    Check it out in Tcode ME2N
    Menu bar - Edit -Dynamic selections - Purchasing document header - Release status.
    Check it out.
    Thanks
    Raman

  • MD04: Unable to see Purchase Orders with Item Category S

    Hi,
    Whenever we create Purchase Orders with Item Category S (3rd party), they are not visible in MD04 Stock Requirements list.
    Is there anyway we can get the Item category S Orders to be displayed in the MD04 list?

    Hi,
    I am unable to see Third party POs with open quantity also.
    If I create a PO with blank item category (i,e to stock, it will show in MD04)
    but if i create PO with item category S (it does not show in MD04)
    Can you suggest how we can get item category S POs to be displayed in MD04

  • Display of Purchase Order in release

    Hello all,
    My client has Five levels of approval in their Purchase Orders. Is there a way i can view a list of Purchase Orders that are yet to be fully approved. Meaning a list of Purchase orders that might have undergone two levels of approval, remaining three levels.
    Thanks in advance.

    Use the fields EKKO - FRGKE &  EKKO - FRGZU to fulfil your requirement.
    The number of X you find in EKKO-FRGZU will let you how many levels the said PO is approved.
    EKKO - FRGKE will let you know whether the PO is still blocked for further approval or it is already released. Normally the B is used for identifying blocked status and R is used for released status in this field. It may be different in your system, check your configuration on release indicators

Maybe you are looking for

  • Changing Text Headings in Web Report

    Hi SDN, Can you please assist us in this scenario, as i have not worked with Table Interface Class previously, and if you can help out with the steps it would be much appreciated. We have created a query which uses 2 structures in the Rows area.  To

  • Field Update workflow action - Updating today's date into a field

    Hello there. I was hoping someone might be able to help with an error currently being experienced with regards to this workflow action. The requirement is for a workflow rule to action the printing of today's date into a custom field on an Activity r

  • No chat box in latest version for typing messages

    I just downloaded the latest version of Skype and find there is no chatbox for me to use if I want to respond in typing to a message.  What do I do? 

  • Backing up to external hard drive?

    I find it hard to believe that the only way to back up my iTunes music library is to do it using 30+ CD-Roms - - that is so 1998! Does anyone know how to back up an iTunes library using an external hard drive or even a thumb drive? I can't seem to fi

  • Comment installer PE 9 sur un nouvel ordinateur?

    Le 27 août 2011, j'ai acheté Photoshop Elements 9 (téléchargement; no de série <serial number removed>. Comment le placer sur un nouvel ordinateur (Windows 7)? Jean Gagné [email protected] 514-509-1770