<?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: Module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913847#M1147004</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note my understanding is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you want the user to enter the user ID and Password first time and if it these details are correct then he can go to next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there are not correct , then you dont want the user to enter the details again &lt;STRONG&gt;Am i Correct&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;if he enters wrong details make the &lt;STRONG&gt;USER_ID and PASSWORD&lt;/STRONG&gt; grey mode&lt;/P&gt;&lt;P&gt;if so Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI.&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;field : user_id, password.&lt;/P&gt;&lt;P&gt;module check_user_id on request.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in program.&lt;/P&gt;&lt;P&gt;module check_user_id.&lt;/P&gt;&lt;P&gt;if not user_id is initial and not password is initial.&lt;/P&gt;&lt;P&gt;select the details from dbtable and check the sy-subrc.&lt;/P&gt;&lt;P&gt;if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;entry_wrong = 'X'. declare &lt;STRONG&gt;entry_wrong&lt;/STRONG&gt; in top include&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;call screen next_screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if entry_wrong.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'USER_ID' or&lt;/P&gt;&lt;P&gt;screen-name = 'PASSWORD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Dec 2008 06:13:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-16T06:13:37Z</dc:date>
    <item>
      <title>Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913845#M1147002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use an informative subject in future&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing module pool pgm. i put two fields ( user name and password) from DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Username and Password it will allow to enter into the next screen,but restrict it by not allowing the user entering with the multiple same user name and password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is performed it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 16, 2008 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913845#M1147002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913846#M1147003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do like this.. Take any variable and add 1 to it in the PBO of the next screen when user goes to next screen. And give a check condition on the PBO of the first screen like if Var = 0. give a error message accordingly and restrict it to enter on to the next screen.&lt;/P&gt;&lt;P&gt;reset the value of the var when the user leaves the next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Mudit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:05:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913846#M1147003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913847#M1147004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note my understanding is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you want the user to enter the user ID and Password first time and if it these details are correct then he can go to next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there are not correct , then you dont want the user to enter the details again &lt;STRONG&gt;Am i Correct&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;if he enters wrong details make the &lt;STRONG&gt;USER_ID and PASSWORD&lt;/STRONG&gt; grey mode&lt;/P&gt;&lt;P&gt;if so Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI.&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;field : user_id, password.&lt;/P&gt;&lt;P&gt;module check_user_id on request.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in program.&lt;/P&gt;&lt;P&gt;module check_user_id.&lt;/P&gt;&lt;P&gt;if not user_id is initial and not password is initial.&lt;/P&gt;&lt;P&gt;select the details from dbtable and check the sy-subrc.&lt;/P&gt;&lt;P&gt;if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;entry_wrong = 'X'. declare &lt;STRONG&gt;entry_wrong&lt;/STRONG&gt; in top include&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;call screen next_screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if entry_wrong.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'USER_ID' or&lt;/P&gt;&lt;P&gt;screen-name = 'PASSWORD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913847#M1147004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913848#M1147005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note my understanding is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you want the user to enter the user ID and Password first time and if it these details are correct then he can go to next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there are not correct , then you dont want the user to enter the details again &lt;STRONG&gt;Am i Correct&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;if he enters wrong details make the &lt;STRONG&gt;USER_ID and PASSWORD&lt;/STRONG&gt; grey mode&lt;/P&gt;&lt;P&gt;if so Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI.&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;field : user_id, password.&lt;/P&gt;&lt;P&gt;module check_user_id on request.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in program.&lt;/P&gt;&lt;P&gt;module check_user_id.&lt;/P&gt;&lt;P&gt;if not user_id is initial and not password is initial.&lt;/P&gt;&lt;P&gt;select the details from dbtable and check the sy-subrc.&lt;/P&gt;&lt;P&gt;if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;entry_wrong = 'X'. declare &lt;STRONG&gt;entry_wrong&lt;/STRONG&gt; in top include&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;call screen next_screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if entry_wrong.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'USER_ID' or&lt;/P&gt;&lt;P&gt;screen-name = 'PASSWORD'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913848#M1147005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913849#M1147006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its could not process about below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module check_user_id on &lt;STRONG&gt;request.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is change it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913849#M1147006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913850#M1147007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just change the variable names in your program and check it.if you have any problem &lt;STRONG&gt;Please specify your Problem Very clearly&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913850#M1147007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913851#M1147008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some error below it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select username password from &amp;lt;tablename&amp;gt; &lt;STRONG&gt;and check the sy-subrc&lt;/STRONG&gt;.--&amp;gt;Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is change it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913851#M1147008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913852#M1147009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not get solved!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz can u help me update it!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 06:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913852#M1147009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T06:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913853#M1147010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;tables dbtab.&lt;/P&gt;&lt;P&gt; Select single * from dbtab where userid = user_id and password = password.&lt;/P&gt;&lt;P&gt;if not sy-subrc is initial.&lt;/P&gt;&lt;P&gt;entry_wrong = 'X'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;call screen 'NEW_SCREE'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this is clear&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 07:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913853#M1147010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T07:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913854#M1147011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i said??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;username and password allowed into the next screen once only.. Donot allow multiple same username and password. i need that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 07:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913854#M1147011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T07:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913855#M1147012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  INput:User name And Password..
if any one type it has to update in a table... if any one modify the password that also have to be updated

to create password field , check the invisible checkbox in field attribute.
create ztable to save the user name and password.

when 'UPDA'.
ipass-zuname = zpassword-zuname.
ipass-zpassword = zpassword-zpassword.
modify zpassword from ipass.
when 'MODI'.
ipass-zuname = zpassword-zuname.
ipass-zpassword = zpassword-zpassword.
modify zpassword from ipass.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Krishna...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 09:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913855#M1147012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913856#M1147013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one person works his Username and password are allowed to access the next screen only but its restrict it. second person knows one person's username and password but second person donot allow to access one person's same username and password.. can u understand..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how is performed it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 09:52:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913856#M1147013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T09:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913857#M1147014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please use an informative subject in future&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 09:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913857#M1147014</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-12-16T09:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913858#M1147015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you mean you want to restrict multiple logons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so for this you need to call the system function 'ThUsrInfo'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please refer to this link which will be very helpful:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/z24.htm" target="test_blank"&gt;http://www.kabai.com/abaps/z24.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 07:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913858#M1147015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T07:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913859#M1147016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Hope I have understod ur question properly, Try something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables DBTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single *&lt;/P&gt;&lt;P&gt;from DBTAB into ITAB where userid = P_USERID&lt;/P&gt;&lt;P&gt;                           password = P_PSWD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now PUT A CHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If P_USERID = ITAB-userid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message 'USER EXISTS already'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What ever ur Condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can Also use AT SELECTION-SCREEN event to perform this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 08:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913859#M1147016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T08:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913860#M1147017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh ,&lt;/P&gt;&lt;P&gt; What I understand of your problem is that&lt;/P&gt;&lt;P&gt;suppose a user A has logged in the system and user B wants to log in the system with userid and password of user A then you want to restrict user B from not entering the system .&lt;/P&gt;&lt;P&gt;You can do it in 2 ways :&lt;/P&gt;&lt;P&gt;I take that u have database table say zuser from where ur gettinh user id &amp;amp; password &lt;/P&gt;&lt;P&gt;Method 1 :&lt;/P&gt;&lt;P&gt;You make another column in Zuser which has datatype C and once the user logs in put the value to that user as 'X' and as soon as user logs out clear the field against his name in database .&lt;/P&gt;&lt;P&gt; So querry goes as &lt;/P&gt;&lt;P&gt;select * from zuser&lt;/P&gt;&lt;P&gt;where userid = sy-uname&lt;/P&gt;&lt;P&gt;and password = &amp;lt;password&amp;gt; &lt;/P&gt;&lt;P&gt;and &amp;lt;new_column&amp;gt; = ' ' .&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0 .&lt;/P&gt;&lt;P&gt;Throw Error Message .&lt;/P&gt;&lt;P&gt;endif . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method2:&lt;/P&gt;&lt;P&gt;Make a record level data base lock which can help u out .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Sahil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 08:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913860#M1147017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T08:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913861#M1147018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 09:54:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4913861#M1147018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T09:54:33Z</dc:date>
    </item>
  </channel>
</rss>

