<?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 FTTP_Scramble in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fttp-scramble/m-p/1502270#M232441</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;What is FTTP_SCRAMBLE.&lt;/P&gt;&lt;P&gt;while i am using fttp_connect and all, somebody says that i need to use FTTP_SCRAMBLE also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i don't know what it is and how it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Aug 2006 03:57:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-04T03:57:14Z</dc:date>
    <item>
      <title>FTTP_Scramble</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fttp-scramble/m-p/1502270#M232441</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;What is FTTP_SCRAMBLE.&lt;/P&gt;&lt;P&gt;while i am using fttp_connect and all, somebody says that i need to use FTTP_SCRAMBLE also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i don't know what it is and how it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 03:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fttp-scramble/m-p/1502270#M232441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T03:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: FTTP_Scramble</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fttp-scramble/m-p/1502271#M232442</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;Before you connect to the FTP Server You need to scramble the password using the function module&lt;/P&gt;&lt;P&gt;HTTP_SCRAMBLE by passing the password,password length and the key it can be any numeric value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the destination password returned from this function module  to call the  FTP_CONNECT Function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the below code Snippet, Hope it helps you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_result    TYPE STANDARD TABLE OF char120,&lt;/P&gt;&lt;P&gt;        it_paths     TYPE STANDARD TABLE OF char20,&lt;/P&gt;&lt;P&gt;        l_paths     TYPE char20,&lt;/P&gt;&lt;P&gt;        l_hdl       TYPE i,&lt;/P&gt;&lt;P&gt;        l_pwd(30)   TYPE c,&lt;/P&gt;&lt;P&gt;        l_slen      TYPE i,&lt;/P&gt;&lt;P&gt;        l_key       TYPE i VALUE 26101957,&lt;/P&gt;&lt;P&gt;        l_cmd(120)  TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  l_pwd  = p_pwd.&lt;/P&gt;&lt;P&gt;  l_slen = strlen( l_pwd ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Scrample the password&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HTTP_SCRAMBLE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      SOURCE      = l_pwd&lt;/P&gt;&lt;P&gt;      sourcelen   = l_slen&lt;/P&gt;&lt;P&gt;      key         = l_key&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      destination = l_pwd.&lt;/P&gt;&lt;P&gt;*Connect to FTP server&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'FTP_CONNECT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      user            = p_user&lt;/P&gt;&lt;P&gt;      password        = l_pwd&lt;/P&gt;&lt;P&gt;      host            = p_host&lt;/P&gt;&lt;P&gt;      rfc_destination = p_dest&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      handle          = l_hdl&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      not_connected   = 1&lt;/P&gt;&lt;P&gt;      OTHERS          = 2.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    clear l_hdl.&lt;/P&gt;&lt;P&gt;    message i261(zz) with&lt;/P&gt;&lt;P&gt;            'FTP Connect error. Download failed.'(008).&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 04:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fttp-scramble/m-p/1502271#M232442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T04:05:35Z</dc:date>
    </item>
  </channel>
</rss>

