To enable filtering the Purchase Orders based on Purchasing Group in Issue

Hi All,
We are facing one issue
Currently we are working with Extended Classic Scenario with SRM 5.0 and support pack 11
If the buyer uses Issue PO transaction in SRM, there are POs from all the buyers.
There is no filter to allow the buyer to display only POs relevant for his/her Purchasing group.
To enable filtering the Purchase Orders based on Purchasing Group in Issue Purchase Order transction, we found one
OSS note : 1162884 - BBP_PPF: Purchasing group as search criteria for PO
But we found that this oss note is not applicable for our system version
Could you please help me to resolve this issue by any suggestion or by any other oss note?
Thanks
Snehal

Hi Snehal,
There is a easy way to do that.
Go to buyer role in PFCG transaction and look for profile and go inside profile ...look for your transaction...
for Process PO  transaction -  BBP_PD_PO and you have field BBP_PURGRP...using which you can restrict it on purchasing group..
You may have to copy same role and create new roles based on purchasing group..
I feel that basis or Security and Authorization team can help you in this matter.
Regards,Nishant

Similar Messages

  • Purchase order based on Purchase requisition

    Hello,
    Can someone tell me how can create a Purchase Order based on Purchase Requisition in transaction ME21N. In ME21 it is all right but in ME21N where is the option?
                    Best Regards
                             João Fernandes

    Hello Joao,
    When you open purchase order creation transaction (ME21N), you will find button "Document overview" click on that, it will open one column on the left side of the screen, click on colurful tree icon and it will display dropdown list from here select the Purchase requisition. This will take you to report for purchase requisiton so give your criteria and execute. You will get all open purchase requisition so just double click (or drag it to cart) on any purchase requisition it will copy in purchase order screen.
    or simply, input the purchase requisition number at item level.
    Hope this helps.
    Regards
    Arif Mansuri

  • Splitting Purchase Order based on Loading Group.

    Hi,
    My client is a fashion retailer. They have two Loading Groups, General Merchendise that comes in cartons and Hung garments that com hung on hangers.
    PO`s are created for every Vendor by Follow-on processing of allocation or by replenishment run.
    It is desired to split our Purchase Orders based on loading group.  So that there is a separate PO for General Merchendise and Hung Garments. These can then be handled separately during GR and furthur processing.
    Would like to know how to configure this.
    Thanks
    Barry

    You need to Define Two PO document types one for General Merchendise and other for Hung garments
    and use BADI  ME_PROCESS_PO_CUST  and incorporate the Logic that
    for PO Type General Merchendise the Loading Group of Hung garments Not allowed and Similarly
    for PO type Hung garments the Loading group of General Merchendise not allowed ..

  • Designing a BADI to create purchase order based on purchase requistion

    Hi..
    i ve to design a badi such tat whenever an order is placed it shld create a purchase order based on the purchase requsition..
    its like a user exit thru a BADI.
    theres somethg called a shoppg cart ... thru tat when we enter.... it creates a purchase requisition and without purchase order.... delivers it

    Hi,
        U can use the BAPI 'BAPI_PO_CREATE1' to create the purchase requisition.

  • Purchase orders based on sales orders.

    Hello Experts!
    I am using MRP in order to create purchase orders based on my sales orders, thats the easy part. My problem is that i need to create a report matching the sales orders with the corresponding purchased orders created through the MRP wizard.
    Where can i find such a link between POR1 and RDR1? is there a way I can obtain such report?
    Thanks in advance.
    Best Regards.
    Javier.

    Hi Rakesh, thanks for your reply. Well i was trying to use the POR1.BaseType and POR1.BaseEntry in order to match them with RDR1.ObjType and RDR1.DocEntry, but POR1.BaseType and POR1.BaseEntry have NULL as their value.
    I thought creating orders using MRP was supossed to set the corresponding values to those fields. Is there any other way i can link a purchase order created via the MRP wizard to the base sales order?.
    Best regards.

  • Difference between Goods receipt based IV / Purchase order based IV ?

    Hallow all !!!
    Can anybody please explain the difference between GR based invoice verification and Purchase Order based invoice verification in brief ?
    Thanks in advance !

    Hi,
    PO-based invoice verification  
    In PO-based invoice verification, items are settled with reference to the purchase order. Settlement can be carried out with respect to all items, irrespective of whether or not deliveries have yet been received.
    GR-based invoice verification
    In GR-based invoice verification you can effect settlement with regard to each GRs relating to a purchase order separately. In the PO history, each invoice item can be assigned to precisely one GRs.
    for more follow the links
    http://www.sap-hefte.de/download/dateien/1067/083_leseprobe.pdf
    http://www.finance.utoronto.ca/fast/qrg/purch/ir/pocreate.htm
    Regards,
    Biju K
    Edited by: Bijay Kumar Barik on Apr 16, 2008 8:41 AM
    Edited by: Bijay Kumar Barik on Apr 16, 2008 2:23 PM

  • Purchase order based on Sales order

    Hi,
    I try to create Purchase order based on Sales order.
    The error message :
    "Base document card and target document card do not match"
    My code:
    oPurOrder.Lines.BaseEntry=oSalesOrder.DocEntry
    oPurOrder.Lines.BaseLine=oSalesOrder.Lines.Linenum
    oPurOrder.Lines.BaseType=17
    Could you help me please ?
    Tks.
    Laetitia

    Hi,
    Looking at your code I will check how you fill the fields in the oPurOrder object because the code you copied is only for the document lines and the error refers to the document itself (maybe you forgot to assign the cardcode property).
    If you are basing the document, a good and reliable method is to export the base to a xml file and load the target using this file. This way you garantee that all the info of the document is copied. After that you could use your code to update the info you want to change the same way you pasted it in your post.
    Hope it helps,
    -M

  • Created purchase order based in drafts

    I need help, I want to create purchase order based in drafts.
    Has somebody any sample in SDK??
    Thanks.

    Hi Santiago,
    Please see your Help Filesprovided with the SDK:
    DI-API > Reference > Overview > Objects > Documents. Below on that page you'll find a nice link to the sample below. Replace the <i>vDrafts.DocObjectCode = oInvoices</i> with order and you're set.
    Hope it helps,
    Rowdy
    <b>Code (VB from the Help File)</b>
    Sub AddInvoice_Click()
        Dim RetVal As Long
        Dim ErrCode As Long
        Dim ErrMsg As String
        'Create the Documents object
        Dim vDrafts As SAPbobsCOM.Documents
        Set vDrafts = vCmp.GetBusinessObject(oDrafts)
        'Set values to the fields
        vDrafts.DocObjectCode = oInvoices
        vDrafts.CardCode = "BP234"
        vDrafts.HandWritten = tNO
        vDrafts.DocDate = "21/8/2003"
        vDrafts.DocTotal = 264.6
        'Invoice Lines - Set values to the first line
        vDrafts.Lines.ItemCode = "A00023"
        vDrafts.Lines.ItemDescription = "Banana"
        vDrafts.Lines.Quantity = 50
        'Invoice Lines - Set values to the second line
        vDrafts.Lines.Add
        vDrafts.Lines.ItemCode = " A00033"
        vDrafts.Lines.ItemDescription = "Orange"
        vDrafts.Lines.Quantity = 1
        'Add the Invoice
        RetVal = vDrafts.Add
       'Check the result
        If RetVal <> 0 Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    End Sub

  • User based authorization to create Purchase Orders out of Purchase Req.?

    Hello,
    I have the following requiment for my client:
    User based authorization to create Purchase Orders out of Purchase Req.?
    I am told the same can be achieved using same standard menu path in IMG/Customizing.
    Please advise with the menu path and detials, Usefull answers will be rewarded.
    Thanks

    Using OMET Function Authorization, you can restrict users to create Purchase orders without Purchase Reqn.
    Using OMET trxn code Create one Function Authorixation Called pr and in General Parameters tab Select the Field Selection and in Possible reference Objects Tab Mark the With ref to Prs check box and save.
    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.
    From Next time whenever you try to create with out referring PR it will not allow you to Save PO.
    Regards,
    Ashok

  • SDK-DI - Add purchase order based on sales order through DI-API

    Today it is only possible to add a purchase order based on a sales order though the UI. This option should also be supported in the DI-API.

    hi,
    try removing the double quotes for basetype, baseline, baseentry.
    if it doesn't solve the problem
    make sure that you are assigning the docentry only but not the docnum of the sales order to the purchase order lines' baseentry.
    rgds,laks.

  • Incorrect sort order of rows in Purchase Order based on Sales Order

    Hello Experts.
    I have this problem on SAP B1 8.81 PL 04:
    I create a Purchase Order based on a Sales Order with 10 item rows, ticking the purchase order box in the logistic tab.
    The sort order of rows is different between PO and SO.
    I need the same order of SO on PO.
    Is there something I can do or it's a problem of this patch?
    I saw the Sap Note nr. 824822 but it's related to SAP B1 version 2004 A...
    Regards
    Silvia Reggiani
    Edited by: Silvia Reggiani on Oct 11, 2011 12:26 PM

    Hi,
    Are you able to reproduce the issue in the DEMO Database on the 8.81 PL04?
    Also, have you checked the issue in the latest patch of the 8.81?
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Sales order based on purchased order

    Hi,
    How can do a sales order based on a purchase order? I will see all the document workflow on the purchase order history?
            Thanks in advance...
                  Best Regards
                         João Fernandes

    Hello Fernandes,
         I don't think there would be a process where in we place a purchase order to our vendors and then create a sales order based on it for a customer.. Its not at all a common business process..
    Generally we will purchase if required, if we have any sales order, for which we don't have enough stock or doesn't manufacture those products; but the vise versa may not happen in general.
               And even SAP doesn't support that, you can never see the Sales order in the Purchase order history.
       We can create the Sales order based on the purchase order that was placed by the customer .
    Please confirm your business requirements, and let us know to help you in a better way.
    Regards,
    Ajai
    Don't forget to reward points if helpful.

  • HOW WE FIND OUT OPEN PURCHASE ORDER AND CLOSED PURCHASE IN THE TABLE?

    HI,
    PLZZ HELP ME.
    what are fields names for open purchase order and closed purchase order
    thanks

    Hi param,
    Go to mseg table, pass the purchase order number and purchase order item. if the mseg-menge = ekpo-menge for the corresponding purchase order then consider the purchase order is close, else it is still open. even check if the entries are not there for corresponding purchase order in mseg table then also it is open.
    select mblnr zeile matnr menge from mseg into it_mseg where ebeln = it_ekko-ebeln
    and    ebelp = it_ekpo-ebeln.
    if sy-subrc <> 0.
    then consider the purchase order is open.
    This is the first case.
    even u can consider like this
    if sy-subrc = 0.
    if it_ekpo-menge > it_mseg-menge.
    then also the purchase order is open.
    Regards,
    Santosh Kumar M.
    Award points if it is useful.

  • How to enable/disable the input fields based on the data entered/user action in the web dynpro abap?

    How to enable/disable the input fields based on the data entered in the web dynpro application abap?  If the user enters data in one input field then only the next input field should be enabled else it should be in disabled state. Please guide.

    Hi,
    Try this code.
    First create a attribute with the name readonly of type wdy_boolean and bind it read_only property of input field of which is you want to enable or disable.
    Next go to Init method.
    Set the readonly value as 'X'.
    DATA lo_el_context TYPE REF TO if_wd_context_element.
         DATA ls_context TYPE wd_this->element_context.
         DATA lv_visible TYPE wd_this->element_context-visible.
    *   get element via lead selection
         lo_el_context = wd_context->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_context IS INITIAL.
         ENDIF.
    *   @TODO fill attribute
    *   lv_visible = 1.
    *   set single attribute
         lo_el_context->set_attribute(
           name =  `READONLY`
           value = 'X').
    After that Go to the Action  ENTER.
    First read the input field ( first input field, which is value entered field) , next give a condition
    if input value is not initial  then set the readonly value is '  '.
    DATA lo_nd_input TYPE REF TO if_wd_context_node.
         DATA lo_el_input TYPE REF TO if_wd_context_element.
         DATA ls_input TYPE wd_this->element_input.
         DATA lv_vbeln TYPE wd_this->element_input-vbeln.
    *   navigate from <CONTEXT> to <INPUT> via lead selection
         lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    *   @TODO handle non existant child
    *   IF lo_nd_input IS INITIAL.
    *   ENDIF.
    *   get element via lead selection
         lo_el_input = lo_nd_input->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_input IS INITIAL.
         ENDIF.
    *   get single attribute
         lo_el_input->get_attribute(
           EXPORTING
             name =  `VBELN`
           IMPORTING
             value = lv_vbeln ).
    if lv_vbeln IS not INITIAL.
        DATA lo_el_context TYPE REF TO if_wd_context_element.
        DATA ls_context TYPE wd_this->element_context.
        DATA lv_visible TYPE wd_this->element_context-visible.
    *  get element via lead selection
        lo_el_context = wd_context->get_element( ).
    *  @TODO handle not set lead selection
        IF lo_el_context IS INITIAL.
        ENDIF.
    *  @TODO fill attribute
    *  lv_visible = 1.
    *  set single attribute
        lo_el_context->set_attribute(
          name =  `READONLY`
          value = ' ' ).

  • Retrieving Purchase orders based on Sales Organization

    Hi,
    Can anyone let me know how to retrieve Purchase orders based on Sales organization ( Input) , please
    Thank you .
    Regards,
    Ry

    hi ,
    SD.
    VBAK - sales document header
    VBAP - Sales document line item
    VBEP - Sales document schedule lines
    VBUK - Sales document header status
    VBUP - Sales document line item status
    VBFA - Sales document document flow
    LIKP - Delivery header
    LIPS - Delivery line item
    VBRK - billing document header
    VBRP - Billing document line item
    regards,
    venkat.

Maybe you are looking for

  • In BAPI_PO_CREATE - Error- Purchase Order No. is not importing

    Hi, I have a Report for PO creation - Where records get entered from Excel. FM - ALSM_EXCEL_TO_INTERNAL_TABLE, BAPI_PO_CREATE Problem - Excel has app. 100 similar records out of them 7 to 8 records are giving Error.                                  

  • Beginner - setting up MySQL on OS X Server 10.5.4

    I would like to know what I need to do so if I run the program "MySQL Administrator" on my OS X 10.5 server or run it from another mac on my network - how I can get it to connect to my OS X 10.5 MySQL server. I did the normal first steps: Opened the

  • HT4623 Why can't I have IOS 6 on my iPad?

    I understand that it can only have IOS 5.1, but there are apps that demand IOS6 (and they don't require a camera).

  • What camcorder works best with iMovie (and ATV)?

    Sooner or later I will buy a HD camcorder to replace my SD MiniDV camera. I know that iMovie has serious problems with interlaced material. So I guess I should buy one that shoots progressive. But what else should I keep in mind? I shall edit the foo

  • CRM 2007 CTI

    I’ve completed the steps below….. 1 . Maintained telephone number for the calling business partner. 2 . Defined CMS Profile(Communication Management Software Profile) 3. Then defined CMS System in T.Code CRMM_IC_MCM_CCADM 4 . Then defined HTTP Connec