<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Logout SAP Automatically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481822#M225316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the program to do that task. i havent tested this yet.&lt;/P&gt;&lt;P&gt;you create this program and assign this to a background JOB to start at a particular time.To test, you can goto SE37, and TEST the function module.&lt;/P&gt;&lt;P&gt;hope this will give you some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZSRIM_TEMP8.
data : v_user type sy-uname.

 v_user = 'give user name'.      
 
CALL FUNCTION 'TH_DELETE_USER'
  EXPORTING
    USER                   = v_user
    CLIENT                 = sy-mandt
*   ONLY_POOLED_USER       = ' '
*   TID                    = -1
 EXCEPTIONS
   AUTHORITY_ERROR        = 1
   OTHERS                 = 2
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Aug 2006 14:00:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-17T14:00:25Z</dc:date>
    <item>
      <title>Logout SAP Automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481819#M225313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What setting i need to do for automatically logging out from sap after 20 minutes for a particular user. Might sounds like a basis job, however reply if u got some answers to share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 13:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481819#M225313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T13:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Logout SAP Automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481820#M225314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Customization of auto logout is done by the basis consultant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 13:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481820#M225314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T13:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Logout SAP Automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481821#M225315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign 20 min to Profile parameter rdisp/gui_auto_logout in tx RZ10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 13:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481821#M225315</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-08-17T13:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Logout SAP Automatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481822#M225316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the program to do that task. i havent tested this yet.&lt;/P&gt;&lt;P&gt;you create this program and assign this to a background JOB to start at a particular time.To test, you can goto SE37, and TEST the function module.&lt;/P&gt;&lt;P&gt;hope this will give you some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZSRIM_TEMP8.
data : v_user type sy-uname.

 v_user = 'give user name'.      
 
CALL FUNCTION 'TH_DELETE_USER'
  EXPORTING
    USER                   = v_user
    CLIENT                 = sy-mandt
*   ONLY_POOLED_USER       = ' '
*   TID                    = -1
 EXCEPTIONS
   AUTHORITY_ERROR        = 1
   OTHERS                 = 2
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 14:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logout-sap-automatically/m-p/1481822#M225316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T14:00:25Z</dc:date>
    </item>
  </channel>
</rss>

