How to supress logon screen in SYSTEM_REMOTE_LOGIN when it scheduled B

Hi,
I am calling SYSTEM_REMOTE_LOGIN function module in a program which is scheduled in background. When it is executed in background it generates a screen (SAPMSYST 0040) thats why I am getting a short dump. The runtime error says that DYNPRO_SEND_IN_BACKGROUND.
How to avoid this shortdump? If so whether it through ABAP code in my program or settings?
Points will be awarded surely.
Regards
Ravisankar

Hi,
This happens if a functiuon module is called that whant's to send some "SAPGUI material" back to the caller (e.g. a Dynpro or a message popup).
The Batchjob runs in a background process (obviously under control of a background user?) thus having no chance to process such an answer.
Try to catch this exception in the calling program and/or try to find out, where the function module does such ugly things and modify this part of the module.
Is the program running in batch mode your own application? And what about the called function module?
Thanks
Vikranth

Similar Messages

  • How to supress logon screen in SYSTEM_REMOTE_LOGIN when it scheduled BKG?

    Hi,
    I am calling SYSTEM_REMOTE_LOGIN function module in a program which is scheduled in background. When it is executed in background it generates a screen (SAPMSYST  0040) thats why I am getting a short dump. The runtime error says that DYNPRO_SEND_IN_BACKGROUND.
    How to avoid this shortdump? If so whether it through ABAP code in my program or settings?
    Points will be awarded surely.
    Regards
    Ravisankar

    As far as i know it cannot be suppressed. But if this is to test the RFC connection with a system try calling a RFC function module in the destination system using
    call function "function_name" destination "destination_name".
    and then check for the return code to see if the connection works fine or not.

  • How to custumized LOGON SCREEN and DefaultFrameworkPage

    SDN,
    How to custumized LOGON SCREEN and DefaultFrameworkPage
    Regards
    Ravi

    Hi
    Logon Screen Customization 
    http://help.sap.com/saphelp_nw70/helpdata/en/43/fc3ae22adb025fe10000000a1553f7/content.htm
    Portal Logon Page
    Customizing LogOn Page:
    http://help.sap.com/saphelp_nw70/helpdata/en/43/fc3ae22adb025fe10000000a1553f7/frameset.htm
    Modifying The Logon Par(or customising the Logon Screen)
    Modifying The Logon Par(or customising the Logon Screen)
    Customizing the Logon Screens
    http://help.sap.com/saphelp_nw2004s/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 1
    Customizing the Logon User Interface of SAP Enterprise Portal
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/371e9d90-0201-0010-c39c-fd2956154ab3
    forum Thread
    /thread/840985 [original link is broken]
    Thanks

  • How to supress the screen while calling the Fm

    hi all,
    i am using  a FM HRHAP_SHOW_DOUMENT,
    i am passing the ADD_ON_APPLICATION = ALL
    MODE = N
    S_APPRAISAL_ID = my appid(50000081).
    and also start date, end date,T_NEW_APPRAISER,T_NEW_APPRAISEE,
    and when i execute this FM i am getting a new screen,
    but when i call the FM it shud not be displayed,
    is there Fm to supress the screen
    please help me to go ahead.

    Hi rukmani,
    i don't think it is possible to supress the screen by calling any other FM. as all the screens are associated wid the function module. so if u don't want that screen in that case use any other fm for the same purpose.
    regards
    saurabh

  • How to separate logon screens

    Dear Sir,
    We implement EP6.0 SP2 , we need to separtae logon screen as we are the group companies . Each company need to logon with its logon screen. However, those logon screen will access to the same EP6.0.
    Please kindly adivse .
    Thanks and best regarads,

    Hi,
    The only ways I could see are the following:
    You can choose to give them different urls or to verify their access point before displaying the screen.
    Regards, Ludovic

  • How to set Custom screen in ME21N when Payment Terms as particular value ?

    Dear ABAP Experts,
                                         I created one Custom Tab under Header level in me21n using screen exit MM06E005.
                     It's working fine. but  My requirement is, whenever  user will select Payment term as '0001' in Delivery / Invoice Tab then my Custom tab will open in ME21N t-code . My Custom tab will have different input fields which are entered manually, those values will store in Custom table(Z-table) when the user  press save button.
    So, How to do this?

    Hi,
    The ME2xN transactions reads the user settings from table ESDUS using function module ES_READ_USER_SETTINGS, and save them at the end of the transaction using function module ES_APPEND_USER_SETTINGS.
    You need to overwrite the displayed header tab number using  ES_APPEND_USER_SETTINGS just at the beginning of the transaction. I think that a godd point to do this is in the subroutine INIT_TRANSACTION of report RM_MEPO_GUI. You can do this using the enhacement framework. I have tested it and it works for me. This is the code you should insert:
    FORM init_transaction CHANGING ch_document        TYPE mepo_document
                                   ch_exit            TYPE mmpur_bool
                                   ch_requisitions    TYPE mereq_t_eban_mem
                                   ch_requisition_acc TYPE mereq_t_ebkn.
    """""""""""""""""""""""""""""$"$\SE:(1 ) Forma INIT_TRANSACTION, Inicio                                                                                D
    *$*$-Start: (1 )-----------------------------$*$*
    ENHANCEMENT 1  ZTEST.    "active version
    *Expand header------
        CALL FUNCTION 'ES_APPEND_USER_SETTINGS'
          EXPORTING
            iaction  = 'PurchaseOrder'
            ielement = 'DYN_4000-BUTTON     TOGGLE_STATE'
            iactive  = '2'.
    *Move to 2nd tab ----
        CALL FUNCTION 'ES_APPEND_USER_SETTINGS'
          EXPORTING
            iaction  = 'PurchaseOrder'
            ielement = 'HEADER-TABSTRIP     SUBVIEW_INDEX'
            iactive  = '2'.
    ENDENHANCEMENT.
    *$*$-End:   (1 )-----------------------------$*$*
      DATA: l_ebeln  TYPE ekko-ebeln,
            l_ebelp  TYPE ekpo-ebelp,

  • How to supress all screens of the FM ISU_S_WORKLIST_INSTALL?

    Hi,
    I wanted to know how to excute the FM ISU_S_WORKLIST_INSTALL in the background?
    In other words I want to supress the dialog screens which are poping one after the other.
    I tried a couple of things:
    1.I tried to call supress dialog - this could supress only the first screen but the rest are not supress.
    The first screen is 400 (which imable to supress) but the next screen 222 pops up.
    Please suggest if anybody knows how to achieve this.
    thanks in advance.

    Hi Kevin,
    the action '05' is only possible with update.
    Set x_upd_online = 'X' and it will work.
    best regards
    Sabine

  • How to set disable screen-capture-recorder when us...

    i did a skype call w/someone some months back; i don't have a webcam, but the person saw that i was on their fb page and it totally threw me off, it felt like i was stalkign that person the way he came at me with it.  some how screen sharing was on and it was showing my desktop which showed that i had fb open to this person's page.  I felt so violated, i did not want this nor did i set it up.  AT the time i had windows 7, now i have 8.1 and have forgotten how i was able to turn it off, anyone know of how i can disable this in 8.1?? 

    Hi,
    The ME2xN transactions reads the user settings from table ESDUS using function module ES_READ_USER_SETTINGS, and save them at the end of the transaction using function module ES_APPEND_USER_SETTINGS.
    You need to overwrite the displayed header tab number using  ES_APPEND_USER_SETTINGS just at the beginning of the transaction. I think that a godd point to do this is in the subroutine INIT_TRANSACTION of report RM_MEPO_GUI. You can do this using the enhacement framework. I have tested it and it works for me. This is the code you should insert:
    FORM init_transaction CHANGING ch_document        TYPE mepo_document
                                   ch_exit            TYPE mmpur_bool
                                   ch_requisitions    TYPE mereq_t_eban_mem
                                   ch_requisition_acc TYPE mereq_t_ebkn.
    """""""""""""""""""""""""""""$"$\SE:(1 ) Forma INIT_TRANSACTION, Inicio                                                                                D
    *$*$-Start: (1 )-----------------------------$*$*
    ENHANCEMENT 1  ZTEST.    "active version
    *Expand header------
        CALL FUNCTION 'ES_APPEND_USER_SETTINGS'
          EXPORTING
            iaction  = 'PurchaseOrder'
            ielement = 'DYN_4000-BUTTON     TOGGLE_STATE'
            iactive  = '2'.
    *Move to 2nd tab ----
        CALL FUNCTION 'ES_APPEND_USER_SETTINGS'
          EXPORTING
            iaction  = 'PurchaseOrder'
            ielement = 'HEADER-TABSTRIP     SUBVIEW_INDEX'
            iactive  = '2'.
    ENDENHANCEMENT.
    *$*$-End:   (1 )-----------------------------$*$*
      DATA: l_ebeln  TYPE ekko-ebeln,
            l_ebelp  TYPE ekpo-ebelp,

  • How can I stop screen going dark when playing movies with night sceans?

    When viewing a NetFlix movie, during night sceans, the screen goes dark.

    You don't.
    Usually only the free apps do this, paid versions do away with the ads.

  • How to make screen field enable when table control gives an error

    Hi,
        I had a scneario like when table control data wrong then one parameter of the screen should be enabled for the input, i knew that screen-name will not work since it will have always table control fields only when table control gives an error.
    How to make the other parameter enable when table control throws an error.
    Regards,
    Jaya

    Hi Gobi,
         Thanks for your response, but issue is - how to make other screen fields enable when there was an error in the table control data.
    For table control - lets say we will use the code as i mentioned above.i am sure that we cant write the code for field enable in between loop & endloop.
    as you said if we right outside the loop-endloop, the module wont be triggered when table control throws an error, because that statement was not there in the loop-endloop.
    please let me know if you need any more information on the issue. I hope there is alternative for this in SAP.
    Thanks
    Jaya

  • Standard Logon screen background color

    Hello,
    I have about 60 domain computers that I would like to change the Logon screen background without having to go to each computer and changing it. Is there a way to push it out through domain GPO or another more productive way.
    Also why is my logon screen background different, when I log in remotely to my workstation, then if I logged in at my desk?
    Thank you,
    Richard

    Hi,
    Meanwhile, do you mean that you want to change the default logon screen for all computers? To do this, you need to set the regsitry key
    HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Authentication/LogonUI/Background
    OEMBackground change its value from 0 to 1 We can deploy the registry to all clients via GPP\Registry
    or use GPMC.msc to enable Computer Configuration\Policies\Administrative Templates\System\Logon.
    it has the same impacts as the registry above
    Then we need to create a new image (less than 256 K) under %windir%\system32\oobe\info\backgrounds\backgrounddefault.jpg.
    This can be done via Computer Configuration\Preferences\Windows Settings\Files
    I would like to share this detailed guide with you as reference.
    https://mikecrowley.wordpress.com/2011/02/17/how-to-set-windows-7s-login-wallpaper-with-group-policies/
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Why is one of my dual screen grayed out when in full screen mode on the other?

    I just added a second monitor for an extended desktop. When I go into full screen mode on one the other greys out. Is there a way to fix this or am i stuck? thanks!!!

    No that is just the way it is. Apple still can't figure out how to do full screen apps. When you put any app into full screen mode it make a second desktop to run that app on. When that happen the second monitor, in a dual monitor setup, has nothing to do as everything is on the main monitor in different desktops.
    You'll have to just expand the app to the max window size instead of going into full screen. Then you can drag/place different apps on each monitor.

  • How to display weicome message in sap logon screen?

    Hello experts,
       how to  display message " welcome to company name" in the sap logon screen.
    while typing userid and password in the same screen (right hand side ) , i want to display welcome message.
    Pls give me the procedure.
    Moderator message: easy to find via google, system administration, not related to ABAP development, please search for available information/documentation before asking.
    locked by: Thomas Zloch on Oct 11, 2010 11:44 AM

    If you want to give an error message on some processing you can raise the message in the event at selection-screen.
    If you want to display information message also ,the same can be done in at selection screen
    In case you want to do the processing selectively like only when the execute button is pressed, then you can do the processing based on SY-UCOMM. (value will be 'ONLI' )

  • 2 logon screens when logging on to Portal

    Dear Experts,
    When I log on to our SAP Portal (EP 7.01) i get prompted for username and password (the "standard" SAP Portal logon window) when i press "connect" i get a second windows looking pop up window where i have to type in the username and password once again.
    How do I get the system to accept the logon with only the first portal logon? (i believe the second logon screen is related to the backend somehow).
    Any help will be greatly appreciated!
    Thanks!
    Kind regards,
    Soren

    Dear Vinod,
    Thank you for your reply!
    I checked the settings in dev, q/a and prod portal and the setting is as you described - basic password module - sufficient. We have deployed a new SP on dev and Q portals, I am however not sure if this triggered the "second" logon window.
    Actually right now I am not able to get the second logon window, but i was prompted this morning. Can it be a browser issue? Or can it be because we are not using SSL / httpS?
    Thanks!
    -Soren

  • How to edit "license information for multiple logon" screen

    hey gurus
    i need to know how to edit or modify the 'license information for multiple logon" screen. this screen usually pops up when a user tries for a multiple logon to sap. We have activated the parameter 'login/disable_multi_gui_login' but we would like to modify the screen in such a way that only one radio button which says 'terminate this logon' should exist. we would prefer to remove the option of 'continue with this option and end any other logon'. Now i searched but i could not find anything to implement this so i am here and i need your advice and suggestions.
    thanks in advance.
    cheers.
    nate

    hey bernhard
    many thanks for your reply..i appreciate your help. its just that its not explicitly mentioned we cant modify the screen in the note.
    Is there any other note that specifically say so?
    thanks for your time buddy.
    regards

Maybe you are looking for