<?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: passwork generation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144627#M990988</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Check this link it may help you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b824c11b-0701-0010-738f-e76dc3d29925" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b824c11b-0701-0010-738f-e76dc3d29925&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/IT_Password_reset.pdf" target="test_blank"&gt;http://download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/IT_Password_reset.pdf&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;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 05:40:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-18T05:40:38Z</dc:date>
    <item>
      <title>passwork generation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144623#M990984</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; i want to generate password based on date and time.&lt;/P&gt;&lt;P&gt;for every date and time i enter password has to be generated randomly encrypting date and time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 05:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144623#M990984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T05:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: passwork generation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144624#M990985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sai,&lt;/P&gt;&lt;P&gt;use the FM RSEC_GENERATE_PASSWORD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For generating the password the following parameters need to be passed to the Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALPHABET                                  TYPE     C                      With the help of these letters the password is generated.&lt;/P&gt;&lt;P&gt;ALPHABET_LENGTH                   TYPE      I                      The total length of the above mentioned field. This can be calculated with the                                                                                &lt;/P&gt;&lt;P&gt;help of STRLEN or can be hard coded.&lt;/P&gt;&lt;P&gt;FORCE_INIT                               TYPE     C                       CAN be left blank&lt;/P&gt;&lt;P&gt;OUTPUT_LENGTH                       TYPE     I                       SAP password are usually 8 characters in lenght. So this can be defaulted to 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using PARAMETER for inputting the 'ALPHABET' then you should use the addition LOWER CASE to take care of the Lower Case characters. Please see the code given below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZEX_PASSWORD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter: p_char(100) LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: d_password(8),&lt;/P&gt;&lt;P&gt;      d_len type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d_len = STRLEN( p_char ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSEC_GENERATE_PASSWORD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   ALPHABET              = p_char&lt;/P&gt;&lt;P&gt;   ALPHABET_LENGTH       = d_len&lt;/P&gt;&lt;P&gt;   FORCE_INIT            = ' '&lt;/P&gt;&lt;P&gt;   OUTPUT_LENGTH         = 8&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT                = d_password&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   SOME_ERROR            = 1&lt;/P&gt;&lt;P&gt;   OTHERS                = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;&lt;/P&gt;&lt;P&gt;           Write:/ d_password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 05:33:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144624#M990985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T05:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: passwork generation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144625#M990986</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;Hope this link will help you&lt;/P&gt;&lt;P&gt;&lt;A href="http://abaplovers.blogspot.com/2008/06/sap-abap-generate-password-function.html" target="test_blank"&gt;http://abaplovers.blogspot.com/2008/06/sap-abap-generate-password-function.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 05:37:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144625#M990986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T05:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: passwork generation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144626#M990987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest a reference, it is quite similar to your issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SDN - Standard Reference - PDF - Random Password Generator|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b824c11b-0701-0010-738f-e76dc3d29925]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that's usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsh Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 05:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144626#M990987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T05:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: passwork generation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144627#M990988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Check this link it may help you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b824c11b-0701-0010-738f-e76dc3d29925" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b824c11b-0701-0010-738f-e76dc3d29925&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/IT_Password_reset.pdf" target="test_blank"&gt;http://download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/IT_Password_reset.pdf&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;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 05:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passwork-generation/m-p/4144627#M990988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T05:40:38Z</dc:date>
    </item>
  </channel>
</rss>

