User exit for material code based on number range

Hi viewers,
Can you please tell me the User exit to be identified for material code t based on  the number range (External or Internal)
For ex: LAFAMLP is the material code I want this material code as case sensitive .
It should take what ever case we give.
Regards
Kumar

Hi,
First goto MM01 transaction code in menu System-> status..pick the program name ,then
Goto SE38 give that program name select Attributes radio button click on Display button,
you will get one popup from the popup pick Package ...
Then now goto SMOD transaction in menu utilities(or/any one of the menu you will find (find option ))->Find this will list out all the possible exits...As follow
mga00001 material master (industry): checks and enhancements
mga00002 material master (industry): number assignment
mga00003 material master (industry and retail): number display
I think second one will help for you ,,,here you can code your requirement

Similar Messages

  • PC-WQS: User exit for material valuation

    Hello,
    Currently we use data from the purchase info records to carry out material valuation of raw materials in the cost estimate. The client would like to get this data from the contracts instead of the info records since all purchase orders get information from the contracts. The second reason is that maintenance of the info record is very cumbersome and prone to errors when creating or updating the cost/ quantity.
    My question is, has anyone used the user exit COPCP005 - User exit for material valuation (strategy U) in the valuation variant and has anyone gone after the contracts to get the purchase price?
    If yes, I would like to know how you did it.
    Thanks,
    dinesh

    Can you explain a little more where you encountered the problem?
    1. Is there a Val Strategy before the Val Strat U that is probably able to find a price for costing?
    2. Is the User Exit being triggered?
    3. Can you run CK11N in the debug mode (/h) and check if the User Exit is triggered?
    4. If all of these occur, the problem probably lies in the ABAP code... check for changes in the material number range or plant codes, or the plant-specific material status - the system does not valuate if the status does not permit it to.
    If nothing works, come back with confirmation of the above and we'll go forward from there.
    Cheers.

  • User exits for Material Master in ECC 6.0

    Hello,
    We would like to have a function for checking descriptions when we are saving a material in the material master. We are today running R/3 on release 4.6C and as I understad there are no user exits at that point for this release. We are going to do an upgrade to ECC 6. Do you know if there are more user exits for the material master for this release?
       Regards
       Ann-Sofie

    Following are the user exists available for Material master :-
    -> MGA00001
          Enhancement and addition of checks and (limited) changes to data
    -> MGA00002
         Control for the material number assignment
    -> MGA00003
         Control for the material number display
    -> MGV00001
         Distribution via ALE
    -> MGV00002
         Read customer-specific filter objects for a material

  • User-Exit for material

    Hi!
    I have to create an user-exit for a material to force a water content value to be added to it. Can anyone tell me what user-exit should I be using for it please.
    Thanks

    Actually there is a material by number 20000 which alreday has this functionality set up for it and the method (ABAP objects) for it is :
    ZCL_IM_SD_SHP_DEL_PROCESS    IF_EX_LE_SHP_DELIVERY_PROC~SAVE_DOCUMENT_PREP
    . But I am not sure if this can be used for the other material too which si 73420.
    I have never used a user-exit like this before so not aware how to use it or what to do. Can anyone explain me plz.
    Thanks

  • User Exit for Company Code verification

    Helo All.
    I have to add a validation that Company code of the sales organisation should be same as company code of the plant from where the product is sourced.
    Is there any User Exit for this?
    Thanks in advance.

    hi,
    please tell me what the T-code for this one
    Regards,
    Vijay

  • User Exit for T.Code F.50

    Hi All,
    i hvae to add new fields in the output list of T.Code F.50.
    Please let me know if there is any user exit for this.
    Thanks in advance

    hai     Sheelesh kumar,
    I am Genaralising This For U.
    It Is ver EASY Procees.
    Just Go To SE84
    Give The PRogram Name Or PAckage name In Which  F.50 is present.
    Then Click On Display.
    Then Click On Enhancements.
    Then U will Get USer Exits Aswell As BADI 's
    IF Found helpful Reward.
    Regards
    Eshwar

  • USer exit for transaction Code APPCHANGE

    I want to include a function module to trigger a workflow
    in a user exit related to program
    SAPLHRHAP_UI_DOCUMENT_REPORT (transaction Code APPCHANGE.)
    The workflow will be triggered when SAVE button  is pressed.
    Thank your for your help

    Here is a program that can be used to find user exits per transaction code.
    report z_find_user_exit no standard page heading.
    tables: tstc, tadir, modsapt, modact,
            trdir, tfdir, enlfdir, tstct.
    data : jtab like tadir occurs 0 with header line.
    data : hotspot(30).
    parameters : p_tcode like tstc-tcode obligatory.
    at line-selection.
      get cursor field hotspot.
      check hotspot(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    start-of-selection.
      perform get_data.
      perform write_list.
    *       FORM get_data                                                 *
    form get_data.
      select single * from tstc
                  where tcode eq p_tcode.
      check sy-subrc eq 0.
      select single * from tadir
                where pgmid = 'R3TR'
                  and object = 'PROG'
                  and obj_name = tstc-pgmna.
      if sy-subrc ne 0.
        select single * from trdir
                 where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir
                         where pname = tstc-pgmna.
          select single * from enlfdir
                         where funcname = tfdir-funcname.
          select single * from tadir
                         where pgmid = 'R3TR'
                           and object = 'FUGR'
                           and obj_name eq enlfdir-area.
        endif.
      endif.
      select * from tadir into table jtab
                 where pgmid = 'R3TR'
                   and object = 'SMOD'
                   and devclass = tadir-devclass.
      select single * from tstct
              where sprsl eq sy-langu
                and tcode eq p_tcode.
    endform.
    *       FORM write_list                                               *
    form write_list.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',
      20(20) p_tcode,
      45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
        2 'Exit Name',
        21 sy-vline ,
        22 'Description',
        95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt
          where sprsl = sy-langu and
          name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
          2 jtab-obj_name hotspot on,
          21 sy-vline ,
          22 modsapt-modtext,
          95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.
      endif.
    endform.
    Regards,
    Rich Heilman

  • User exit for tx code EA14

    Hello,
    I am looking for a user exit on screen EA14 (Reversal of print document). The user exit must have parameter print document number.
    Thanks for your help.
    N.

    Hello,
    Thanks a lot. I got the event ISU_SAMPLE_R502 and with the parameter I was looking also.
    N.

  • User Exit for T.Code : F110 - APP

    Hi Guru's,
    My Company is developing the interface to 3rd party system.
    For that i have to send the all payment data to customized table.
    From custom table to 3rd party system.
    So Please Suggest the Suitable User Exit for F110 - Automatic payment Program.
    The Requirement is After we run the APP System must save that data in customized table Automatically.
    The version is R/3 4.5.
    and i need to give one tab to call the other transaction.
    Please give your advise.
    Thank you very much in Advance.
    Regards,
    Veera.

    Hi,
    You can assign a custom program to your payment method in FBZP and then can populate your custom tables and can pass the data to bank from those custom tables.
    Regards,
    SDNer

  • User-exit for t-code VF11

    HI GROUP
    FIRST OF ALL THANKS TO U ALL.
    U GUYS ARE GREAT HELP.
    THIS TIME I WANT TO KNOW THE USER-EXIT FOR 'VF11'.
    I WANT TO HAVE A CHECK ON THE DATE .
    PLEASE REPLY .
    ITS A BIT URGENT.
    I WILL DEFINATELY REVERT BACK WITH REWARD POINTS.
    THANKS IN ADVANCE.

    HI GROUP
    FIRST OF ALL THANKS TO U ALL.
    U GUYS ARE GREAT HELP.
    THIS TIME I WANT TO KNOW THE USER-EXIT FOR 'VF11'.
    I HAVE A CASE THAT WHEN I AM DOING VF11(i.e INVOICE CANCELLATION) THEN I WANT TO HAVE A CHECK THAT ON THE DOCUMENT OF WHICH I AM CANCELLING THE DOCUMENT.
    MEANS THE DOCEMENT WHICH I WIL LGIVE IN THE VF11. SHOULD HAVE DATE OF THE SY-DATUM MONTH ONLY IF MY CURRENT MONTH IS 4.2006 AND MY (BILLING DOCUMENT DATE ON WHICH THAT DOCUNEBT IS CREATED WHICH I AM TAKING FOR CANCELLATION IS 3.2006 THEN IT SHOULD NOT ALLOW THE DOCEMNT TO BE SAVED)
    FOR THIS I WANT TO IMPLEMENT A EXIT.
    PLEASE HELP ME GUYS ITS VERY VERY URGENT.
    I WILL DEFINATELY REVERT BACK WITH REWARD POINTS.
    THANKS IN ADVANCE.

  • User Exit for material valuation is not called up

    Dear all,
    We want to add special logic when user process the material valuation through CK11N.
    We have also activated the project with the user exit COPCP005, changed valuation variant to "valuation price with user exit" and modified ZXCKAU08 in the component EXIT_SAPLCK21_002.
    And this special logic is correctly workd on development but we are not able to get the desired result on pre-production and production.
    Could you please guide that I check anything more?
    Thanks in advance.
    SK Roh.

    Can you explain a little more where you encountered the problem?
    1. Is there a Val Strategy before the Val Strat U that is probably able to find a price for costing?
    2. Is the User Exit being triggered?
    3. Can you run CK11N in the debug mode (/h) and check if the User Exit is triggered?
    4. If all of these occur, the problem probably lies in the ABAP code... check for changes in the material number range or plant codes, or the plant-specific material status - the system does not valuate if the status does not permit it to.
    If nothing works, come back with confirmation of the above and we'll go forward from there.
    Cheers.

  • BADI/user exit for transcation code "BP" in CRM

    Hi Experts,
    Is there a BADI / user exit that is triggered after successful saving/updating of Business Partner using transaction code "BP"?
    We want to send general infos such as partner number, Name, Birth date, etc. about the business partner being created/updated using IDoc.
    We are using CRM WinClient 4.0.
    If you know  the steps on how this requirement will be done, kindly post them.
    Thank you very much.

    I don't have any CRM system at hand, but I'm sure there are some BAdI's for this. Look in SE18 for BP or BUS, and i'm sure  you will find something.
    One suggestion though: Before going for the BadI, try and see if CRM also uses change pointers for sending Idoc's . This case you wont need any user exits / badis, an probably no programming at all.
    Transaction
    BD50: Activate Change Ptrs for Mess. Type
    BD61: Activate Change Pointers - Generally
    and use report RBDMIDOC for triggering IDoc.

  • User exit for transaction code MIGO (Goods Receipt)

    Hi Team,
    Please let me know the <b>name of the user exit</b> for adding a new field in transaction code <b>MIGO</b> (The field is Freight charges ) at header level.
    Would be suitably rewarded.
    Regards
    Badari

    hi,
    Transaction Code - MIGO                     Goods movement
    Exit Name           Description
    MBCF0002            Customer function exit: Segment text in material doc. item
    MBCF0005            Material document item for goods receipt/issue slip
    MBCF0006            Customer function for WBS element
    MBCF0007            Customer function exit: Updating a reservation
    MBCF0009            Filling the storage location field
    MBCF0010            Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0011            Read from RESB and RKPF for print list in  MB26
    MB_CF001            Customer Function Exit in the Case of Updating a Mat. Doc.
    Cheers
    Alfred

  • BADI or USER EXIT for MIGO when changing order number

    Hi experts, I'm looking for a BADI or USER EXIT in Tx. MIGO that is triggered after pushing ENTER when you change the order number. What I need to do is to propose the movement type depending on the order data. Thanks.

    Not sure but you can try in BADi MB_DOCUMENT_BADI menthod:
    MB_DOCUMENT_UPDATE

  • User exit for PO & Code

    Hi all
    How to block PO modification right in following scnerio
    1)We have level 1-2-3 PO release strategy
    Level 1 will create PO & modify the PO before his release. After Level 1 release he can not modify the PO.This PO will modify by level2 & after his release level2 lso not modify the same
    is their any user exit after release flag?
    How to write code  for same ?

    I called a badi which does
    method if_ex_extension_us_taxes~mm_data_for_tax_system.
      export i_drseg    from ti_drseg    to memory id 'TAB_DRSEG'.
      export i_bseg     from ti_bseg     to memory id 'TAB_BSEG'.
      export i_bseg_mat from ti_bseg_mat to memory id 'TAB_BSEG_MAT'.
    endmethod.
    I guess i_drseg or i_bseg should have PO related data..

Maybe you are looking for

  • Does its has to be CREDIT card only to have an apple account?

    I don't have a credit card but I really want to buy stuff, music n all, but all i have is an debit acc. can I jus buy ! of those cards prepaid for Itunes?

  • Import Word document

    I am trying to import a Word document. Created new HTML document with design view open. When I pull down on File/Import the only options are "XML into Template" and "Tabular Data." If I go with either, I am unable to import a Word doc. There is no op

  • Dock Crashes Every 15 Seconds

    The dock (/System/Library/CoreServices/Dock.app) under my account is crashing every time it attempts to start. Aside from the obvious problems, the system is very slow since Launchd attempts to restart the dock every 15 seconds. When the dock crashes

  • MASTER_IDOC_DISTRIBUTE and BD64

    Hello all, My goal is to call the function MASTER_IDOC_DISTRIBUTE in a specific outbound idoc function module, WITHOUT giving the receiver system/port/msgcode informations I would like it to determine automatically using the customizing from BD64, as

  • Safari very slow to launch after reboot

    I am running Safari 6.02.  I've noticed that if I reboot my MBP, the first time I launch Safari it takes almost 2 1/2 minutes before the first blank page appears.  Firefox, on the other hand, takes about 30 seconds.  Subsequent launces of Safari take