How to ME_SEARCH_SOURCE_OF_SUPPLY in EXIT_SAPMLEREQ_005 of MEREQ001

Hi Experts,
I have to do validations in ME51N on save.
For this I have found the user exit MEREQ001 and its components EXIT_SAPMLEREQ_005 where I can make the validations.
in one of the validation I have to use FM ME_SEARCH_SOURCE_OFSUPPLY by passing material, plant and vendor given by user in ME51N and if the FM retruns a potential souce of supply.
Here how can I pass these three values to get the source of supply.
PLease suggest.
Regards
Kishore

Issue is resolved.

Similar Messages

  • How to update a custom field in declarative workflow with VS 2013

    Hello,
    How to update a custom field in declarative workflow with VS 2013
    any help would be appreciated!!!!!
    Thanks regards, Vignesh.

    Dear all,
    I'm using 4.6C right now, i already implement BADI MEREQ001, but this only valid
    for creating PR via ME51N.
    I found an EXIT_SAPLEBND_001 and tried to implement it,
    but i got another difficulties since how i transfer CEBAN structure to EBAN structure.
    thanks very much.
    Regards,
    Billy

  • How to read data from a function exit

    Hi friends,
    I have a requirement, where in i am creating a screen exit for ME51N.I am using MEREQ001 enhancement for this.It is working fine, but i am to get data in to this so as to write any code.For that i am using the function exit EXIT_SAPLMEREQ_001 in that same enhancement(thought of doing export and import).
    But the data is declared in this way..
    REFERENCE(IM_REQ_ITEM) TYPE REF TO IF_PURCHASE_REQUISITION_ITEM
    so now it is having a method GET_DATA in which i have all the parameters required.
    can anyone please tell me how to read this data...
    Regards,
    Thoufique.

    thats ok friends..i got the solution.
    Regards,
    Thoufique

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • ME54N :How to block/disable/remove the "PO" indicator

    Hi,
    In the PR release screen (T code: ME54N) we want to block / disable the  "PO"  indicator in other purchase requisition icon (Shift + F5)
    How this can be done?
    Regards,
    Sumit

    Hi
    check this
    Enhancement
    MEREQ001 Customers' Own Data in Purchase Requisition with help of ABAP consultant
    or Take a help of ABAPER for stander program changes If possible
    but why you want block / disable the "PO " indicator in other purchase requisition icon ?
    Regards
    Kailas Ugale

  • User exit   MEREQ001 for me51n

    hi all,
    I need to add extra fields at item level in me51n.Can anybody plz let me knw  as how to implement this using  MEREQ001 .
    thnx& rgds.

    Hi,
    You add your customer fields, which should be saved in the database, to 
    the include CI_EBANDB (in table EBAN). You can also add customer fields 
    that you want to use during the program run to the include CI_EBANMEM   
    (in structure MEREQ_ITEM) These fields are not stored in database table 
    EBAN.                                                                   
    Hope this helps you

  • MEREQ001-Valuation price change

    Hi All,
    I need to do an enhancement using MEREQ001.
    while executing me51n, the system fetches valuation price automatically for the material but in my case i need to fetch price from the latest PO. for this purpose which function exit do i use and how do i proceed. kindly reply.
    thanks

    Hi kavitha,
    Check the exits from the below Enhancement:
    SAPMM06E.
    Thanks.
    Note:Reward Points if you find useful.

  • How to enhance /PBS/ME53N

    We have added new tab in ME53N using the Enhancement MEREQ001 . How to enhance the /PBS/ME53N to display same tab. If any body know the solution  please share.

    If you have a PBS partner contact them. If the company has a direct contract with PBS you can contact PBS over the Hotline Mail : [email protected] . They need the company name, System release  and they also need to know if this is SAP standard enhancement or one that you have built yourself. A screen shot as to which Tab you need and where it is located in the SAP original ME53N is also helpful.

  • Implementing MEREQ001 - instantiating issue

    Hi
    While implementing exit MEREQ001. in Exit_SAPLMEREQ_003, I have written:
    if not IM_REQ_ITEM is initial.
       l_mereq_item = IM_REQ_ITEM->get_data( ).
    endif.
    I am not getting any line item data. When I debugged, this method is in include - LMEREQF10, where there is a line:
    READ TABLE my_data_input_buffer INTO ls_buffer WITH KEY req = me.
    At the time of debugging I see that there is no data in table (my_data_input_buffer) and req is empty......
    Can anyone give some Idea???
    how will req get 'me' and rest of the data??
    Thanks in advance.

    Hi,
    Please go thro the following code:
    DATA :   req_ref         TYPE REF TO if_purchase_requisition,
                 req_items     TYPE mmpur_requisition_items,
                 req_item       TYPE mmpur_requisition_item,
                 req_it_data   TYPE mereq_item.
        CALL METHOD im_req_item->get_requisition
          RECEIVING
            re_requisition = req_ref.
        IF req_ref IS BOUND.
          CALL METHOD req_ref->get_items
            RECEIVING
              re_items = req_items.
          IF req_items IS NOT INITIAL.
            LOOP AT req_items INTO req_item.
              IF req_item-item IS BOUND.
    * Getting the Item Data
                CALL METHOD req_item-item->get_data
                  RECEIVING
                    re_data = req_it_data.
                MOVE eban-zzmaktl     TO req_it_data-zzmaktl.
                MOVE eban-zzno        TO req_it_data-zzno.
                MOVE eban-zztext1     TO req_it_data-zztext1.
                MOVE eban-zztext2     TO req_it_data-zztext2.
                MOVE eban-zztext3     TO req_it_data-zztext3.
                MOVE eban-zzrc4       TO req_it_data-zzrc4.
                MOVE eban-zzpc5       TO req_it_data-zzpc5.
                MOVE eban-zzisep      TO req_it_data-zzisep.
                MOVE eban-zzdsd       TO req_it_data-zzdsd.
                MOVE eban-zzres       TO req_it_data-zzres.
                MOVE eban-zzother     TO req_it_data-zzother.
                MOVE eban-zzgur_war   TO req_it_data-zzgur_war.
                MOVE eban-zzpbg       TO req_it_data-zzpbg.
                MOVE eban-zzinsp      TO req_it_data-zzinsp.
                MOVE eban-zzqre       TO req_it_data-zzqre.
                MOVE eban-zzcp_fx     TO req_it_data-zzcp_fx.
                MOVE eban-zzversion   TO req_it_data-zzversion.
    *           Move all the custom screen fields.
                CALL METHOD req_item-item->set_data
                  EXPORTING
                    im_data = req_it_data.
              ENDIF.
            ENDLOOP.
          ENDIF.
        ENDIF.
    Regards,
    RamaniN

  • ABAP  MM: Tcode ME21N u2013 How to check PO Actual Cost (Including Taxes)

    In ME21N, I am implementing an enhancement using a new CUSTOMER DATA tab. I want to check the total Gross amount of PO when I am in the CUSTOMER DATA TAB. PO is not saved yet. I can see the gross value in CONDITIONS tab.
    How I can find the total gross amount. In which structure it is stored.
    Please help.

    Hi,
    Not sure to understand very well what you're requirement.
    Have you tried enhancement: MEREQ001
    User Exit: EXIT_SAPMM06E_006
    Regards,
    Gilberto Li

  • Dynpro exit ampl. MEREQ001

    Hi all
    I have a custom field in dynpro exit SAPLXM02 111 of ampliament MEREQ001
    My problem: I have a custom field in this dynpro, if i  choose some value in matchcode the other custom field must put input = 0.
    how do it? thanks all.
    rewards for all

    Hello Fabrizio,
    let's say you have the fields ZZ_OWN1  and ZZ_OWN2.
    At  PBO you would store the value of ZZ_OWN1 to a programm field ZZ_OWN1_OLD.
    At  PAI you would have:
    CHAIN.                                                    
       FIELD: ZZ_OWN1.
       FIELD: ZZ_OWN2.                                            
        MODULE RESET_ZZ_OWN2.
      ENDCHAIN. 
    In that module reset_zz_own2 you could simply ask, if ZZ_OWN1 has change and reset ZZ_OWN2.
    Regards
    Wolfgang

  • MEREQ001 - EXIT_SAPLMEREQ_010

    Hi all,
    While executing the enhancement MEREQ001 in the production it went into dump stating that funtion module EXIT_SAPLMEREQ_010  does not exist in function group XM02.
    ( there is no code used in this FM.The required code is in another fm EXIT_SAPLMEREQ_005 and there is no problem with that  )
    how do i include the function mod in a standard function group.Moreover in development the FM exists in the function group XM02 and hence does not go into a dump.has anyone come across this type of issue ?. pls help to resolve this issue
    thanks.

    Hi,
    Check the function group to see if the EXIT_SAPLMEREQ_010 is in the function group. If not check and/or raise a oss.
    Cheers.
    Reward if useful.

  • How do I use Edge Web Fonts with Muse?

    How do I use Edge Web Fonts with Muse - is it an update to load, a stand alone, how does it interface with Muse? I've updated to CC but have no info on this.

    Hello,
    Is there a reason why you want to use Edge Web Fonts with Adobe Muse?
    Assuming you wish to improve typography of your web pages, you should know that Muse is fully integrated with Typekit. This allows you to access and apply over 500 web fonts from within Muse. Here's how you do it:
    Select a text component within Muse, and click the Text drop-down.
    Select Add Web Fonts option, to pop-open the Add Web Fonts dialog.
    Browse and apply fonts per your design needs.
    Muse also allows you to create paragraph styles that you can save and apply to chunks of text, a la InDesign. Watch this video for more information: http://tv.adobe.com/watch/muse-feature-tour/using-typekit-with-adobe-muse/
    Also take a look at these help files to see if they help you:
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-1.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-2.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-3.html
    Hope this helps!
    Regards,
    Suhas Yogin

  • How can multiple family members use one account?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

  • How can different family members in one household ...

    Hi
    I want to subscribe to a skype number for my daughter and I will be paying for it. How can this be done?  I went ahead and purchased another number today. Will she need to set up a totally new account or will she be under my account using a different number?
    Thank you in advance,
    peacejourney

    MaxL does not have commands to alter an outline directly, except the reset command which can delete all dimensions but not members selectively. The best you could do would be to run a rules file (import dimensions) using a file that contains the members you want to keepload rule for the dimension. As typical the warning is to test this first before you do it on a production database

Maybe you are looking for

  • Hard drive crash...want to restore play counts from ipod.

    My hard drive crashed and obviously I lost all of my iTunes library stuff.  I have all of my song files on an external hard drive so that is not the issue.  What I want is to restore my library including play counts and all of that.  My ipod touch is

  • Baby spit up on iPhone

    I was playing some white noise for my daughter with my phone when she suddenly spit up everywhere. She got some in the headphone jack on the phone, and the white noise immediately stopped even though the app said it was still going. I cleaned the hol

  • Function module to change date format

    hi is there any function module to change date format from 20080318 to 18.03.2008

  • In UCM, How to setup Security Group based conversion of PS files?

    Hello, everyone. Some of my PS Format files need converted to PDF format, some do not. So, I created group 1 and group 2 in the security group. And installed gs8.54 and PDFc components. The present result (situation) is all the PS format files are co

  • Migrate Oracle/dev 2000 to SQL Server 2000

    We are in the process of doing a case study for moving some of our very small Oracle databases with Dev 2000 front ends to MS Sql Server 2000. I know the Migration Workbench is a tool for moving non-Oracle database sources like Informix and Sql Serve