User exit for  this code

Hi ..
my requirement  is the program should prompt for 3 parameters (all check marks) with the follwoing text; all check marks enabled by default
- Variables
- Key Figures
- Structures
So when users select variables then do this part in main program
test_for = 'STR'.
perform dowork using test_for.
for key figures
test_for = 'CKF'.
perform dowork using test_for.
test_for = 'SEL'.
perform dowork using test_for.
for variables
test_for = 'VAR'.
perform dowork using test_for.
please give  the code how to write that one.
thanks in advance
Madhavi

Hi Maik,
am using this quode for one tool .this tool is used for copy queries from one system another instead of transporting.its easy method.so i want to do some modifications for this code.please elaborate ur answer .will assign points.
Cheers,
Madhavi

Similar Messages

  • 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 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 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 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

  • 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 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..

  • Require help on User Exit for t-code VA31

    Hi All,
    I have a requirement of updating one of the fields in the Customer Master for selected Sold-to-party while creating or modifying a scheduling agreement.
    Is there an user exit available for doing this?
    Please help on this as early as possible.
    Thanks,
    Hema

    Exits for the tcode VA31 are
    SDTRM001  Reschedule schedule lines without a new ATP check
    V45A0001  Determine alternative materials for product selection
    V45A0002  Predefine sold-to party in sales document
    V45A0003  Collector for customer function modulpool MV45A
    V45A0004  Copy packing proposal
    V45E0001  Update the purchase order from the sales order
    V45E0002  Data transfer in procurement elements (PRreq., assembly
    V45L0001  SD component supplier processing (customer enhancements
    V45P0001  SD customer function for cross-company code sales
    V45S0001  Update sales document from configuration
    V45S0003  MRP-relevance for incomplete configuration
    V45S0004  Effectivity type in sales order
    V45W0001  SD Service Management: Forward Contract Data to Item
    V46H0001  SD Customer functions for resource-related billing
    V60F0001  SD Billing plan (customer enhancement) diff. to billing
    Regards
    - Gopi

  • User exit for Ts code WVFB

    Hello Experts,
    I want to populate cost center and to do 'k' assignment automatically when I use  ts code WVFB for Sotre Order creation.
    Which user-exit should be activate? thanks a lot in advance.
    ( the purpose is when user create a store order by transaction code WVFB , the fields of 'k' assingment and cost center don't need to be filled out, an user exit should make 'k' assignment & fill out cost center KOSTL. I just need to know this user exit).
    EXIT_SAPLWVFB_002 will be good for my problem? please advice. thanks.

    Hi
    For WVFB transaction, there is following exits.
    WPAV0001            POS upload role resolution
    WPDA0001            Function exits for POS interface (POS download)
    WPSA0001            Retail enhancements POS interface sales audit
    WPUE0001            GR Check (Correct Quantities)
    WPUE0002            POS inbound processing
    by deugging you can find exact one.
    Thanks
    Prasad

  • 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

  • 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

  • User-exits for transaction code: CORK

    Hi All,
    I want user-exit when i save data in transaction code: CORK.
    Please help this is a urgent requirement.
    your suggestions will be appreciated.
    Thanks in advance.
    Regards,
    Guru Dutt.

    Hi,
    Try this enhancement CONFPS05..
    CONFPI05 - Process order conf.: Cust. spec. enhancements when saving
    CONFPM05 - PM/SM order conf.: Cust. specific enhancements when saving
    CONFPP05 - PP order conf.: Customer specific enhancements when saving
    CONFPS05 - PS confirmation: Customer specific enhancements when saving.
    Thanks,
    Naren

  • BADI / USER-EXIT FOR T-CODE S_ALR_87013542

    Hi Experts!
    Is there a BADI or User-Exit to Modify the Commiment Amount for Report S_ALR_87013542.
    Thanks!

    What kind of type value I can use to get he Commiment for a Block PO?
    Because the type value = 21 or 22, the amount is 0.
    PS! I defined a report using TCODE GRR2, so I need the cost class.
    Edited by: damape on Jan 8, 2010 11:40 AM

  • 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.

Maybe you are looking for

  • IPhone 5S Battery Draining Unusually fast

    I got an iPhone 5S in November and for the first few months it was working fine. For the past two weeks I have noticed the battery draining unusally quickly. Like the battery drains an avg 1-2% on 5 mins of me just using the phone on Instagram. I reg

  • Can I change the first day of the week on my ipod touch

    I have a new Ipod touch, which i recently upgraded to OS 3.0. I was wondering if it is possible to set the first day of the week in Ical to Sunday instead of Saturday? Thanks

  • IPod Touch stuck in recovery mode, error message 1611 when trying to restore.

    I bought a 2nd generation ipod touch from someone on CL and it appeared to me that it just needed to be plugged into the computer and be synced with itunes. But its stuck in recovery mode. When I plug it into my computer, itunes says it sees the ipod

  • Creating an automated silent install of Acrobat using InstallShield Tuner - Part 2

    Installing Acrobat Reader and Professional (example) Reader: Msiexec.exe /i "\\apps01\applications\acrobat\reader\6.0.1\Adobe Reader 6.0.1.msi" TRANSFORMS=\\apps01\applications\acrobat\reader\6.0.1\Acrobat_Reader_6.0.1.mst" /qn+ Note: For the automat

  • IMac OS problems and Heat/Screen Issues

    At this moment in time I am running my Intel Based iMac with Solo windows Vista and no OSX, i am doing this because while i was using boot camp with windows Vista something damaged the OSX and made booting it impossible, i completely wiped the imac a