<?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 password in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757477#M903966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report , for that report i need to the functionality i.e.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. when the report is executed and the output is exported to local file it should be password protected.&lt;/P&gt;&lt;P&gt;the password should be the SAP user id of that user(by whom the report is exported).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; (in simple words when the user wants the output in local file, while saving the output to local file the system  should ask the SAP USER ID AND PASSWORD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 10:38:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T10:38:45Z</dc:date>
    <item>
      <title>password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757477#M903966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report , for that report i need to the functionality i.e.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. when the report is executed and the output is exported to local file it should be password protected.&lt;/P&gt;&lt;P&gt;the password should be the SAP user id of that user(by whom the report is exported).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; (in simple words when the user wants the output in local file, while saving the output to local file the system  should ask the SAP USER ID AND PASSWORD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 10:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757477#M903966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T10:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757478#M903967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi this is a simple report with the user id and password..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW TITLE title.&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;Parameters: p_name like sy-uname,&lt;/P&gt;&lt;P&gt;            p_pas like sy-uname lower case.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN skip 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 2(70) text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN '0500' STARTING AT 10 10 ending at 70 14.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_user occurs 0,&lt;/P&gt;&lt;P&gt;      name like sy-uname,&lt;/P&gt;&lt;P&gt;      password like sy-uname,&lt;/P&gt;&lt;P&gt;      end of it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'venkat'.&lt;/P&gt;&lt;P&gt;it_user-password = 'venkat'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'srinivas'.&lt;/P&gt;&lt;P&gt;it_user-password = 'srinivas'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'preethi'.&lt;/P&gt;&lt;P&gt;it_user-password = 'preethi'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'vidya'.&lt;/P&gt;&lt;P&gt;it_user-password = 'vidya'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  check screen-name eq 'P_PAS'.&lt;/P&gt;&lt;P&gt;  move: 1 to screen-invisible.&lt;/P&gt;&lt;P&gt;  modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_pas = 'venkat'.&lt;/P&gt;&lt;P&gt;write:/ 'this is working'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 10:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757478#M903967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T10:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757479#M903968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont know which user is going to use that report than how can i give the name and password in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'venkat'.&lt;/P&gt;&lt;P&gt;it_user-password = 'venkat'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_user-name = 'srinivas'.&lt;/P&gt;&lt;P&gt;it_user-password = 'srinivas'.&lt;/P&gt;&lt;P&gt;append it_user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 10:53:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757479#M903968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T10:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757480#M903969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi use the sy-uname like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;Parameters: p_name like sy-uname,&lt;/P&gt;&lt;P&gt;            p_pas like sy-uname lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  check screen-name eq 'P_PAS'.&lt;/P&gt;&lt;P&gt;  move: 1 to screen-invisible.&lt;/P&gt;&lt;P&gt;  modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_name = sy-uname.&lt;/P&gt;&lt;P&gt;write:/ 'this is working'.&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 10:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757480#M903969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T10:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757481#M903970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting the screen for asking username and password, but even though if iam not giving the name and password also its showing the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please help me , compulsory we should give username and password then only it should display the output and download to local file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757481#M903970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757482#M903971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;    Have you tried with function module SUSR_LOGIN_CHECK_RFC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First call the fm SSFH_PASSWORD_PROMPT it will give a popup window like sap user and password,and SUSR_LOGIN_CHECK_RFC fm validate the password that the user is valid one or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757482#M903971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757483#M903972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kiran sure,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually my problem is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after executing the report the output comes, while downloading to local file it should ask for SAP user id and password.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 11:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757483#M903972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T11:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757484#M903973</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;the user has already logge in the system&lt;/P&gt;&lt;P&gt;then why before writing to the local server&lt;/P&gt;&lt;P&gt;it willl again ask for the user pass...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please write your problem clearly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 12:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/3757484#M903973</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2008-04-22T12:04:45Z</dc:date>
    </item>
  </channel>
</rss>

