Restricting PO line item quantity

HI all,
How should i restrict a PO line item quantity from RFQ Quantity?
please help me how to restrict PO quantity.
Thanks,
Message was edited by: sungnam ko
Message was edited by: sungnam ko

Hi
It is always collecting the Qty of RFQ or referance document but you can change the same manually if you want to restrict to manually change then only option one option is "you have to change po-qty field status to display only" but this will not the proper soluction.
With Regards
Dhananjay

Similar Messages

  • Restrict Vendor line items display by Vendor authorization group

    Hi Gurus,
    I have a requirement to restrict Vendor line item diplay for Tcode FBL1N, I have updated the Authorization object F_LFA1_BEK, its work fine if all the vendors have authorization, However it also display vendors whose auth. group is "BLANK" or "SAPCE",
    Is there a way that I can slove this issue, is there any SAP notes of other object which needs to be updated ?

    Hi,
    this problem has been discussed on this forum last week. Basically, SAP does not perform authorization check if the authorization group is blank. Hence you need to assign authorization object to all vendors.
    Cheers

  • Freight Units Line item Quantity

    **Hello All,**
    **We have a requirement to extract the Freight unit line item quantity. Is there a table available in SCM capturing this data. The freight units that we are using in this custom report is Sales orders and Purchase orders.**
    **Please let me know if you know the table name.**
    **Thanks.**
    **Ramesh**

    Hi Ramesh,
    Use the structure /SCWM/S_ASP_VEH which carries
    many tables.  Field name FRD_NUM denotes the
    freight document number.
    If you want additional information, use the tables under
    this structure to build your custom report.
    Regards
    R. Senthil Mareeswaran.

  • BADDI FOR RESTRICTING PO LINE ITEM TO 50

    Hi All,
    I wanna to know, is there any bapi/baddi/or exit to restrict the line items in a Purchase Order to maxm 50 items in a P.O.
    Thanks,
    Anu.c
    Message was edited by:
            anu c

    Hi,
      In such case a slight change in logic is required.Make use of deletion indicator wl_mepoitem -LOEKZ..
    Select EBELN EBELP LOEKZ from EKPO into itab for the PO.
    LOOP AT itab.
      IF itab-loekz NE 'X'.
        count =  count + 1.
      ENDIF.
    ENDLOOP.
    IF count > MAXIMUM ITEMS ALLOWED.
    message : not allowed.
    ENDIF.

  • Line Item Quantity

    Hi All,
    Its a small query,What is the field in the dictionary for line item quantity & line item number,
    Thanks

    HI,
    go to tansaction code VOV7 ANSD SELECT your item category you can find a filed called order quantity =1
    this will reslove your problem
    REward points if the answer is helpful
    REgards,
    Murali

  • Restricting new line item of completed sales order in VA02

    Hi,
    My requirement is to restrict the user to add new line items for Sales Order if the <b>Header status</b> is completed in VA02 transaction.
    I have done the coding in "<b>userexit_move_field_to_vbap</b>" as it is displaying pop up an error message and stop the users from adding a new line item.
    Popup message contains 2 buttons 'Continue' & ‘Exit’.
    If user clicks ‘<b>Continue</b>’ it should be stay in same transaction (Va02) and if user clicks '<b>Exit</b>' it should exit the VA02 transaction.
    But when I click the '<b>Continue</b>' button it is staying in the same transaction and newly entered line item values are not clearing. But these values should not appear after clicking '<b>Continue</b>' button.
    Can any body please help me in this regard?
    Thanks in advance.
    Ranjith.

    Hey,
    Is this ranjith tavidisetty.... if yes please call me on 09974440499...
    need to speak to you.....
    regards,
    naveen.

  • Sales Orders line item quantity getting Zero after free good line item

    Hi experts,
    i am creating sales order using BAPI  BAPI_SALESORDER_CREATEFROMDAT2   sales order having some free goods material  and line item after free goods line item having quantity zero.
    for example A B are  materials, A having free goods a1.  when SO  having 3 line items 10 for A ,line item  20 for a1 and line item 30 for B . But line item 30 having quantity zero.
    find code below and advice .
    lwa_ord_head_in-doc_type       = 'ZSO'.
        lwa_ord_head_in-sales_org      = '1000'.
        lwa_ord_head_in-distr_chan     = '10'.
        lwa_ord_head_in-division       = '10'.
        lwa_ord_head_in-req_date_h     = lwa_rof_s-date_del.
    *Order Header Update
        lwa_ord_head_inx-doc_type       = 'X'.
        lwa_ord_head_inx-sales_org      = 'X'.
        lwa_ord_head_inx-distr_chan     = 'X'.
        lwa_ord_head_inx-division       = 'X'.
        lwa_ord_head_inx-req_date_h     = 'X'.
        lwa_ord_partners-partn_role  =  'AG'.
        lwa_ord_partners-partn_numb  =  lwa_rof_s-lease.
        APPEND lwa_ord_partners TO lt_ord_partners.
        IF lwa_rof_s-del_addr IS INITIAL.
          lwa_ord_partners-partn_role  =  'WE'.
          lwa_ord_partners-partn_numb  =  lwa_rof_s-lease.
          APPEND lwa_ord_partners TO lt_ord_partners.
        ELSE.
          lwa_ord_partners-partn_role  =  'WE'.
          lwa_ord_partners-partn_numb  =  lwa_rof_s-lease.
          APPEND lwa_ord_partners TO lt_ord_partners.
        ENDIF.
        lt_rof_it_t = lwa_rof_s-zsd_rof_it_t.
        LOOP AT  lt_rof_it_t INTO lwa_rof_it_s.
          lwa_ord_items_in-material = lwa_rof_it_s-matnr.
          lwa_ord_items_in-plant = lwa_rof_s-plant.
          lwa_ord_items_in-target_qty = lwa_rof_it_s-qty.
          lwa_ord_items_in-comp_quant = lwa_rof_it_s-qty. "added on 12/29
         lwa_ord_items_in-target_qu = 'EA'.
         lwa_ord_items_in-t_unit_iso = 'EA'.
          APPEND lwa_ord_items_in TO lt_ord_items_in.
          lwa_ord_items_inx-material = 'X'.
          lwa_ord_items_inx-plant = 'X'.
          lwa_ord_items_inx-target_qty = 'X'.
          lwa_ord_items_inx-comp_quant = 'X'.
         lwa_ord_items_inx-target_qu = 'X'.
         lwa_ord_items_inx-t_unit_iso = 'X'.
          lwa_ord_items_inx-updateflag = 'I'. "'U'
          APPEND lwa_ord_items_inx TO lt_ord_items_inx.
         ** Schedule Line Information
          lwa_schedule_lines-itm_number = '000010'.
         lwa_schedule_lines-sched_line = '0003'.
          lwa_schedule_lines-sched_line = 'X'.
          lwa_schedule_lines-req_date   = lwa_rof_s-date_del.
          lwa_schedule_lines-date_type  = '1'.
          lwa_schedule_lines-req_qty    = lwa_rof_it_s-qty.
          APPEND lwa_schedule_lines TO lt_schedule_lines.
         lwa_schedule_lines_x-itm_number = '000010'.
         lwa_schedule_lines_x-sched_line = '0003'.
          lwa_schedule_lines_x-updateflag = 'I'.
          lwa_schedule_lines_x-sched_line = 'X'.
          lwa_schedule_lines_x-req_date   = 'X'.
          lwa_schedule_lines_x-date_type  = 'X'.
          lwa_schedule_lines_x-req_qty    = 'X'.
          APPEND lwa_schedule_lines_x TO lt_schedule_lines_x.
        ENDLOOP.
        CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
          EXPORTING
      SALESDOCUMENTIN               =
            order_header_in               = lwa_ord_head_in
            order_header_inx              = lwa_ord_head_inx
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
       IMPORTING
         salesdocument                 = lwa_saledocu
       TABLES
         return                        = lt_return
         order_items_in                = lt_ord_items_in
         order_items_inx               = lt_ord_items_inx
         order_partners                = lt_ord_partners
         order_schedules_in            = lt_schedule_lines
         order_schedules_inx           = lt_schedule_lines_x
      ORDER_CONDITIONS_IN           =
      ORDER_CONDITIONS_INX          =
      ORDER_CFGS_REF                =
      ORDER_CFGS_INST               =
      ORDER_CFGS_PART_OF            =
      ORDER_CFGS_VALUE              =
      ORDER_CFGS_BLOB               =
      ORDER_CFGS_VK                 =
      ORDER_CFGS_REFINST            =
      ORDER_CCARD                   =
      ORDER_TEXT                    =
      ORDER_KEYS                    =
      EXTENSIONIN                   =
      PARTNERADDRESSES              =
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .

    Hi experts,
    I am still waiting for your response......
    Thanks in advance
    Deepanker

  • Invoice line item quantity zero

    Dear Gurus,
    In VF01 when we create invoice all my item line & its quantity is being appered as per delivery document quantity. But along with that for each line item another line item is also coming with zero quantity. I do not want that line item with zero quantity in Invoice. Please tell me the solution or any alternative on it.
    Thanks in advance sirji.
    Regards,
    Savi

    Dear,
    Kindly check ur COPY CONTROL between Del Doc. and Billing Doc. in Tcode: VTFL
    At Header Level following setting,
    Copying req.   003
    Allocation no.    E
    Ref. no.             A
    COPY ITEM NO.  activate
    At Item Level for used Item Category,
    Copying req.  004
    Data VBRK/VBRP 007
    Billing Quant.    B
    /- QUANT        **
    and retry ur process.
    Regards
    AJIT K SINGH

  • Multiple account assignment and copy of po line item quantity to x lines

    Hi,
    I am wandering if it is possible to automate the copy of the first line presented for 10pc in multiple account assignment  screen on PO line item level to 10 lines with quantity 1 in the same multiple account assignment screen. This is of course related to the second step we want to examine which is the creation of Assets for these 10 multiple account assignment lines
    Looking forward to your proposals
    Edited by: David Reynaers on May 19, 2011 5:09 PM
    Edited by: David Reynaers on May 19, 2011 5:23 PM

    Hi David,
    First keep the PO line item Qty to 1 , then select multiple account assignment the first line with QTY 1 will be defaulted
    Select the first line and choose copy just beside copy icon the new icon will appear "insert account assignment item"
    Select on right side you have two options "Insert Once" , "Insert several times" select several time system will default Pop up
    Insert number of times 9 , Now change the line item Qty. to 10
    Thanks
    Diwakar

  • Miro line item quantity and amount after miro

    Dear Forum,
    I have got the help about this subject and quite clear. Thanks for all have helped.
    Now I need to confirm 1 more part.
    Assuming in PO there are 2 scenarios where gr based iv is ticked and also not ticked, after both GR and miro done (complete the process from PO until book vendor invoice in miro), I purposely do another miro invoice type referring to these 2 PO.
    I just wonder why the item line still enabled with quantity and amount fields empty? I thought the line item should be totally grey out?
    Need advice.
    Thanks
    Rgds

    Dear Srina,
    As Std SAP practice system will populate the line item with enable mode even though MIRO fully done for said line item. But any how message will prompt if you enter amount & qty again in empty field & wanted to post the said line item as stated below;
    "Check if invoice already entered under accounting doc. no. XXXXXXXXX  2010". Probably you may refer to abapers to have user exit to control this field.
    Please view the below link for better understanding.
    Exits and Badi in Logistic Invoice Verification
    Calculate tax in MIRO
    rgds,
    nanthakumar

  • Table of Service PR line item quantity

    Hello Expert,
    I want to know the table in which the quantities are stored for Service PR. Line item service quantity table where we enter service no and quantities.
    Regards,
    Shyam

    Hi,
    I checked in table EBAn and ESLL but the service number (activity number) and service quantities are not available in this table.
    regards,
    shyam

  • Restriction of Line items

    Hi,
    How to restict the no of line items in a sales order or in a billing document.
    For examp : No one will not be able to make the sales order or the billing document with more than five line items.
    Eagerly waiting for your quick reply.
    Thanks & regards,
    Rupam.

    Hi,
    As Laxmi said, plesae maintain copy control data vbrk/vbrp as 006 then it i will serve your purpose.
    No need of  restricting sales order line items for accounting entires. U just use limiting of billing document as said by our team member. So automatically when billing is finished with 99 line items then billing split will happen and if it is more than 99 then for the rest system will create another billing document..
    So this will reslove your problem...
    Regards
    sankar

  • How to restrict vendor line items to be picked to 6 in f110 payment run?

    Hai
    how we can allow F110 programme to generate a clearing document for every 6 line items.Means if a vendor has 15 open items which are due for payment at the time of Automatic Payment Run . The System should generate 3 clearing documents. Means the split up should be 663. Means for the first 6 open items (1-6) one clearing document. For next 6 Open items (7-12) and for the last 3 Open Items(13-15) , One clearing Document to be generated.
    Kindly Advice me. Surely Iam going to reward the ponits.
    Thanks In Advance, Have A Great Day
    Akash Narayana

    1)block all doc's where count > 6 (per vendor) and do f110
    2)unlock and repeat 1)
    .. until all doc's are paid
    A.
    Message was edited by:
            Andreas Mann

  • KSB1 report - restriction on line items displayed in output

    In the standard report KSB1(Actual cost line items for  Cost center) it displays selection cancelled after 5000 data records,is there way i could get all the records displayed for the period we select.Please advice.

    Hello,
    I know, its too late to post on this thread, but I'm also facing the same issue while downloading the data from KSB1 report to my spreadsheet.
    Could you please help out, how you get rid of this issue. Thanks in advance.
    -Vishal

  • LINE ITEM QUANTITY TO RESTRICT 1

    HI
    HOW TO RESTRICT  ORDER QUANTITY ONE PER LINE ITEM

    HI,
    go to tansaction code VOV7 ANSD SELECT your item category you can find a filed called order quantity =1
    this will reslove your problem
    REward points if the answer is helpful
    REgards,
    Murali

Maybe you are looking for