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

Similar Messages

  • Importing a list into Purchase order

    Hi,
    I have a list on purchase order entries (Lines) in EXCEL. I would create PO in EBS and import line data from my excel. Is this possible?.
    Alternatively, I a have another PO in system that have similar lines as the one I want to create . I was wondering if import is not possible then is it possible I can copy a PO and edit the new one.
    I am new to EBS; I will appreciate if you can give me navigation details too. Thanks for your help in advance
    Aali

    Hi,
    If you are using R12 then this is possible through buyer's work center...
    E.g. You create a BPA Header.. and you want to upload the lines of this BPA by using source file in excel or text format.
    Under Buyer work center :
    1) click on the agreement tab .. click on the search button.. search for the BPA number you have just created with header info only
    2) Query will fetch your BPA... In Select Agreement option, select "Update" option..and press GO
    3) It will take you to a page : Update Blanket Purchase Agreement XXXXXXXXX
    4) Click on Lines tab of this page
    5) In this page you will see Add Line (fields) : select Via Upload from the LOV. Press GO
    6) Sytem will prompt you for File Type : Tab-Delimited text, XML. CXML etc...you selct your file ...
    7) If you are not sure about file format.. CLICK on DOWNLOAD Resources Button in this page...
    8) Now system will take you to Download Resource page... press Download.. save the template in your local m/c..
    8) Use (texttemplate.txt) the template, build you flat file for BPA lines... and upload it..
    It's easy.. :)
    Hope this will help.
    /S.P DASH

  • 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

  • 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

  • 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

  • List of purchase order without confirmation

    Dear guru  ,
    I search a list of purchase order without confirmation of the vendor.
    Does exist this list in standard sap ?
    Thanks in advance.

    No Std report exist to pull the informaiton where confiramtion control key is populated but confiramtion is not created.
    please use table EKPO and EKES and write the Query
    you will get what you need from this query

  • 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

  • To List Open Purchase Orders

    Hi all,
    My requirement is to list all the open purchase orders by purchase organization, and the selection criteria is it should follow the condition as given below.
    If
    Delivery Complete indicator(ekpo-elikz)  = 'X'.
    Deletion Indicator(ekpo-loekz) = 'L'.
    GR Flag(ekpo-wepos) = 'X'.
    then Purchase order is considered as closed.
    Delivery Complete indicator(ekpo-elikz)  = 'X'.
    Deletion Indicator(ekpo-loekz) = ' '.
    GR Flag(ekpo-wepos) = 'X'.
    then Purchase order is considered as closed.
    Delivery Complete indicator(ekpo-elikz)  = ' '.
    Deletion Indicator(ekpo-loekz) = 'L'.
    GR Flag(ekpo-wepos) = 'X'.
    then Purchase order is considered as closed.
    Delivery Complete indicator(ekpo-elikz)  = ' '.
    Deletion Indicator(ekpo-loekz) = ' '.
    GR Flag(ekpo-wepos) = 'X'.
    then the Purchase order is considered as OPEN.
    So we should get the PO's by purchasing organization which satisfies the final condition.
    How can it be done, can anyone help me out?

    Hi Prashanth,
    This looks simple and all that you have to do is to just put in the last condition to select the open purchase orders.
    The other 3 conditions will automatically negated by the last one.
    Let me know if your question is limited to this or you are looking for some other information?

  • List of purchase orders is empty on Goods Receipt PO

    Hi,
    a user can't see the purchase order lists (empty result) when he clicks the "copy from" button on Good Receipt PO, although he just added several new purchase orders (hence they are still open). The weird thing is, another user with the same authorizations (I copied the authorizations) can see the results.
    Does anyone know why? Is there any setup or permission I should be aware of?
    Thanks!!
    Andre

    Hi,
    Did the user fill out the BP details? You will see the PO's only after choosing a supplier.
    Regards,
    Nat

  • Purchase Order with Transaction Type: Missing on scrren

    Hi Guys,
    I've been searching for the place in config and master data that determines where the Transaction type is linked the the org. unit or user, but have not been succesfull.
    The selection for transaction type is emty in the "Create Purchase order" screen.
    I have activated ECPO in "Define Transaction Types" in IMG.
    I have had the same problem before but forgot where it was.
    Can any of you mighty people out there point me in the right direction?
    Thanks in advance,
    Thomas
    Message was edited by:
            Thomas Midtbøll

    Hi Thomas,
    The transaction types ECPO & ECDP are maintained in the attributes (BSA) of the org. structure at the Co. Code level or which ever level (P.Org, P.Group) based on the requirements. The user assigned at any of these levels inherit these attributes.
    Also you define number ranges (external & Internal) both for the transaction types in the SPRO > IMG along with the point you mentioned for the activation of Transaction types.
    Hope this answers your query. Clarifications are welcome.
    Rgds,
    Teja

  • Open list of purchase orders?

    Hi all, any idea if there is a standard report I can use to pull out all purchase orders which still have a quantity/vanue left to deliver? Effectively open purchase orders? If so does anyone know which one it is?

    Hi,
    By using Delivery completed indicator, we can list out all open purchase orders.
    ELIKZ - Delivery completed indicator
    In the EKPO table, maintain ELIKZ net equal to 'X' and give other parameters like plant code, material group etc.
    Then you will get all open PO's for that given combination.
    Thanks & regards
    Ravi kumar

  • Table links from Purchase order to condition types

    Hi,
    I am looking for the tables to go from purchase order, and to read the conditions associated with the PO.
    I have EKKO, and EKPO, but I cannot find the table where the condition information is stored. I have KONV and KONP, but they seem to be the tables where the condition type info is stored, not the link table where the purchase order specific information is stored.
    Can somebody please point in the right direction?
    Regards
    Piet
    Edited by: Piet Strydom on May 12, 2009 12:52 PM

    Hi,
    The PO and the Condition Record Number Link happens in the Table EKKI.
    from this table get the condition Record number line item wise and execute in KONV.
    Hope so it helps
    Regards
    Anjanna
    you can check the below thread posted by self for further ing
    Re: PO item Condition Record number and delivery address of PO - Need a table n
    Edited by: Shiva Rajanala on May 12, 2009 1:42 PM

  • Restriction of purchase order with valution type

    Dear,
    I want to restrict the valution type with the document type of purchase order type,
    Can i do it?
    E.g
    My valution type is Fg-dom,
    I want to use this valution type in stock transfer order ,
    Restrict in other doc.type

    Hi ,
    Valuation type is defined for material.In  standard setting we can't restrict a purticular val.type to a PO document type.
    A material with a valuation type, can be used for any purchasing document type.
    For the better understanding of users You can define  a PO document type with ZDOM for domestic.
    And advise them to use that document type for the material procurement with valuation type Fg-dom.
    Let me know you are ok with this.
    reg.
    Mariappan

  • Purchase order accounting document type KR

    Hi
    Generally invoices posted against purchase order post an accounting document RE. Are there any cases, when an invoice posted against a purchase order can have a KR document.
    we have an instance in our system. In MIR4 the invoice document gets displayed, but the accounting documetnt posted is KR document type. IT should be generally RE.
    Can any explain when a PO invoice can have an accounitng document type KR instead of RE?
    regards
    Raj.

    Hi,
    this could not be possible as per Standard SAP transaction if you had used MIRO it will generate document type RE and if you had used FB60 it will generate KR.
    Is it happened only for particular document or for all ?
    check your SAP default setting for Define default values.
    IMG > Financial Accounting > Financial Accounting Global Settings > Document > Default Values for Document Processing > Define Default Values
    I hope it works for you.
    Regards
    Arun

  • Empty list in Purchase Order Release

    I have the components and notes applied as suggested for the Approve Purchase Order Application.and configurations are done as required in the document.App Implementation: Approve Purchase Contracts - SAP Fiori principal apps for SAP ERP 1.0 - SAP Library
    Back-End/Front-End Server
    Back-End/Front-End Component
    Technical Name of Software Component
    Support Package Level
    Back-end server
    Back-end component
    SRA001 1.0
    04
    Front-end server
    Front-end component
    UIX01EAP 100
    03
    But the Po s are not displayed in the application. and no errors are thrown in the chrome console. attached are screenshots for suggestions
    NO Purchase Orders count and no errors in the console.
    No Purchase Orders displayed and No errors in the console
    QUery of the workflow returing Null values from the request
    WorkFlow Collection empty in the gateway query
    i had also checked the task id properlyassigned and maintained in backend
    spro -> mm -> purchasing -> Purchase order ->Approve purchase order app
    and checked Trusted RFC Connection was  maintained properly.
    Log on security was filled with Current user.
    I have unreleased PO in my system but not displayed.
    How can this issue be resolved ?please suggest

    i realised that i have nt configured and defined an approval scenarion in my gateway SPRO settings.
    To do the same i am following the guide http://help.sap.com/saphelp_fiori/fiori10_install_en.pdf page 58 , to define an approval scenario.
    As per the guide should define an approval scenario in spro at
    In your SAP NetWeaver Gateway system, run transaction SPRO and choose SAP Reference IMG >SAP
    NetWeaver >Gateway Service Enablement> Content >Task Gateway Service> Scenario Definition .
    and i could find the exact location to define a scenario
    my settings screenshot in SPRO, and Scenario Definition is not available in SP08 embedded gateway system

Maybe you are looking for

  • Changes in custom tab shud reflect in std Item overview tab in VL32N

    Hi all, I have added a custom tab (Overview tab) in transaction VL32N and Vl33N using the BADI "LE_SHP_TAB_CUST_OVER". Now for transaction Vl32N,when I change delivery ,if i change the quantity field in teh  custom tab,then the chnages have to be ref

  • Help! when install oracle on AIX,occur error about "Relocation....libjava.a".

    Has 'rootpre.sh' been run by root? [y/n] (n) y Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8. 3/1/DataFiles/Expanded/jre/aix/bin/jre. Please wait... Could not load program /u02/cdrom/stage/Components/oracle.swd.jre/1

  • Issues between R/3 Version 4.6.C and CRM version 5.0.

    Good Morning dear colleagues, Somebody has any idea where can I find what kind of issues I have to face in order to install / configure R/3 version 4.6.C versus CRM 5.0.??? I really appreciate any help. Best Regards ... Carlos Lacruz.

  • N73m - Geeting mobile icon on video clips

    Hi, Could you please help me out to know - why I am getting a mobile icon as well as message (envelope) icon on some of the video clips which i have taken recently from my mobile camera only. What is the meaning of those icons and how i can rid of it

  • Latency Problem with Audigy 2 ZS notebook

    I have big problem. I wanna play with my laptop, but when i use Creative ASIO on 2ms, the sound isn't clear. No problem when i play on 5, but I want on 2. Please HELP. I have ACER Aspire 1642, 512 DDR2, USB 2.0. Where is the problem? I have last driv