<?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: How to load a web into table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548873#M1074244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i do it in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF TY_,&lt;/P&gt;&lt;P&gt;          LINE(132),&lt;/P&gt;&lt;P&gt;        END   OF TY_.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  DATA: HEAD_RES TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: BODY_RES TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: HEAD_REQ TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: BODY_REQ TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  DATA: URI(128).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  URI = 'http://www....'.     -&amp;gt; Your www-address&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HTTP_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ABSOLUTE_URI          = URI&lt;/P&gt;&lt;P&gt;      RFC_DESTINATION       = 'SAPHTTP' "s. THTTP PräsenServer&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     RFC_DESTINATION       = 'SAPHTTPA' "s. THTTP AppliServer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      BLANKSTOCRLF          = 'Y'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      RESPONSE_ENTITY_BODY  = BODY_RES&lt;/P&gt;&lt;P&gt;      RESPONSE_HEADERS      = HEAD_RES&lt;/P&gt;&lt;P&gt;      REQUEST_ENTITY_BODY   = BODY_REQ&lt;/P&gt;&lt;P&gt;      REQUEST_HEADERS       = HEAD_REQ&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CONNECT_FAILED        = 1&lt;/P&gt;&lt;P&gt;      TIMEOUT               = 2&lt;/P&gt;&lt;P&gt;      INTERNAL_ERROR        = 3&lt;/P&gt;&lt;P&gt;      TCPIP_ERROR           = 4&lt;/P&gt;&lt;P&gt;      DATA_ERROR            = 5&lt;/P&gt;&lt;P&gt;      SYSTEM_FAILURE        = 6&lt;/P&gt;&lt;P&gt;      COMMUNICATION_FAILURE = 7&lt;/P&gt;&lt;P&gt;      OTHERS                = 8.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Sep 2008 09:16:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-23T09:16:09Z</dc:date>
    <item>
      <title>How to load a web into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548872#M1074243</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 generated HTML page to make a demand in one server. This page returns me another page which I can see perfectly in the GUI browser if I execute this code.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD HTML_EXPLAIN-&amp;gt;LOAD_DATA
   IMPORTING
    ASSIGNED_URL = URL_DOC
   CHANGING
    DATA_TABLE = HTML.

  CALL METHOD HTML_EXPLAIN-&amp;gt;SHOW_URL
   EXPORTING
    URL = URL_DOC.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is I need put the information displayed in the browser in one internal table, but I don't know how to achieve this. Any help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 09:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548872#M1074243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T09:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a web into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548873#M1074244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i do it in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF TY_,&lt;/P&gt;&lt;P&gt;          LINE(132),&lt;/P&gt;&lt;P&gt;        END   OF TY_.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  DATA: HEAD_RES TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: BODY_RES TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: HEAD_REQ TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;  DATA: BODY_REQ TYPE TABLE OF TY_.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  DATA: URI(128).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  URI = 'http://www....'.     -&amp;gt; Your www-address&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HTTP_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ABSOLUTE_URI          = URI&lt;/P&gt;&lt;P&gt;      RFC_DESTINATION       = 'SAPHTTP' "s. THTTP PräsenServer&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     RFC_DESTINATION       = 'SAPHTTPA' "s. THTTP AppliServer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      BLANKSTOCRLF          = 'Y'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      RESPONSE_ENTITY_BODY  = BODY_RES&lt;/P&gt;&lt;P&gt;      RESPONSE_HEADERS      = HEAD_RES&lt;/P&gt;&lt;P&gt;      REQUEST_ENTITY_BODY   = BODY_REQ&lt;/P&gt;&lt;P&gt;      REQUEST_HEADERS       = HEAD_REQ&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CONNECT_FAILED        = 1&lt;/P&gt;&lt;P&gt;      TIMEOUT               = 2&lt;/P&gt;&lt;P&gt;      INTERNAL_ERROR        = 3&lt;/P&gt;&lt;P&gt;      TCPIP_ERROR           = 4&lt;/P&gt;&lt;P&gt;      DATA_ERROR            = 5&lt;/P&gt;&lt;P&gt;      SYSTEM_FAILURE        = 6&lt;/P&gt;&lt;P&gt;      COMMUNICATION_FAILURE = 7&lt;/P&gt;&lt;P&gt;      OTHERS                = 8.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 09:16:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548873#M1074244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T09:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to load a web into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548874#M1074245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect answer Dieter Gröhn, I was in the wrong way. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 10:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-load-a-web-into-table/m-p/4548874#M1074245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T10:02:48Z</dc:date>
    </item>
  </channel>
</rss>

