In the initial screen of  ME21 transaction i want a user exit

In the initial screen of  ME21 transaction i want a user exit
which can popup a message once document type is given and press enter.

hey guys try with Function exit EXIT_SAPMM06E_006
and implement ZXM06U36.
thanks guys i my self found the solution

Similar Messages

  • Supressing the initial screen of CG3Y transaction

    Hi All,
    I am calling standard transaction CG3Y from a customised report program. I want to supress the pop up screen that comes up .Please advise how it can be achieved.
    I am using a wrapper transaction of CG3Y
    Regards
    Rudra

    Dear Rudra,
    Try this
    Call Transaction 'CG3Y' and skip first screen.
    Regards,
    Vijay

  • Graying out the option INITIAL SCREEN on MFBF transaction -reg

    Hi,
    We face issues with users keep on changing their initial screen of MFBF transaction where in which they encounter issues .
    for example for doing assembly backflush , some times with out knowledge they select component back flush radio button and click on the option initial screen , then for them on MFBF component backflush only selected by default .
    with thsi background if they try for processing assembly back flush back ground sessions they encounter error and then we have to analyse and find the problem with screen of MFBF
    we would like to take out the option of initial screen setting from the users
    we could not do it through any of authorizations
    any idea how to deactivate it ?
    can it be done user wise or for the whole transaction it has to be done ?
    regards,
    madhu kiran.

    hi,
    we could not find any objects to control it through authorization
    our basis personnel confirmed it
    if any authorization controlling object is there please let us know which object to be used
    or
    which user exit we have to activate which should not give any side effects to the existing business process
    regards,
    madhu kiran.

  • Error when calling a popup window in the initial screen of an application

    Hi,
        I am calling a popup window in the Initial screen to select the variant list.
    I am getting an error reference to Null Object reference.
    Here is the Error.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Exception              CX_SY_REF_IS_INITIAL
    Date and Time          15.06.2007 10:00:16
    Short text
    Access via 'NULL' object reference not possible.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_WDR_MESSAGE_AREA===========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in
    procedure "SUPPLY_VIEW_DATA" "(METHOD)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component.
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
    "CL_WDR_MESSAGE_AREA===========CP" or "CL_WDR_MESSAGE_AREA===========CM00Q"
    "SUPPLY_VIEW_DATA"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "SUPPLY_VIEW_DATA" "(METHOD)", or its possible occurrence must be declared in
    the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    Looking for Ur valuable suggestions.
    Cheers,
    Sam

    Hi Sam,
    The correct code for creating a popup window will be:
      data lo_window_manager type ref to if_wd_window_manager.
      data lo_api_component  type ref to if_wd_component.
      data lo_window         type ref to if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->create_window(
                         window_name            = 'WINDOW_NAME'
    *                    title                  =
    *                    close_in_any_case      = abap_true
                         message_display_mode   = if_wd_window=>co_msg_display_mode_selected
    *                    close_button           = abap_true
                         button_kind            = if_wd_window=>co_buttons_okcancel
                         message_type           = if_wd_window=>co_msg_type_none
                         default_button         = if_wd_window=>co_button_ok
      lo_window->open( ).
    Hope this helps.
    Regards,
    Ram

  • Can we skip the first screen after call transaction has been performed?

    Hello Friends,
    I have written a program for INTERCATIVE REPORT .
    When i click on the link it needs to call transcation MD4C.
    I have written a BDC for calling the transaction and skipped first screen.Its working fine but the problem is that WHEN I TRY TO COME BACK TO MY REPORT OUTPUT USING(BACK OR EXIT OR CANCEL) BUTTONS THE CONTROL IS PASSING THRU THE FIRST SCREEN OF TRANSACTION MD4C and then its coming back to report output.
    Now i dont need the first screen of the MD4C to be dispalyed when i use the BUTTONS.
    That means i want to dirctly come to report output when i click (BACK OR EXIT OR CANCEL) BUTTONS.
    Hope the problem is clear.
    Is there any way?
    Please do suggest me.
    Thankx in advance,
    Sanghamitra.

    Hello everybody,
    Thanks a lot for the quick replies.
    The problem i m facing comes after the call transaction statement gets executed.
    when the statement gets executed i m able to skip first screen and goto the required screen in the transaction but WHEN I PRESS BACK BUTTON THERE it is showing the initial screen which i have skipped.I dont want this scrren to be dispalyed.When i press back it should directly take me to the report output from where i have come to this transaction.
    Hope i m clear now?
    Any suggestions.
    Regards,
    Sanghamitra.

  • Need to enhace tcode FD32 to add new screen fields on the initial screen

    Hi All,
    I am supposed to add two new screen fields on the initial screen of TCODE FD32,
    I am unable to find any screen exit for that. Is there any screen exit present for that or is there any way to do this.
    Kindly help me, solutions will be greatly rewarded.
    Thanks in advance,
    Nagaraju.

    check below
    Transaction Code - FD32                     Change Customer Credit Management                                                                               
    Exit Name           Description                                                                               
    RFDRRANZ            User exits: Accounts Receivable Information System                                                                               
    No of Exits:          1                                                                               
    Rewards if useful...............
    Minal

  • How to do screen enhancement in the selection screen of CS15 transaction

    Hi friends,
    I have a unique requirement where I have to do screen enhancement in the selection screen of CS15 transaction to get the top level material,
    Can you please tell how this could be achieved ?
    Looking forward  your valuable inputs.
    Thank You.
    Regards,
    S Sadhya

    Hi,
    This can be achieved by using user-exit. Specifically screen-exit. Check these two exits related to transaction CS15. They may be helpful to you.
    <b>
    PCSD0002      BOMs: Customer fields in item  
    PCSD0003      BOMs: Customer fields in header
    </b>
    Let me know if you need any other information.
    Regards,
    RS

  • I am running OSX 10.8.3,when i try to open iDVD i get the initial screen but when i try to choose an option all i get is 'Downloading Themes' which just continues. I have left it for over an hour?

    I am running OSX 10.8.3,when i try to open iDVD i get the initial screen but when i try to choose an option all i get is 'Downloading Themes' which just continues. I have left it for over an hour?

    Where did you get iDVD to put on your Mac?  The downloading themes are no longer available from Apple. If you copied it from a Mac that had all the themes look for the iDVD folder on that Mac which should be in the HD/Library/Applications Support folder or the Users/Home/Library/Applications Support folder.  Copy it to the HD/Library/Applications Support folder for Mt Lion.
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • My ipod is locked on the initial screen that appears black apple logo, and not respond to any button, please someone knows I do? PLEASE it is urgent

    My ipod is locked on the initial screen that appears black apple logo, and not respond to any button, please someone knows I do? PLEASE it is urgent

    Try to connect in recovery mode, shown here: iPhone and iPod touch: Unable to restore

  • I updated my first generation iPad to version 5.1.1 and won't go past the setup screen that asks if I want to use the iPad locator. I can go back but can't get any further.

    I updated my first generation iPad to version 5.1.1 and won't go past the setup screen that asks if I want to use the iPad locator. I can go back but can't get any further

    I just updated my original iPad 32 GB WiFi to iOS 5.1 about fifteen minutes ago.  But I did it with the system restore feature in iTunes.  So it wiped out everything on my iPad.  But it did work.  Then I restored an earlier backup and all went fine.  Maybe you could try backing up your iPad and then using Restore to get it back to factory settings to see what happens. 

  • I upgraded to lion. I now have the spinning wheel on the startup screen when I try to enter my user name and password. I tried shutting down and restarting, no luck

    I upgraded to lion. I now have the spinning wheel on the startup screen when I try to enter my user name and password. I tried shutting down and restarting, no luck

    Reinstalling Lion Without the Installer
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • HOW TO FIND TRANSACTION CODE BASED ON uSER eXIT.

    HI FRIENDS,
    I WOULD LIKE TO KNOW HOW WE CAN FIND OUT A TRANSACTION CODE OF AN USER EXIT.
    MY USER EXIT IS : EXIT_SAPLV60B_002 .
    PLEASE LET ME KNOW .
    THANS IN ADVANCE,
    REGARDS,
    ROBERTS.K

    FUNCTION EXIT_SAPLV60B_002.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT
    *"     VALUE(VBRK) LIKE  VBRK STRUCTURE  VBRK
    *"     REFERENCE(DOC_NUMBER) LIKE  VBRK-VBELN OPTIONAL
    *"  EXPORTING
    *"     VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT
    *"  TABLES
    *"      CVBRP STRUCTURE  VBRPVB OPTIONAL
    *"      CKOMV STRUCTURE  KOMV
      INCLUDE ZXVVFU02.
    ENDFUNCTION.
    Above is the interface of the function module stated by you, create the include zxvvfu02 by double clicking on it,
    put a break point in it and activate and in the debugging mode you can see that the structure XACCIT has EBELN i.e.
    purchase order no. assign it to the reqd field.

  • New user. Did something to get boxes around the initial screen.

    I cannot slide to unlock. There is a box around the time on my initial screen. How do I get out of this?

    You can also go to Settings>General>Accessibility Turn it off, and at the bottom set the triple click shortcut the way you want.

  • How can I change the fonts on the initial screen?

    How can I change the font and or make it bold on the initial start screen?

    Settings>General>Accessibility>Bold Text>On.

  • Completing the initial screen of VA01

    How can I use parameter ID to complete the fields with default values in VA01? The parameter ID for VA01 is AAT.

    Using SU01/ SU2 / SU3 for each individual user the parameter ID and against each parameter ID one parameter value (like for sales org you can put 1000 as value if the user is suppose to select 1000 only) is entered.
    Based on the parameter ID and parameter value when the users starts the VA01 screen the fields gets automatically filled by the default values. This is true for other transactions also. The user can change the default values flowing from Parameter ID.

Maybe you are looking for