How do make inactive RFC sessions timeout after user logged off?

Hi,
In SM04 we can see many sessions of type RFC belonging to users who already logged off. These sessions seem to stay allive for hours if not days.
Exapmle:
700  HAMILTONAN                                09.45.35    1  RFC                     8
700  CHUAE                                     04.08.10    1  RFC                    50
700  LIMMA                                     02.18.12    1  RFC                    45
The standard icm timeout settings are set and works fine, but for some reason these assosiated RFC sessions seem to stay logged on.
Is there any parameter maybe or any other solution anyone is aware of to make these sessions log off if inactive?

Hi,
Its basis activity but still ,
Have a look at this parameter <i><b>rdisp/keepalive_timeout</b></i> it should be set to some seconds, after which if user stays idle system will force fully logged them off...
How to Change : RZ11 -> put the parameter name -> Change ...
Hope that helps.
Regards
Mr Kapadia

Similar Messages

  • How to make browser window full screen after user logs on to EP

    Hi all,
    I've found some amazing iformation on this forum, I hope I'll get an answer to this one too.
    I would like to use the maximum avaialble desktop space to provide info to my client on logging on to the portal so that he need not scroll for any thing.
    What I would like to know is if there is any global setting possible within the portal so that once the user is authenticated and is being shown his worksets, he should see the browser window in full screen mode. In IE this is done thru the pressing of F11 key.
    Regards,
    Neeraj Sripuram

    You could set the following properties in the Framework page that is being used.
    1) Launch in New Window - Display in Separate window
    2) Window Features - fullscreen=yes
    Upon login this would open the portal page in a new window and set the window in fullscreen mode, (Well Theoretically).
    Try this out. Hope this helps.
    Pradeep.

  • Applications still run after user logged off

    Hi,
    I have a w2k8r2 Terminal server and have a problem that have eluded me for some time now.
    When a user is logged off, by either being disconnected or being inactive for a prolonged time, the user initiated programs are still running.
    To be more exact, Some times when a user is logged off I have the following situation:
    In the task manager on the users tab I cannot see the user anymore (nor in the remote desktop services manager), but in the Processes tab I can still see user initiated programs running. Furthermore I am not able to kill any of those programs, getting an
    "Access is denied" error message.
    My problem is that when the Terminal Server enters this "state" it becomes all buggy and itchy, causing loads of problems for the users that are already logged in (and for the new ones trying to log in). The only solution I have found is rebooting
    the server.
    Any solution, or further troubleshooting steps, are more than welcome. For me the next step is reinstalling which I really don't want

    1. Check any task schedular is running for application or not,
    Refer :
    http://answers.microsoft.com/en-us/windows/forum/windows_7-security/if-i-log-off-at-night-leave-computer-on-will/559eec53-1d2a-46f8-ac12-f0d4a32ab57a?msgId=b51d42b3-e727-40c0-b94e-8a01b31bf526
    2. Also update Antivirus and scan completely.
    3. Is it specific application or all the application, Which user opened in his session?
    4. If specific application is running (In this scenario Outlook is running even user logs off), Try the below Citrix forum thread.
    Refer :
    http://discussions.citrix.com/topic/301644-user-logs-off-process-outlookexe-stays-active-error-the-citrix-server-has-reached-its-concurrent-application-limit/
    5. Check and update  TCP/IP driver
    Refer : http://support.microsoft.com/kb/2465772/en-us
    6. Also cross verify Dharmesh suggestions also.
    Regards,
    Manjunath Sullad

  • Server keep running after user log-off?

    Just need confirmation...
    Does it keep running all services (mail, web, etc...) after logging off a user from macosx 10.5.4 server?

    thanks. just need to create new user and log in because current user's finder is relaunching on almost every action with it... want to try if it's problem with user or all system.

  • How to set printer margins if using a lot of printers in virtual desktops which are deleted each time users logs off

    Hello,
    i am using Firefox version 31. I have a problem with page setup margins. I need to use left
    30mm; right 10mm; top 20mm; bottom 20mm. I am using VMware floating assignemnt linked clones
    virtual desktops. After users log off - machines are deleted and users next time logs on get's brand
    new VDI's. Users gets printers to VDI using login script from Active Directory.
    Option Explicit
    Dim strPrinterUNC, objNetwork
    strPrinterUNC = "\\some_server\printer_number_1"
    Set objNetwork = CreateObject("WScript.Network")
    objNetwork.AddWindowsPrinterConnection strPrinterUNC
    WScript.Sleep (20000)
    objNetwork.SetDefaultPrinter strPrinterUNC
    Set objNetwork = Nothing
    Each user have different logon script, because they use different printers (different printer names e.g. \\some_server\printer_number_2 ; \\some_server\printer_number_3 and etc. Page setup margins in Internet Explorer are ok. But how to make Firefox page setup margins as i need? For other options i have
    used CCK2 Wizard 2.0.4 tool. It worked fine. Maybe i can put some information in C:\Program
    Files\Mozilla Firefox\defaults\pref\autoconfig.js I have some usefull data in it allready. I
    have found info that: "Setting print margins is done in the printer settings". I have a lot of
    printers, so i can not set printer margins individualy for each of them. Now mozilla shows top,
    bottom, right, left each 12.7 mm. What should i do if i have a lot of printers in enterprise
    environment?

    Firefox has a profile folder that has preferences to save this. But the config that would need to be changed is:
    print. save_print_settings = True - (default): Save the print settings after each print job
    Locking that preference: [http://kb.mozillazine.org/Locking_preferences]
    Or done manually:
    #In order to check the margins, we need to go to ''File'' > ''Page Setup''.
    #Once this is done, switch to the ''Margins & Header/Footer'' tab.
    #Check what's set there under ''Margins''.
    The following are the default values for ''Margins'':
    Check these values accordingly and change them if necessary.

  • How to set session timeout per user

    Hi,
    Ho do I set the session timeout per User in the
    Application.cfm File??
    I tried using
    <cfif SESSION.UID EQ 1>
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    sessiontimeout="#CreateTimeSpan(0,0,20,0)#">
    </cfelse>
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    sessiontimeout="#CreateTimeSpan(1,0,0,0)#">
    </cfif>
    But this didnt work because the cfapplication seems to have
    to be at the top before I call the variable SESSION.UID which
    I set on my login page..
    Someone know how to do this??
    Regards
    Martin

    Martin,
    Your code example cannot work because the "session" scope
    doesn't exist until your application scope is defined. So you have
    to handle this manually. Here's how you can get it done. First,
    define your application to the maximum sessiontimeout you want to
    have.
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    SESSIONTIMEOUT="#CreateTimeSpan(1,0,0,0)#">
    Then, I don't know how you are doing your login
    authentication but when you have authenticated the user, you need
    to define the userid and the most recent activity in the session.
    Also determine your timeout value based on the userid. See example:
    <CFIF IS_AUTHENTICATED>
    <CFSET session.user.uid = form.userid>
    <CFSET session.user.most_recent_activity = now()>
    <CFIF session.user.id eq 1>
    <CFSET session.user.timeout_mins = 20>
    <CFELSE>
    <CFSET session.user.timeout_mins = 1440>
    </CFIF>
    </CFIF>
    Now, all you have to do is check whether the user has been
    idle for too long and kill the session by purging all session
    variables. For example:
    <!--- if user id is defined, this means user is logged in
    --->
    <CFIF structKeyExists(session, "user") and
    structKeyExists(session.user, "id")>
    <!--- check if timeout has expired --->
    <CFIF datediff("n", session.user.most_recent_activity,
    now()) gt session.user.timeout_mins>
    <!--- timeout has expired, kill the session and log the
    user out --->
    <CFSET StructClear(session)>
    <!--- insert your logout code here --->
    <CFELSE>
    <!--- user hasn't timed out, so reset the most recent
    activity to now --->
    <CFSET session.user.most_recent_activity = now()>
    </CFIF>
    </CFIF>

  • How to make Adobe F.P. install after downloading installer??

    how to make Adobe F.P. install after downloading installer?? 

    Check where the file has been downloaded to, then double click the download file to start the installation process.

  • How to make the delivery cost changeable after cancellation of GR?

    Create a PO (with Delivery cost), then GR (101) , then cancel the GR (102), but the delivery cost still cannot be modified eventhough the GR has been cancelled - how to make the delivery cost changeable after cancellation of GR?

    Hi
    "You are not allowed to add new delivery costs in a purchase order once goods receipt has been carried out as these would then be proposed in the invoice verification. The related posting to the clearing account for goods receipt and invoice receipt would not then balance, if no further goods receipt took place.
    After the invoice has been received successfully, it is not possible to change the delivery costs in the order. This is because information necessary for problem-free operation is no longer available for the delivery costs that have already been posted for subsequent reversals or invoices, or the operation can no longer be done without errors.
    It is also not possible to change delivery costs for stock transfers with SD shipping after goods have been successfully issued, as this can lead to errors during cancellation."
    I think you have to delete the line item and create a new line item with revised delivery conditions..
    MRao

  • My backlight will not turn off automatically.  I have to manually turn it off and forget to sometimes and that drains my battery.  Does anyone know how to make it turn of automatically after a few seconds?

    My backlight will not turn off automatically.  I have to manually turn it off and forget to sometimes and that drains my battery.  Does anyone know how to make it turn of automatically after a few seconds?

    Use the Settings app.
    Settings > General > Auto Lock
    Is Auto Lock set to Never? Change it to less time.

  • How to close browser window after user log out

    Hi,
    Does anyone know how I can close browser window after user logs out. The scenario is when user clicks a log out button I will invalidate user session and close the browser right away in the backing bean.
    Your help would be appreciated.

    Try run this and you'll see that it runs fine with no exceptions:
    <%
         String someText = "bla bla bla";
         response.setContentType("text/plain");
         response.setHeader("Content-Disposition", "attachment;filename=message.txt");
         try {
              ServletOutputStream os = response.getOutputStream();
              os.write(someText.getBytes());
              os.flush();
              os.close();
         } catch (Exception e) {
              out.println("ERROR: " + e);
    %>It looks like that after I've closed the outputStream I can't do any more processing in the JSP. Even if I remove the setContentType and setHeader methods it still behaves this way.
    I'm starting to think that there's no way around this...??

  • Rules within sequence are not completing after user logged out.

    We have been noticing since yesterday that rules within a sequence not being completed when user logs off planning.
    A. User kicks off a sequence from planning. This sequence has 4 rules.
    B. Logged off either after launching or after waiting few minutes and logged off.
    C. Next rules do not start and we noticed session is ending from AAS.
    However user closes browser sequence completes. Yes sequence has no errors. It was working fine until last week and only change was 'NETDELAY' value. Changed from 1500 to 60000.
    Not tried from SmartView yet.
    Edited by: venuramini on Jun 22, 2009 5:40 PM
    Corrected typo in title.

    Reason for changing from 1500 to 60000 was, do not remember exactly, issue with MS Excel connectivity. We implemented long ago in dev but never updated other environments.
    As far as other HBR_MAX_WAIT_FOR_RULE and HBR_MONITOR_DELAY we have tried and did not achieve desired results.
    FYI: we are using Planning 9.3.0.1 and wanted rules running longer than 60 minutes to go in background mode. But above setting would not be useful for 9.3.0.1.
    Am I confusing you?
    More info of original issue: Business rules time-out. Planning 9.3.0.1
    Since then, we have increase web session time-out to 720 min (12 hours), in-activity session timeout to 720 min to let sequence complete even if user session timed out.
    Thanks!
    Venu

  • Preventing browser keep data information after user log out

    Is it possible to prevent browsers from remembering pages so
    they not available after user logs out and click back button pages
    with data information will be deleted?
    How to not aloud to keep it in \Local Settings\Temporary
    Internet Files
    What is the best way to do it? Is any way around this
    problem?

    Are you using 3 line just to make sure it working across
    multiple browsers?
    It looks that they doing same thing, am I right?
    I did test it on IE 6 and it looks like only
    <CFHEADER NAME="cache-control" VALUE="no-cache">
    does the trick
    and
    <CFHEADER NAME="Expires" VALUE="Mon, 06 Jan 1990 00:00:01
    GMT">
    <CFHEADER NAME="Pragma" VALUE="no-cache">
    does not make much difference.

  • Disappearing Tables in Terminal Server after reboot/log off

    After installing Crystal Report in Windows Server 2003 Terminal Server, I can stand in front of the server (as administrator) AND/OR Terminal into the machine as administrator and create reports.
    Once I log off my TS session (or reboot the machine), I can stand in front of the server (as administrator) and create reports BUT NOT Terminal into the machine as administrator and create reports.
    When I Terminal in, I select my ODBC source, log into it, then I go to add table via Data Explorer.  I see them get added, but once I close the Data explorer POOOF, the tables disappear.  I also get a "Dos error." when trying to open an already written report that uses the same (now buggy after reboot/log off) ODBC source.
    I have absolute full permissions to every single file on the server (and the data source server for that matter).  I'm thinking that the ODBC source (a MAS server) likes me for a while, especially after I do the install, but after I log back into the server via a Terminal Session, it dislikes me for some reason.  On a side note the connection tests good either way I go into the server.
    Please help.

    Hello,
    If you are using a MAS server then you may also be using a MAS ODBC Drvier? If so please contact Sage for support.
    As a quick test, try copying over the Xtreme MDB sample database and use Microsofts Access ODBC driver to see if it is a CR issue or ODBC driver issue.
    Sometimes a Repair install can fix these issues also.
    And you never said what version of Cr you are using and if any patches are installed?
    Thank you
    Don

  • How can I get the language of the user logged on using only DI API?

    Hello,
    how can I get the language of the user logged on using only DI API,
    without invoking the UI?
    Can I read the value from some table using sql?
    I could write to file the first user's connection to the language code in SAP and then use it from external program, but I do not like this solution ...
    I know only this possibility:
            '_SboCy ==> SAPbobsCOM.Company
            '_SboCys ==> SAPbobsCOM.CompanyService
            '_SboApp ==> SAPbouiCOM.Application
            CodLng Dim As String = ""
            Dim lng As SAPbobsCOM.UserLanguages _SboCy.GetBusinessObject = (BoObjectTypes.oUserLanguages)
            If lng.GetByKey (_SboApp.Language) Then
                codLng = lng.LanguageShortName
                'Etc. ..
            End If
            lng = Nothing
    Thanks

    Hi Enrico,
    The language settings are held on the user's Windows profile and not in the database. In SBO 2007A onwards there is an XML file that is created by the SBO client (previous versions stored the information in the registry). The file is called b1-current-user.xml and you'll find it in the temporary application data under the user's profile (by default this will be C:\Documents and Settings\<profile>\Local Settings\Application Data\SAP\SAP Business One for Windows XP). This XML file contains a node that looks like the following:
    <leaf kind="single" name="Language" type="String">
         <value>8</value>
    </leaf>
    where the value is the language id that should correspond to the same setting in the DI API. If your application will always run on a workstation where the SBO client is installed then you could read this XML file. Of course, this file may not exist for a particular Windows user if they have never opened the SBO client so you'd need to have a default setting.
    If you application will be installed on a workstation which doesn't have an SBO client installed on it then there is no way to tell what default language to use and you'll need to build this logic in to your own application (eg have a screen where the user can choose their preferred langauge and then store this as a config file in a similar way to how the SBO client works).
    Kind Regards,
    Owen

  • Hide portlet login after user logged-on

    Hi all,
    I've seen many post with the issue to hide a portlet but i didn't find a answer that help me.
    After user logged in, I want to hide the login portlet.
    I've tried a backing file, with the setVisible() method on the object PortletBackingContext in the preRender method but it didn't work.
    Can someone help me ? Is is something possible to hide dynamically a portlet or i must use another way to do it ?
    Thanks all for any answer.

    Use entitlements. Login to the portaladmin tool and navigate the library tab on the left column. Find the login portlet and click on it. On the right, click the entitlements tab.
    Entitle the view capability of the portlet to the "Anonymous" user role. This way, only anonymous users (users who are not logged in) will see this portlet.
    In the same way, if you have a User Info portlet that you should see only once you are logged in, entitle it to the "Authenticated" user role.

Maybe you are looking for