Purchase Requistion Details

Purchase Req. Details Vendor field is mapped to Fixed Vendor field of Purchase Requisition. Any suggestion how to pass a Desired Vendor?
Kind Regards,
Leslee Schneider

Hi,
You could use exit COZF0002.
Update EBAN_ORD_CUST_CHG-FLIEF with EBAN-LIFNR (desired vendor).
-Paul

Similar Messages

  • How to configure purchase requistion in third party sale pls send me detail

    dear expert
    how to configure purchase requistion in third party sale pls send me details. waiting your valuable reply
    vicky

    you can find the details in the below links
    Re: THird party sales complete scenario
    http://wiki.sdn.sap.com/wiki/display/ERPLO/PROCEDURETOCREATETHIRDPARTY+SALES
    http://www.sap-img.com/sap-sd/process-flow-for-3rd-party-sales.htm
    Regards

  • User Exit -- To include purchase requistion/purchase order in COOIS report

    In a MTO envirnoment, trying to include purchase requistion/purchase order
    with requested delivery date information in COOIS report. Is there a
    user exit for this ?

    Hi,
    Please follow this an Example:-
    The COOIS report (Order Info System) gives the complete information regarding Production Order like header report, Operation report, Component Report, document report. 
    This document deals with the addition of extra fields in the output display of COOIS. 
    For the demo purpose, I have added the material group (MATKL) for the production order material for header report. 
    BADI Name: WORKORDER_INFOSYSTEM
    Method: TABLES_MODIFY_LAY 
    In the method TABLES_MODIFY_LAY there are many table parameters for different data display of the production order .In this scenario only the header detail structure is being extended with append structure. 
    Add the extra fields to be displayed to through append structure to IOHEADER_TAB, here MATKL. 
    In the method write the code for updating the field value. 
    DATA : BEGIN OF st_matkl,
               matkl TYPE matkl,
               END OF st_matkl.
      DATA : st_header TYPE ioheader.
      LOOP AT ct_ioheader INTO st_header.
        IF NOT st_header IS INITIAL.
          SELECT SINGLE  matkl
                 FROM mara
                 INTO st_matkl
                 WHERE matnr = st_header-matnr.
        ENDIF.
        st_header-matkl = st_matkl-matkl.
        MODIFY ct_ioheader FROM st_header.
      ENDLOOP.
    Regards,
    Ravi

  • Planned order and Purchase requistion both is generating in MRP

    Dear All,
    At the time of MRP explosion for Finished material, system is generating Planned order and purchase requistion, both,  for detailed material, (e.g. the BOM is a single level BOM). Whereas, I want to generate Purchase requistion for all. I am not getting that for which logic it generating Planned order as well as purchase requisition.
    Pl. explain.
    Thanks,
    Prasun.

    Hi Prasun
    The procurement proposal indicator dependes on the procurement type assigned in material master. If you assign prod Type F it will automatically generate PR. If the procurement type is E or X the system will generate plan order .
    This configured in Plan order type LA means it should be for in house production E.
    There are two ways of solving this. If you want always PR for FERT. Assign Proc type F in material master MRP view. It will always generate PR for that particular material.
    Or
    You can run MRP with planning mode 3 create PR in front screen.
    Regards
    J . Saravan

  • Extracting Purchase order details

    Hai All,
               I am workng on a report in which I have to display the purchase order and GRN details for a given Purchase Requisition number.
    If the PR has 5 line items and PO is made only for 2 line items, then the purchase order details for only those 2 line items should be displayed, but I am getting default purch ord data for all those 5 line items even though PO is not made for 3 line items.
    Can anyone pls help me on this....

    Hi ,
        Here goes ur solution , Only u have to use EBAN and EKBE for the purpose.The report displays item no wise details of PR with PO and GR. selection options for PR REQ or REQ Date  is used .
    types: begin of int_pr,
         banfn like eban-banfn,
         bnfpo like eban-bnfpo,
         badat like eban-badat,
         ebeln like eban-ebeln,
         bedat like eban-bedat,
         matnr like eban-matnr,
        end of int_pr.
    declaring work area.
    data: pr_wa type table of int_pr,
          pr_wa1 like line of pr_wa,
           prnum(10),prval(10),tot type n.
    types: begin of type_ekbe,
           ebeln like ekbe-ebeln,       " PO NO
           ebelp like ekbe-ebelp,        " ITEM NO IN PO
           belnr like ekbe-belnr,         " GR NO
           end of type_ekbe.
    data: itab_gr type table of type_ekbe,
          wa_gr like line of itab_gr.
    giving selection crieteria
    select-options pr_no for eban-banfn.         " for purchase requistion no.
    select-options pr_dt for eban-badat.         " for pr date
    start-of-selection.
    if pr_no is not initial.
    select banfn bnfpo badat ebeln bedat matnr into corresponding fields of table pr_wa from eban where
    banfn in pr_no and loekz ne 'x'.
    select ebeln ebelp belnr into table itab_gr from ekbe for all entries in pr_wa where ebeln = pr_wa-ebeln and ebelp = pr_wa-bnfpo.
    elseif pr_dt is not initial.
    select banfn bnfpo badat ebeln bedat matnr into corresponding fields of table pr_wa from eban where
    badat in pr_dt and loekz ne 'x' order by badat.
    select ebeln ebelp belnr into table itab_gr from ekbe for all entries in pr_wa where ebeln = pr_wa-ebeln and ebelp = pr_wa-bnfpo.
    endif.
    loop at pr_wa into pr_wa1.
    read table itab_gr into wa_gr with key ebeln = pr_wa1-ebeln  ebelp = pr_wa1-bnfpo.
    if pr_wa1-ebeln ne ' '.
    write: / sy-vline,2(10) pr_wa1-banfn color 2, sy-vline,14(12) pr_wa1-badat color 2, sy-vline, 28(9) pr_wa1-bnfpo color 2, sy-vline, 40(13) pr_wa1-matnr color 2, sy-vline, 55(16) pr_wa1-ebeln color 2, sy-vline, 74(15) pr_wa1-bedat color 2, sy-vline,
    wa_gr-belnr,sy-vline.
    else.
    write: / sy-vline,2(10) pr_wa1-banfn color 2, sy-vline,14(12) pr_wa1-badat color 2, sy-vline, 28(9) pr_wa1-bnfpo color 2, sy-vline, 40(13) pr_wa1-matnr color 2, sy-vline, 55(16) 'not processed' color 6, sy-vline, 74(15) pr_wa1-bedat color 2, sy-vline,
    wa_gr-belnr,sy-vline.
    endif.
    endloop.
    uline at /1(90).
                                 thats all u have to do for getting the required output.

  • Purchase requistion number not been generated for material shopping carts

    Dear Experts,
    I am able to create a purchase requistion for text shopping carts once it is approved. For material if i create a shopping cart then status is showing approved(activated workflow without approval) but purchase requistion number not been generated.
    It was happening suddenly...earlier i was able to generate PR for material shopping carts.
    Please advise on this
    Thanks
    Ravo

    Hi Venkatesh,
    Can you please give me the detail requirement. If you want generate a PR for catalogue items then you have to maintain the setting in SPRO_>srm->SRM SERVER->cross application basic settings-> define objects in backend systems...
    Thanks
    Ravi

  • Purchase Requistion Release Stratergy

    Hi,
    I have a situation where I need to get the details of the classification Net total in purchase Requistion for the particluar Release Stratergy and Release Group from the relevant table for raising an event manually in work flow, which I am uable to trace out.Please help in this regard for identifying the tables which holds the data of the Net value for the same.
    Thanks in Advance for your Help
    Regards,
    Krishna Mukthineni

    Hi Krishna,
    the classifications of the release strategy is best read via the API (interfaces) for the class system. To get quick results and to check, if your designed process could be working at all, you could hard-code the class' name and it's characteristics. Later on -- to be more precisely -- you should read the class name from the customizing and the characteristic definition from the class system.
    To get an example of how SAP determines the release strategy from the classification (which is kinda the other way round), you may consult the following function modules/coding sections:
    Function module ME_REL_COM_STRATEGY_EBAN
    --> Form strategie_neu
    ->-> Function module CLSC_SELECT_OBJECTS
    To see the usage of this function module within your system, you could set a break-point there and create/change a requisition in your system.
    The internal table iausp holds the values of the characteristics.
    The referenced characteristic you'll be possibly looking for is based on CEKKO-GNETW
    Best regards,
    Florin

  • Purchasing requistion dates are not reflecting in R/3

    Hi All,
    material created in R/3,here purchase requistion generated in R/3 & APO.
    Then in APO,after Rescheduling in detailed scheduling planning board new purchase requistion delievery date is not
    reflecting in R/3.
    Kindly revert back ASAP.
    Regards,
    Venkat.
    Edited by: venkat1215 on Jul 23, 2010 11:05 AM
    Edited by: venkat1215 on Jul 23, 2010 11:30 AM

    Venkat,
    You didn't answer my question.
    As a general rule of thumb, APO is much fussier about changing and synchronizing orders that were created in R/3.  If you have a choice, you should always create purchase reqs in APO (although cross-creation is supported, and can be made to work nicely if you are diligent).
    When you change an order in APO, and then publish the change to R/3, it is possible that the settings in R/3 will cause an issue with 'booking' the change.  One way to test this is to manually make the same change, but directly in R/3.  There should be no warnings or errors.
    Another thing to look at are the Application logs on both sides (SLG1) for possible failures that may give a clue.  Restrict to date and time interval where you know the proper update did not take place.
    Rgds,
    DB49

  • Purchase req details from ECC to SNC

    hi All,
    Any standard IDOC or FM to send the Purchase req details from ECC to SNC system.
    any pointers will be highly appreciated.
    thanks

    Hi SanKumar
    The purchase requisitions can be sent to SNC using the standard report RSMIPROACT for Dynamic Replenishment Scenario.
    The Purchase requistions are sent as a part of Customer firm net requirements.
    In the screen Transfer Stocks and Requirements to SAP ICH/SNC
    Set the Tab to Dynamic Replenishment.
    Then input the Plant,MRP Area, Material and Target System.
    Select the data to be sent(only for DR)
    Duely check the Purchase Requisition.
    Then the data can be seen in webui under Demand -
    Order Forecast Monitor.--Overview/Details
    Thanks
    Vinod

  • Set up purchase requistions "Closed" automatically after creation of PO

    We have following requirement
    Purchase requistions should be "Closed" automatically after creation of Purchase order. Purchase orders are created manually.
    Is there any settings or config to achieve this?
    Thanks in advance

    Hello
    The closed indicator (EBAN-EBAKZ) could only be set manually within the transaction ME52N or when converting the purchase requisition into a PO. via transaction ME21 or ME21N.                                     
    In the case you use transaction ME21 or ME21N to create the PO with reference to purchase requisition the 'closed' flag has to be set manually. In ME21 before you adopt the item, in ME21N the indicator to close the PReq in ME21N is in the delivery schedule tab of the item details at the far right end of the window.                            
    In the change requisition transaction ME52N, set the close indicator.   
    In ME57, while creating a PO with reference to a requisition, set the close indicator on the item selection screen (SAPMM06E, 0125). 
    You are able to create multiple PO's from the same requisition;  however, once the total quantity of the PReq has been assigned to PO's, your quantity of the PReq will be 0.                                  
    In other words, when you go to ME21N or ME21 and you create with reference to a previously fully assigned requisition, you will be prompted to make an entry in the quantity field, as there is  nothing left on the requisition to pull from.  This should be an alert to the user that there are no selectable quantities available for the item.  This prevents double ordering.                                                                               
    If you want to prevent the requisition to be used again, you should set the closed indicator for the item in the requisition.  The closed indicator is never set automatically.  When creating a purchase order in reference to this requisition, you should select the 'open only' flag.  If the closed indicator has been set for the requisition, you will receive a message that no data satisfying selection criteria exist
    Thanks

  • Without Purchase Requistion , Purchase Order should not be raised

    Dear All,
      Can any one tell me , How can i do the setting without purchase requisition , purchase order should not be raised.
    Regards
    Suresh

    Hi,
    1. Transcation code : OMET - Function authorization
    in that, there is one check box called REF TO PURCHASE REQUISTION under the section of possible reference object (2nd from top). Activate this check box.
    Assign this Function authorization key to the user profile.
    Now onwards, this specific user cann't create PO with out PR. 
    PR is mandatory for the PO creation for this user only. But other users can create PO, with out PR also.
    This is user level control
    2. Transcation: OMEC
    Select your document type and   note down some where filed selection key which is maintained for your document type.
    Transcation code :OMF4
    Navigation path : Spro-Materials Management-Purchasing-Purchase Order-Define Screen Layout at Document Level
    Select field selection key, which is identified in the first step and click on the details icon.
    Click on the "Reference data, item"
    set Purchase requisition as required (mandatory) entry.
    Now onwards, you cann't create PO with out PR number.
    This control is applicable for all the users. But for your document type only, which is used in the first step.
    For what are the document types used this field selection key, you can't create PO with out PR number.
    For other document types you can create PR with out PR number also.
    Regards
    KRK

  • Upload of purchase order details using LSMW

    Hi friends,
    I encountered a problem while uploading purchase order details using LSMW . in the field mapping I could not able to fine the field TCODE. as a result I could not assign the transaction code ME21. could you please suggest me a solution.
      thanks

    Hai
    Check with the following
    Select fifth Radio button then follow the bellow step
    <b>5) select radio-Button 5 and execute
       Maintain Field Mapping and Conversion Rules
       Select the Tcode and click on Rule button there you   will select constant
       and press continue button
       give Transaction Code : ME21 and press Enter</b>
    Thanks & regards
    Sreenivasulu P

  • Interactive ALV report for vendorwise purchase order details

    Hi Experts,
    I am trying to create vendor wise purchase order interactive report, if i click any of vendor detail it has to display vendor details in a popup window or if i click any of purchase details it has to display purchase order details ina popup..
    can any body explain by using function modules REUSE_ALV_POPUP_TO_SELECT and REUSE_ALV_FIELDCATALOG_MERGE...

    Check the link below will be of some use to you.
    http://www.geocities.com/mpioud/Z_REUSE_ALV_POPUP_TO_SELECT.html
    Regards,
    Murthy

  • Interactive report for vendorwise purchase order details

    Hi Experts,
      I am trying to create vendor wise purchase order interactive report, if  i click any of vendor detail it has to call display vendor screen for selected vendor or if i click any of purchase details it has to open purchase order details..
    can any body explain...

    hi arun,
    use at line-selection
    example,
    at line-selection.
    if sy-ucomm = 'PICK'.
      if wa_lifnr is not initial.
        set parameter id 'LIF' field wa_lifnr.
        set parameter id 'BUK' field wa_bukrs.
        set parameter id 'EKO' field wa_ekorg.
        call transaction 'XK03'.  endif.
      if wa_ebeln is not initial.
        set parameter id 'BES' field wa_ebeln.
        call transaction 'ME23N' and skip first screen.
      endif.
    endif.
    Regards,
    Logan

  • My old email was hacked. My old Apple ID had the password changed and now with my new Apple ID I want to delete my old account and transfer my purchases and details to my new account. How do I go about this when I cannot access my old email as it has been

    My old email was hacked and my password corrupted. Now I have a new Apple ID but cannot cancel the old ID as I no longer have access to that email address.  How do I cancel the old ID and merge my purchases and details with the new Apple ID?

    You can't merge Apple IDs.  You also can't cancel (delete) and existing ID, you can only choose to stop using it.
    If your old ID was compromised and you can no longer access it, you'll have to contact Apple for assistance.  Go to https://expresslane.apple.com ; click 'See all products and services' at the bottom of the page. In the next page click 'More Products and Services, then 'Apple ID'. In the next page select 'Other Apple ID Topics' then then 'Apple ID account Security’.

Maybe you are looking for

  • PL/SQL :ORA-04052 with Database link

    i have created a database link in my producation database as following CREATE PUBLIC DATABASE LINK <NAME> CONNECT TO <USER> IDENTIFIED BY <P/W> USING <CONNECT STRING OF TARGET DATABASE oracle version 9.0.2.8 OS : Windows 2003 EE R2 SP2 Using oracle f

  • Windows 7 blue screen locale ID: 4105

    Hi,  I have a windows 7 home premium 64 bit on a acer aspire laptop. I have been getting the blue screen error very often now. This laptop is only about a year old. after the system dumps the memory on disk and the computer restarts, i get this messa

  • Gaming properly: using a ps3 pavigator

    I have a PS3, I have a Wii, I love motion controllers for gaming. -I've tride a few different how-tos for conecting the dualstick controller to the PS3, and they don't work, I suspect the culprit has to do with getting it to pair properly. Ultimatly

  • HT4009 In-apps purchase bug

    My order number MHLWDYNH2K i only purchase once and it pop out 4 instead of 1. and my bank dont have that much amount and this is why i cannot get my purchase done. please advise me what should i do now? is it very irritating.

  • Device warranty details in LMS 3.2

    Can we maintain device warranty details in LMS 3.2 if so where it can be. Please help. Thanks in advance