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

Similar Messages

  • 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

  • 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

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

  • Supressing the selection Screen

    Has anyone been successful in suppressing the selection screen that is automatically displayed when using logical database.
    I want to run a job in the background using a logical database and I do not want the user prompted for the parameters. I want to pass the parameters in the program....
    How to create that?

    You can populate the selection screen values in the internal table and call the transation using that internal table.
    CALL TRANSACTION tcod [AND SKIP FIRST SCREEN] [USING itab].
    Hope it may help you.
    Mullai

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

  • HP Omni 10, It's starting but not able to slide the screen the initial screen is locked

    With the power button it is starting.. after the screen saver lock not able to slide to get the password screen. Not sure if the touchscreen gone. do not  have keyboard.. so could not find other way to try.

    Hey , Welcome to the HP forums. Have you made any recent changes to your tablet? Did you try installing Windows 10 or run and Windows updates around the time this started? You should be able to access the Recovery Manager by turning on the tablet pressing the Volume Down and Power buttons at the same time. If the touchscreen doesn't work to select the Recovery Manager we can confirm it is a hardware issue. If it lets you then you're looking at a software issue within Windows which a system restore (accessible in the Recovery Manager) should take you back to when it was working and restore functionality. Thanks.

  • How to delete the populated data in the control screen of XK02 transaction

    In the vendor master ( XK01/2/3)  "Control screen " we have some user defined fields with data already populated into those fields. Now, the user is asking to delete the data which is already populated for a particular purchaging Organization. How to do that.
    Ur help wil be highly appreciated.

    Hello,
    If the data is like after every C5* or C6* there is an underscroll sign (_), then below code will work in start routine:
    Data: wa_source_package like line of source_package,
              itab_sp type standard table of tys_SC_1,
              a(6) type c,
              b(10) type c.
    loop at source_package into wa_source_package.
       split wa_source_package at '_' into a and b.
       if strlen( a ) = 7.
          append wa_source_package to itab_sp.
       endif.
    endloop.
    refresh source_package.
    source_package = itab_sp.
    Regards,
    Shashank

Maybe you are looking for

  • What is the best computer to get for editing?

    I currently use Avid Xpress Pro on an iMac G5. I can't run FCP on it because it doesn't have an Intel Processor. So, I want to get a new computer and was thinking of either getting a 17" MacBook Pro and connect it to an external monitor, or a Mac Pro

  • Changing column name in Line chart

    Hello All, We are BO 4.0 SP6. We are creating WEBI reports which includes charts as well. We have two columns " Current Period" and "Last Period" and using them in WEBI report and Line chart. In the table I am displaying the column name " Current per

  • File sharing on the iPad in iTunes

    From what I've read, a lot of people are having problems with the file sharing in iTunes for the iPad (under the apps tab), the problem is pervasive and goes back to last year.  I'm trying to back up all the files in the apps that support file sharin

  • Just a heads up on verizon scam

    I just wanted to give everyone a heads up that there is yet another verizon scam going around. Just got a call from (800) 888 9617 saying I have won the verizon price or whatever said I won $123 off my bill,  then to log into vzw123.com. This is not

  • Programs quit unexpectedly

    Im having a major problem with all of my programs. i'll start them up and 10-60 seconds later they'll quit. i have a power mac g3 blue and white with 352 megs of ram and im running os x 10.3.9. any clues or suggestions?