VL31N, add field in purchase order list

Hi,
i'd like to add some fields (for example Open Quantity) in the list of purchase order at VL31N. How can i do this? I've seen the infoset query (sq02) but it doesn't work.
Someone did it?
Thanks you

No open order quantity is avialable at thie screen, to have this field youhave to do COREMODE which generally not recommnded by SAP but if you want to do then you can add to SA program
Hopr this will help you

Similar Messages

  • VL31n add field in purchase orders list

    Hi,
    i'd like to add some fields (for example Open Quantity) in the list of purchase order at VL31N. How can i do this? I've seen the infoset query (sq02) but it doesn't work.
    Someone did it?
    Thanks you

    No open order quantity is avialable at thie screen, to have this field youhave to do COREMODE which generally not recommnded by SAP but if you want to do then you can add to SA program
    Hopr this will help you

  • Implementation Of Badi ME_GUI_PO_CUST for adding fields in Purchase Order

    Hi All
       I am implementing BADI ME_GUI_PO_CUST / ME_PROCESS_PO_CUST to add additional fields in Purchase Order.
    The implementation of the BADI ie the Subscreen of the fields to be added appears in  transaction ME23N but it does not appear in the transaction ME22N and ME21N.
    Can anyone help me on this.
    Thanx.
    Moderator message - Duplicate post locked
    Edited by: Rob Burbank on Jul 10, 2009 12:10 PM

    check the answer
    [New tabs added by Badi ME_GUI_PO_CUST not seen in ME21N and ME22N;
    bye

  • Downloading the open purchase order list

    HI Friends,
    Please let me know how to download the open purchase order list from SAP aong vth buyer codes.
    Regards,
    A.S.kumar

    Hii
    Go to ME2N, give the details what ever u want in that screen and in Scope of list - select ALV.
    If u select ALV , it will show in the format of excel sheet , so u download as lik that .
    In selection parameters - u mention WE101/WE102 ...etc , according ur requirement.
    Any clarification , let us know
    Thanks
    SAP-MM
    Edited by: MM group on Feb 19, 2010 6:04 AM

  • Open purchase order list

    Hi experts,
    how i can generate open purchase order list with the amount ?
    regards,
    Sanju M S

    HI
    try report
    ME80FN
    here after executing click on changes view and select PO history
    Regards
    Kailas Ugale

  • ERS field in Purchase Order Line detail (Invoice Tab)

    Hi ... I was trying to figure out the priorities for ERS field in Purchase order ...
    What i could simulate is ...
    Case 1
    In case Vendor master has ERS = YES but in info record ( for vendor and material) NO ERS is defined.
    Then ERS field will get appeared in PO LINE detail with value NO (not set)
    Case 2
    In case Vendor master has ERS = No but in info record  (for vendor and material)  ERS is set.( NO ERS = not set)
    Then ERS field will not get appeared in PO LINE detail
    Case 3
    In case Vendor master has ERS = YES and in info record  (for vendor and material)  ERS is set.( NO ERS = not set)
    Then ERS field will get appeared in PO LINE detail with ERS = YES
    Here I am doubtful about case 2 .... I believe info record should always have priority over vendor , but system is not behaving as per expectation.
    Could u pls tell me the exact conditions when ERS field will not appeared and if appeared from where it will pick the default values in PO LINE details
    Regards
    SANDEEP

    the info record has precedence.
    The bad thing is, that this field is , contrary to other field that appear in vendor and info record,  has a  negative meaning.
    ERS field name in vendor is  auto eval GR settlement,
    while in info record it is : No ERS.
    lets do an example:
    V=vendor
    I = Info record
    P = purchase order
    X = box selected
    N = box not selected
    so we can have this 4 cases:
    VIP
    XNX
    XXN
    NXN
    NNN
    The 3rd  case NXN does not really make any sense.

  • Make short text field in Purchase order creation only display..

    Sir,
    Yeah my requirement is quite unusual, but such is the situation.
    I want to make the short text field in purchase order creation "only disply". what is happening is that user while creating PO is able to change the text of material in short text column. I want to make it only for display.
    Can it done on document type level, since for service type, and Text type of account assignment cat, only text field is filled up. so how to do it.
    Please assist...
    Rahul

    Dear Rahul,
    If you want to have the short text display only for standard item but not service item, you may check below customizing.
    Transaction SPRO:
    MM-PUR-PO
    -> Define screen layout at document level
    Field Selection group: Basic Data, Item
    Field Selection Key:  PT0F Standard item purchase order
    Field: Short text -> set as display
    Hope this help.
    Ian Wong Loke Foong

  • PR to be made mandatory field in Purchase Order

    Hello,
    PR to be made mandatory field in Purchase Order.
    How i can do this in SAP ?
    Regards
    Rahul

    Hi,
    First check your PO document type which you want to make PR number field as mandatory in ME21N.
    Then Goto -> SPRO- Material Management - Purchase order- define document type for Purchase order - E.g NB- check the field selection assignment ( NBF)
    Next,
    Goto - Define screen layout at document level ( t.code OMF4) SELECTION GROUP Reference data, item and under Field selection key as NBF.
    Field name - Purchase Requisition as Required entry with flagged check box.
    Now in purchase order for the choose document type NB=PO the PR field as required entries.
    System will allow to create PO only with reference to PR.
    Thanks
    Thiru

  • Prevent unauthorised changing of 'Ship to' field of Purchase order

    Hi experts
    I am trying to prevent users from changing 'Ship to' field of Purchase Order without authorisation. OPOR.Address2
    I am thinking to do this I should use a Stored Procedure which cause error if a condition is not met?
    First I am trying to prevent any change of this field:
    SP attempt:
    --No changing of ship to address on PO
    IF @object_type = '22' AND @transaction_type IN ('U','A')
    BEGIN
    IF EXISTS (SELECT T0.Address2 FROM dbo.OPOR T0 WHERE T0.Address2 <> (SELECT T1.CompnyAddr FROM dbo.OADM T1) AND T0.Address2 = @list_of_cols_val_tab_del)
    SELECT @error = 1, @error_message = N'Direct shipment requires authorisation'
    END
    The above does not work - please can someone assist?
    If there is better way to achieve my required outcome please advise me.
    Thanks
    Karen

    Hi,
    Try this:
    IF @object_type = '22' AND @transaction_type IN ('U','A')
    BEGIN
    IF EXISTS (SELECT T0.[Docentry] FROM OPOR T0 WHERE T0.[Address2]  <> ( select T0.[CompnyAddr] from OADM T0) AND T0.docentry = @list_of_cols_val_tab_del)
    SELECT @error = 1, @error_message = N'Direct shipment requires authorisation'
    END
    Thanks & Regards,
    Nagarajan

  • Purchase Order list pending for MIRO days wise

    i want to know t.code for outstanding Purchase order list dayswise which is pending for Miro....for example payments will be in 15days 30days which is mention in P.O.
    Thanks & Regards
    Rekha Sharma

    Hello,
    Please check MR11
    Regards,
    Ravi

  • Regd : purchase order list in SAP

    hi,
    Is there  standard purchase order list available in SAP.
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

    Hi
    execute the following Std Tcodes for PO lists
    ME2B                 POs by Requirement Tracking Number
    ME2C                 Purchase Orders by Material Group 
    ME2J                  Purchase Orders for Project       
    ME2K                 Purch. Orders by Account Assignment
    ME2L                  Purchase Orders by Vendor         
    ME2M                 Purchase Orders by Material       
    ME2N                 Purchase Orders by PO Number      
    Regards
    Anji

  • Purchase Req as mandatory field at Purchase Order

    Hi Gurus,
    I have the next problem:
    I'm trying to put purchase requisition as mandatory field at purchase order.
    At img i made the following steps:
    Materials Management > Purchasing > Purchase Order > Define screen layout at document level
    I sellected the screen layout that I want to change
    At 'reference data, item' I sellected 'purchase requisition' as 'reqd. entry'.
    Next I try to do a PO and it doesn't work...
    Anyone knows why?
    Regards
    LR

    Force buyers to create Purchase Order with ref. to a Pur. Req., Quotation or Pur. Ord.
    Transaction OMET
    Create a new entry, give it a name and tick :-
    Ref. to PReq
    Ref. to P.O.
    Ref. to quotation
    Next, you've got to associate via SU01
    Click Parameters, insert a new parameter id EFB to the authorization code.
    Type in Parameters value you want e.g. XX
    You have to assign the control for ALL the SAP buyers via thier SAP users id.
    Logoff and login again. Then try to create a Purchase Order without a reference.
    Source link: http://www.academictutorials.com/sap-mm/sap-mm-configuration-tips.asp

  • Printing a Purchase Order list in Java.

    Hi.
    I?m making a simple sales system at school, and I would like it to print out a Purchase Order list like this one http://www.scorp-d.dk/PurchaseOrder.jpg , but what is the easiest way to do this? Making a Jframe that looks like one or what?
    Scorp-D

    Hello :) Just a suggestion: use the JEditorPane to display your PO constructed
    using HTML. Here's a link to a tutorial that might help:
    http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html

  • Show Todays Purchase order list

    Hello Experts,
    I want to show todays purchase order list in foll manner in Grid or Matrix of customized form.
    Customer Name PoNo PODate DocTotal
    Is it possible?
    Plz give me some solution.

    Hello freind
      try this code for youe custmised form for grid
    pass form date and end date from your form in date1 and date 2 parameter in sql query
    oItem = oForm.Items.Item("code")
                                            a = oItem.Specific
                                            PID = a.Value
                                            Dim oRS As SAPbobsCOM.Recordset
                                            Dim ocol As GridColumn
                                            oRS = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                                            str = "select *,T0.CardCode,T0.CardName,T0.DocNum,T0.DocTotal,T0.DocDate from [OPOR] T0 where T0.DocDate between 'Date1' and 'date2'"
                                            oDataTable = oForm.DataSources.DataTables.Item("MOV1")
                                            oDataTable.Clear()
                                            oDataTable.ExecuteQuery(str)
                                            objGrid = oForm.Items.Item("actv").Specific
                                            objGrid.DataTable = oDataTable
                                            ocol = objGrid.Columns.Item("ACT_ID")
                                            ocol.LinkedObjectType = "33"
                                            objGrid.CollapseLevel = 0
                                            objGrid.AutoResizeColumns()

  • Add field district to order

    Hi All
    I want add field district to order, this is for I have a condition price calculate price for:  product and district  (sales zone).
    Condition price and customizing is ready, only I need add field for item in order and check price calculation.
    Thanks.

    Hello Rick / Mad,
    Im not sure which forum to post workflow too...it is based on CRM.
    Here is where I am though:
    Hello,
    Yes I used BUS1006
    If I click the test button and put an example BP number it sends me the email and it works correctly.
    But when I am in the WEB UI and I create a new account.
    I wait and then check SWEL and it says "Check FM ends with exception".
    I dont know what this means...
    Also it seems the email / job only kicks off when I do a test.  When do workflows kick off?  Are they placed in SM36 /SM37 for looking at when they run.  When I created the workflow I dont remember it asking me when it should run, is it a batch job that always is running?

Maybe you are looking for

  • Trying to connect to a PC printer from my MacBook Pro

    I have a HP PSC 1350 All-in-One printer connected to a Windows computer. I am trying to print to that printer. I have attempted to install multiple drivers, and still nothing. When I try adding the printer, I go to the Windows setting, it shows the p

  • Distinct not working in OBI 11.1.1.6.2

    Hello Experts - We have recently upgraded our OBIEE environment from 11.1.1.5 to 11.1.1.6.2 and we are facing a strange issue. The ditinct which the OBIEE uses internally is not getting applied. We are getting duplicates even for the column which is

  • Expected goods receipts

    Hi, Is there any standard report available for the "Expected goods receipts" other than ME2V ? Regards, Sattuj

  • Flash Player - Firefox - Disk Space

    I'm about to pull out what little bit of hair that I have left!!!! Downloaded, uninstalled, installed, etc, etc. Continuously getting pop-up saying "not enough disk space, free up 5000KB and try again". There's more than 400GB free on said drive. Plu

  • How can i compress a file to QT for web use?

    how can i compress a file to QT for web use?