Interactive SAP GUI Application - Publish-Subscribe Model

Customers want to pay for such interactive applications: SAP GUI subscribes to external events, provides visual feedback for these events, and popups other screens related to events. And all this without user action (almost:).
From my preliminary investigations, SAP implements https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/04291088-0901-0010-ebab-ccfd2c848355">web [original link is broken] [original link is broken] but this is a reference to the standards only without any clues how this is related to SAP GUI applications. What techniques has been really and successfully used?
Sharing your experience writing interactive application will be greatly appreciated.

You can deploy both Applications and Packages using the Application Catalog.
Just make sure to target a user collection.
Deploy to users as "Avaliable" and it will show up in the Application Catalog.
Ronni Pedersen | Microsoft MVP - ConfigMgr | Blogs:
www.ronnipedersen.com/ and www.SCUG.dk/ | Twitter
@ronnipedersen

Similar Messages

  • Publish subscribe model with plsql

    Hi,
    I did not find any sample that shows how to use the publish subscribe model with plsql.
    Enqueueing is possible and know how to do it, but how can I subscribe to a topic with plsql.
    All samples I found are for Java JMS.
    Thanks
    Günther

    Hello,
    I have assumed you are using 10.2
    There are examples in
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14257/toc.htm
    about using multi-consumer queues/topics. There are demos in $ORACLE_HOME/rdbms/demo if you have installed the companion cd.
    Thanks
    Peter

  • SAP GUI Configuration for Mac OSX

    Hi Everyone,
    I work for the UW-Milwaukee University Alliance hosting center, and am having trouble trying to figure out how to create a server configuration file that can be easily distributed to all of our customers.
    I'm not really sure what files are necessary for the SAP GUI application to load our specific settings.  Obviously it has something to do with the "connections" file located at USER/LIBRARY/PREFERENCES/SAP.
    When I enter all of the connections manually through the "expert" settings, the connections will show up and work, but when I go to close the program and open it again, they're all gone.  The server list is still in the "connections" file though.
    If anyone has some insight as to how this application works, configuration-wise, any help would be appreciated.
    Thanks in advance!

    Let's separate the issues of creating appropriate configuration files and distributing the files to your Mac users.
    With respect to distributing the files:
    This is explained in the HTML documentation distributed with the JavaGui, in the "Installing Custom Templates" section of the Administration > Configuration Files page.
    After you've created "connections" and "settings" files that you want to distribute, rename them to "connections.template" and "settings.template", respectively. Then use the command
    "jar -cf ./templates.jar settings.template connections.template"
    to make a "templates.jar" file containing them. Before the JavaGui is installed, put the "templates.jar" file in the same directory as the PlatinGUI-MacOSX-710rnumber.jar file. This will produce the "connections.template" and "settings.template" in the same directory as the JavaGui application, typically "/Applications/SAP Clients/SAPGUI 7.10revnumber".
    When a user launches the JavaGui application, if he DOESN'T ALREADY HAVE "connections" and "settings" files in his <home-directory>/Library/Preferences/SAP directory, the "connections.template" and "settings.template" files will be copied to his <home-directory>/Library/Preferences/SAP directory with the names "connections" and "settings", respectively.
    With respect to creating the "connections" and "settings" files, I'm not sure why what you are doing is not working.
    Which version of the JavaGui are you using?
    I assume that after configuring the connections, you clicked the "Save" button.
    When you go to SAPGUI > Preferences > Configuration > SAP Logon is anything listed there?
    As another approach, you might want to consider using central configuration files as shown in the HTML documentation Administration > Overview on Local/Central Files page.

  • WebDynpro in HTMLControl of SAP-GUI?

    Hi,
    I want to call my WebDynpro Application from the SAP-GUI in a HTML-Control. Displaying is not the problem, but I also want to notice in SAP-GUI application (which called the WebDynpro) which button was pressed by the user in WebDynpro. Is this possible???
    In HTML and BSP there is the possibility to fire the event "sapevent".
    Best Regards
    Katharina

    Hi
      It seems something new :). But what you can do is try to capture the id of the button and set it in a context variable. Say for example if the id of the button is "Close" then you can fire a exit plug in the Window interface view of the component.
    To create a exit plug to the component
    Open your Window Interface View.
    Create a Outbound plug and define it of type "exit plug"
    Define a url parameter "Url" (It has to be exactly the way i have mentioned (Url)"). Now this url could be some empty page or something.
    This is just an idea. Let me know if that helps you in the situation. I have done it from WebDynpro to SAPGUi, but not the other way around :).
    Let me know if that helped you.
    regards
    ravi

  • Problem with Interaction between SAP GUI and BSP Applications

    Hi Folks,
    I am new to BSP and am trying to create a program to created a BSP within the SAP GUI. This is my program, I have tried to find as to what error have I made but I am not able to find out.
    I can only find a button post document in the output, but I am not able to trigger any event. Please let me know as to what is the error.

    REPORT  zbsp_iact_gui.
    SET SCREEN 100.
    *       CLASS cl_my_html_yiewer  DEFINITION
    CLASS cl_my_html_viewer DEFINITION INHERITING FROM cl_gui_html_viewer.
      PUBLIC SECTION.
        METHODS: constructor IMPORTING parent TYPE REF TO cl_gui_container.
        METHODS: on_sapevent FOR EVENT sapevent OF cl_gui_html_viewer IMPORTING action postdata.
    ENDCLASS.                    "cl_my_html_viewer  DEFINITION
    *       CLASS cl_my_html_viewer IMPLEMENTATION
    CLASS cl_my_html_viewer IMPLEMENTATION.
      METHOD constructor.
        super->constructor( parent = parent ).
        DATA: event_tab TYPE cntl_simple_events,
              event TYPE cntl_simple_event.
        event-eventid = me->m_id_sapevent.
        event-appl_event = 'X'.
        APPEND event TO event_tab.
        call method html_control->set_registered_events
            exporting
               events = event_tab.
        SET HANDLER me->on_sapevent FOR me.
      ENDMETHOD.                    "constructor
      METHOD on_sapevent.
        BREAK-POINT.
        IF action CS 'COUNTER'.
          DATA: counter TYPE string.
          READ TABLE postdata INDEX 1 INTO counter.
          SPLIT counter AT '=' INTO counter counter.
          MESSAGE counter TYPE 'I'.
        ENDIF .
      ENDMETHOD.                    "on_sapevent
    ENDCLASS.                    "cl_my_html_viewer IMPLEMENTATION
    DATA: html_viewer TYPE REF TO cl_my_html_viewer,
          html_container TYPE REF TO cl_gui_custom_container,
          fcode LIKE sy-ucomm.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'TESTHTM1'.
      IF html_viewer IS INITIAL.
        CREATE OBJECT html_container
          EXPORTING
            container_name = 'HTML'.
        CREATE OBJECT html_viewer
          EXPORTING
            parent = html_container.
        DATA: url TYPE string, urlc(2048) TYPE c.
        cl_bsp_runtime=>construct_bsp_url(
        EXPORTING in_application = 'ZBSP_IACT_GUI'
        in_page = 'Start.htm'
        IMPORTING out_abs_url = url ).
        urlc = url. " type conversion STRING to C
        CONCATENATE urlc '?SAP-CLIENT=650' INTO urlc.
        html_viewer->show_url( url = urlc ).
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE fcode.
        WHEN OTHERS.
          CALL METHOD cl_gui_cfw=>dispatch.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Edited by: Nonconformist Pagal on May 12, 2009 1:42 PM
    Edited for formatting by: Durairaj Athavan Raja on May 14, 2009 9:50 AM

  • Can anyone tell me what is "publish and subscribe model"?

    hi experts:
    can anyone tell me what is "publish and subscribe model" in detail?
    many thanks

    Publish-Subscribe Model
    Purpose
    This model defines how you publish messages to and receive messages from a well-known node. Such nodes are referred to as topics. You can use the model for:
    ·        Creating Message Producer to a Topic
    ·        Creating Message Consumer to a Topic
    ·        Managing Durable Subscriptions
    Chk this for more.
    http://help.sap.com/saphelp_nw04/helpdata/en/aa/34518672fa44c79340c1f61556443e/frameset.htm

  • SAP Gui Logon - application server shutdown

    Hi!
    I'have installed SAP Netweaver 7.0 Abap TRIAL on my Windows XP Service Pack 3.
    After lunching NSP-->Start Application Server, all is ok.
    But when i try to Logon with Sap Gui 7.10, i get this error :
    application server shutdown
    Component     DPTM
    Release                710
    Version             10
    Return Code     -17
    Counter             1
    Could you please help me?
    Thanks a lot!

    Hi!
    MaxDB seems to start correctly :
    http://www.fabiocavallo.it/sap/maxdb.jpg
    ...here comes dev_w0 :
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu May 22 19:58:50 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll) Error 126 [dlnt.c       237]
    M          Error 126 = "Impossibile trovare il modulo specificato."
    B  *** ERROR => Couldn't load library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll'
    [dbcon.c      4726]
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    95
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        3376
    M
    M  kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3376) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Thu May 22 19:58:51 2008
    M  DpShMCreate: sizeof(wp_adm)          6328     (904)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1280)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06420040, size: 4205552)
    M  DpShMCreate: allocated sys_adm at 06420040
    M  DpShMCreate: allocated wp_adm at 06421A28
    M  DpShMCreate: allocated tm_adm_list at 064232E0
    M  DpShMCreate: allocated tm_adm at 06423310
    M  DpShMCreate: allocated wp_ca_adm at 067935A0
    M  DpShMCreate: allocated appc_ca_adm at 06793A50
    M  DpShMCreate: allocated comm_adm at 06793F00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06814DB0
    M  DpShMCreate: allocated gw_adm at 06814DF0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 06814E20
    M  DpShMCreate: allocated wall_adm at 06814E28
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host PCFABIO

    M Thu May 22 19:58:52 2008
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll) Error 126 [dlnt.c       237]
    M          Error 126 = "Impossibile trovare il modulo specificato."
    B  *** ERROR => Couldn't load library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll'
    [dbcon.c      4726]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 008192) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server PCFABIO_NSP_00 on host PCFABIO (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu May 22 19:58:52 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3376) [dpnttool.c   327]
    Thanks again, Sergo!
    Regards.
    Fabio

  • MDOP 2013: App-V 5 SP2 Application Publishing and Client Interaction Guide Now Available

    Hello App-V forum users,
    Do you want to understand the details of how App-V publishes and runs applications? See
    this Springboard Series blog post, which describes the newly available App-V 5 SP2 Application Publishing and Client Interaction Guide.
    Enjoy!
    -Tony
    IT Pro Audience Manager for Web Forums

    Hello,
    I am truely confused by how you are attempting to achieve things.
    1. The Office 2013 package is only supported if deployed globally
    2. AppLocker is the way to restrict users from starting different applications
    3. Office 2013 is not supported to be published to users
    It seems you have issues with #3. Which is not supported. I am not saying it "doesn't" work, but considering you have issues with it - perhaps we can start by not doing it?
    Ok, so what do we have left;
    Per your statement, Office 2013 is published globally. Ergo, all shortcuts and applications should be available to all users.
    Is this true?
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • Requirement: Open Transaction code in SAP GUI from WD ABAP application

    Hello All,
    I have a WD ABAP application which is accessed from SAP GUI and Portal. In SAP GUI, there is report which calls the application URL.
    In the WD application, I need to call a transaction code. At this juncture, I made use of the ITS url. But,, the SSO does not work in SAP GUI.It works only in portal.
    As a solution,we identified the entry point i.e. SAP GUI or portal. Then, based on entry from SAP GUI, we tried to call the transaction code using call transaction statement. But, that replaced the wd application. We instead wanted it as a popup or atleast another session.
    Now, how do we open a transaction from WD screen in another session?
    Also, can we setany configurations in the system to make sure the SSO works for all the transactions i.e. ITS used in SAP GUI.?
    Thank you.
    Regards,
    Sharath

    Hi,
    This question gets asked many times.
    Depending on the circumstances, this can be achieved with varying degree of success
    So here is some code that might help you.
    This can (does) load a Windows GUI.
    Some things to consider.
    1. Browser settings can get in the way a bit, asking the user if they want to open a ".sap" file
    2. The user may have a SAP session open so consider adding a "/o" to the system code.
    3. The Custom variable might want to contain a [Options] section for "Re-use"
    4. The SAPLogon_ID may be required if using SSO (SNC)
    I have modified the code below, but you will get the idea.
    JS
    * Create the shortcut contents
      call function 'SWN_CREATE_SHORTCUT'
        exporting
          i_system_command        = lv_com
          i_saplogon_id           = lv_logon_id
          i_sysid                 = sy-sysid
          i_client                = sy-mandt
          i_user                  = sy-uname
          i_custom                = lv_custom
        importing
          shortcut_string         = lv_string
        exceptions
          inconsistent_parameters = 1
          others                  = 2.
    * Convert to xstring to execute....
      call method cl_http_utility=>if_http_utility~encode_utf8
        exporting
          unencoded = lv_string
        receiving
          encoded   = lv_xstring
        exceptions
          others    = 1.
    * Now call to open the shortcut.
      lv_file_name =  'mytrans.sap'.
      lv_mime = 'application/x-sapshortcut'.
      call method cl_wd_runtime_services=>attach_file_to_response
        exporting
          i_filename      = lv_file_name
          i_content       = lv_xstring
          i_mime_type     = lv_mime
          i_in_new_window = abap_true.

  • Adobe interactive form inside SAP GUI

    Friends,
    We all know that Adobe interactive forms can be called from portals and updated by the users. Is there any possibility that the Adone interactive form can be called inside SAP GUI and updated in the same manner?
    Regards,
    Sam

    Yes you can generate adobe intetractive forms as ABAP report programme outputs. There ares some standards forms available. Please search by FP*.
    Hope i understood yourr question.
    Thanks and Regards,
    Antony John Isacc.

  • Portal w/SAP GUI; Help -- Application Help causes all windows be destroyed

    Hello All -
    I have a user who has portal windows (IE) open in the portal, multiple sessions.  When he has a SAP GUI transaction in the application content area and selects the SAP GUI 'Help' --> 'Application Help' link, all the session windows are closed, and the primary goes to SAP help.
    This destroys what the user was working on. 
    My computer does not do this, even when that user is logged in on my computer.
    Any ideas?

    Hi,
    Your requirements are not 100% clear. In  your message you say you are looking for SNC between SAP GUI and SAP ABAP, but the help page you posted a link for is not related to this, but explains how to use SNC for CPIC.
    If you are looking to use SNC for authenticating users of SAP GUI to SAP ABAP, then you have a number of options. If your SAP ABAP server is on Windows then SAP have a library which can be obtained for no cost to give you basic SSO using Active Directory authentication (aka Kerberos). If your SAP application server is on Unix or Linux, then you can look on SAP EcoHub for third party SAP certified products which provide this functionality. SAP have also just launched a new product which has some functionality for SAP GUI SSO, but this is not free.
    Please let me know if you have any more questions or need clarification.
    Thanks,
    Tim

  • Generating Interactive Form in SAP GUI and saving in offline repository.

    Hi Experts
    Is it possible to generate an Interactive SAP Adobe Form and display it to a user within SAPGUI, as well as save the captured PDF form offline for later retrieval?
    We have the following requirements
    - Access an Interactive Form via SAPGUI, form containing data fetched from backend ERP (access of document cannot be via Portal)
    - Form to be saved "Offline", and to be accessible at a later point in time. Is it possible to save the PDF for later retrieval as an object inside SAP (what mechanisms are available?), or to store it in an external document repository for later retrieval?
    Any input would be appreciated.

    Hi Costa,
    As the first step, you need to create an Interface and Form through TCode SFP . After Interactive form layout designing, when you activate the object, a function module gets generated automatically. You have to call this function module from a z-program. This program is known to be the driver program. When you run this program by passing the appropriate parameters to the generated FM, it will create and download the pdf form for you.
    Check the following link for reference:
    [Driver program for ADOBE FORM;
    Thanks & Regards,
    Sanoosh

  • SAP GUI Crash and/or hung up

    We have an application that emulate the user interaction with SAP application and use SAP GUI scripting (GUI for window) from VB module to interact with SAP application and perform various operations on SAP window. The operation performed during that exercise are inputting values, search a node in tree, search a value in table, input value in a table cell, click on button, send virtual keys to sap window, interacting with context menu etc etc.. Operations that need to perform on SAP GUI are organized into 'tests" and are performed in a serial fashion. A same test (sequence of operations) can be performed any number of times on a given SAP application.
    Lately, we have seen that either SAP Gui crashes or become unresponsive at random when a set of operations (test) are being performed iteratively on SAP GUI. The same test executed correctly many times but at random iteration it become completely unresponsive and hung up.
    Although, SAP Gui hang up occurred at a random iteration but we've noticed that if there were two sap instances on the machine then this behavior is noticed much earlier and it is almost certain to get to this sate if an ECATT is running in another sap window but still not able to establish a particular pattern and some time same tests were executed correctly in all the above mentioned scenarios. However, when problem occurred, it usually happen just after the operations that have caused SAP GUI to do a server round trip like click on button or scrolling a table etc but still it was quite random and was unable to establish a pattern.
    When SAP GUI hung up then not only it becomes completely unresponsive, but it also hung up any application they tries to interact with SAP GUI scripting object.  At this point, any attempt to make any references to any scripting object or even a fresh attempt to connect to scripting object model also hung up that application. The only way out at that point is to kill SAP Gui from the task manager and once SAP Gui killed then all application that was previously hang up start to resume execution!
    SAP GUI for Window  7.1 patch 7 and path 11 are being used.
    Any help shall be greatly appreciated.

    Hi Gary,
    You could also reach a point where your backend ABAP instance Kernel version plus SAP-BASIS component will have problems with a unsupported SAP GUI.  Your W2's will leverage an Adobe Document Server, ADS, or smart form technology.  You will experience rendering issues eventually.
    It's a vicious circle of Desktop Office Integration.  With Microsoft 8.1 and Microsoft Office 2013 there were a lot correction's pushed out in SAP GUI 7.30.
    Cheers,
    Dan Mead

  • SAP GUI and Win 7 error when attaching a document

    I searched Google multiple times for an answer but didn't find one, so I'd like to bring it up in this forum.
    I start by saying that mine is a large corporation with centralized application, Windows and security configuration, so I have very little manuvering as far as changing settings.
    The problem we run into is as follows:
    some users who use a particular (Quality Assurance) module of SAP need to regularly attach documents (typically PDF format) in SAP. The typical size of an attachment is between 3-7 MB.
    Those documents are store on a network file share remote to the site. The network latency between the site and the file share location is approx. 6ms (not huge by any means). Users are running Win 7 Enterprise SP1.
    Randomly, the attachment download fails in SAP and they have to exit and log back in to SAP to resume. The attachment may fail2-3 times, and then succeed or fail permanently.
    Copying the file to a local drive (C:) and then attaching it in SAP always works.
    The users report that this was not an issue when they were using WinXP SP3 a few months back.
    Again, the problem is random in that it cannot be recreated at will but happens often enough to be more than just an inconvenience.
    the Windows event log logs the following message when the attach process fails and SAP freezes:
    The program saplogon.exe version 7300.1.2.1080 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
    Process ID: a7c
    Start Time: 01cf38c9a86d55ac
    Termination Time: 16
    Application Path: C:\Program Files\SAP\FrontEnd\SAPgui\saplogon.exe
    Report Id: 139b5ba9-a4bd-11e3-8b65-d8d3857a05c5
    I'd appreciate any input that would help resolve this issue.
    Steve

    Besides updating the patch level, the other thing you can try to get more information is turn on or increase the level of tracing within the SAPGUI.  You can do this on the workstation in SAP Logon by clicking the little button at the upper left of the window title bar, then in the drop-down choose Options.  In the new window that opens go to the Traces folder and have a look through the three different kinds of traces you can turn on.  Probably you should turn on SAP Logon Traces to the "Errors" level, and same for SAP GUI Traces (to Level 1: Errors), and under Session Traces pick the options that make sense to you (perhaps "Access Control", "Office Integration", and/or "Security"?  You might need to experiment with different options to get the right combination that doesn't overload the trace file with noise; you may not need a Session Trace at all if the error trace on the other two options reveal what's wrong).
    You can see under Session Traces what folder the trace files will go to, and open the folder from there.  By default it will be C:\Users\<username>\AppData\Local\SAP\SAP GUI\Traces.
    Best regards,
    Matt

  • JavaScript onKeyUp() not working in a BSP integrated in SAP GUI

    hi everybody.
    we want to run a bsp application in sap gui using the Javascript based WYMeditor.(http://www.wymeditor.org/) But thought this wysiwyg editor is working fine while testing in a seperate browser window it won't work while integrated in SAP GUI.
    It seems that the editor reacts with the Javascript onKeyUp() method to the user's input and that this won't work while running in SAP GUI because the keyboard events are intercepted by the SAP GUI.
    The BSP is integrated in the GUI using a cl_gui_custom_container control and its SHOW_URL method.
    We would be glad if anyone could help. Thanks in adavance!
    regards,
    Stefan

    hmm... seems that nobody have had such a problem before.
    the strange thing is that the editor works fine when the website is loaded the first time. but when any event is triggered due to the click of a button and the site is loaded again, the editor won't work. and the html-code and javascript is exactly the same!
    so what happens when the eventing (do_handle_event) of the mvc model of the bsp is triggered? i would be glad if anyone would have some ideas.
    Edited by: Stefan Tanck on Oct 31, 2008 10:22 AM

Maybe you are looking for

  • Lost decimal point after export to text file

    Dear All, I have problem which to beset me long long time. I haven't dug the cause yet. Actually, I have a program which will generate a text file in background everyday. The text file included po data which is create last day, such as po no, item, u

  • IDOC Data transfer

    Hi Experts,                   I have few questions related to IDOC Data transfer. I have two different SAP Systems S1 and S2,  S1 Creates sales order and send the data through  IDOC Type ORDERS05 to S2,  To create sales order in S1. As i know, Progra

  • "Exchange 2007 (Offline)"

    I've been reading several threads but haven't found this problem yet. I'm one of about a half dozen Mac users in a Windows environment. They updated our e-mail system to Exchange 2007 about a week before Snow Leopard came out, and after a harrowing w

  • Show URL in browser without toolbar and others

    Hello, I am new in calling URL. In a CRM transaction we have an action that must show a variable URL (loads clients data). I am using a modified version of the Reuse Library RSDEMO_HTML_VIEWER. It uses classes cl_gui_html_viewer and cl_gui_custom_con

  • Java httpservlet and php

    Hi. I'm trying to work out an interface in php for a java http servlet. But i have some problems when i try to redirect my response to the php page. Any idea how i can do this (or if i can do this)?