<?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: Encrypt. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790240#M340020</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okay like u want to achieve this for encrypting but it has to be stored somewhere so i thought this  FM might be handy ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u need to develop a sequence like in ASCII format so that it has to be decoded when needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;never tried it but can change the sequence of ascii value 65 to some other value and store it where in all the change  for the range remains same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see if this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 09:49:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-11T09:49:58Z</dc:date>
    <item>
      <title>Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790236#M340016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii Everybody,&lt;/P&gt;&lt;P&gt;I want to encrypt the following code. How can i do it?? can anybody give me a code that encrypts the following code into bytes,characters and spl characters,so that my encryption is strong and tough 2 decrypt.&lt;/P&gt;&lt;P&gt;The below code is just a sample code. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZTST.&lt;/P&gt;&lt;P&gt;Parameters: rd1 RADIOBUTTON group g1 default 'X' user-command ch ,&lt;/P&gt;&lt;P&gt;rd2 RADIOBUTTON group g1 ,&lt;/P&gt;&lt;P&gt;rd3 RADIOBUTTON group g1 ,&lt;/P&gt;&lt;P&gt;kishan1(10) type c modif id ID1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;check sy-ucomm = 'CH'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN output.&lt;/P&gt;&lt;P&gt;IF rd1 = 'X' or rd2 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ID1' .&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;ENDIF.&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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF RD3 = 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ID1' .&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&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;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 09:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790236#M340016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T09:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790237#M340017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data enpwd(32) type c.
parameter pwd like enpwd .

******** Encrypting *******************
CALL FUNCTION 'FIEB_PASSWORD_ENCRYPT'
     EXPORTING
          IM_DECRYPTED_PASSWORD = pwd
    IMPORTING
         EX_ENCRYPTED_PASSWORD = enpwd
          .
******** Decrypting *******************
CALL FUNCTION 'FIEB_PASSWORD_DECRYPT'
     EXPORTING
          IM_ENCRYPTED_PASSWORD = enpwd
    IMPORTING
         EX_DECRYPTED_PASSWORD = pwd
          .

********* Output **********************
write:/ 'Encrypt data ', enpwd,
      / 'Decrypt data ', pwd.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 09:37:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790237#M340017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T09:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790238#M340018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BY encryption, what do you want to achieve?&lt;/P&gt;&lt;P&gt;If you want your code to be hidden , there is a way to hide it. Search the forum with the search string 'HIde abap code'.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 09:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790238#M340018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T09:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790239#M340019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiiii Vijay. &lt;/P&gt;&lt;P&gt;Thanks for ur reply. but i dont want to use any function modules or tables for this purpose. the reason being if the user comes to know that i have used function module to encrypt he can use dat to decrypt as well !!! which is not the purpose i want to achieve. and i have to do this in version &amp;lt; 4.7.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 09:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790239#M340019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T09:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790240#M340020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okay like u want to achieve this for encrypting but it has to be stored somewhere so i thought this  FM might be handy ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u need to develop a sequence like in ASCII format so that it has to be decoded when needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;never tried it but can change the sequence of ascii value 65 to some other value and store it where in all the change  for the range remains same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see if this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 09:49:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790240#M340020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T09:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790241#M340021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you vijay:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt/m-p/1790241#M340021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:44:50Z</dc:date>
    </item>
  </channel>
</rss>

