<?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 CL_GUI_HTML_VIEWER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141384#M114709</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'm using a container and class interface CL_GUI_HTML_VIEWER to display documents (Text, Word...)&lt;/P&gt;&lt;P&gt;I just want to display them and don't want the user to be able to change the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to do it with method set_enable form class CL_GUI_HTML_VIEWER, but then i can't use the scrool bar.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jan 2006 10:12:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-26T10:12:19Z</dc:date>
    <item>
      <title>CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141384#M114709</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'm using a container and class interface CL_GUI_HTML_VIEWER to display documents (Text, Word...)&lt;/P&gt;&lt;P&gt;I just want to display them and don't want the user to be able to change the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to do it with method set_enable form class CL_GUI_HTML_VIEWER, but then i can't use the scrool bar.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 10:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141384#M114709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T10:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141385#M114710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my system, I display a text file in the viewer.  It does not allow me to change the document at all.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.

data:  url(2048).

parameters: p_check type c.

start-of-selection.

at selection-screen output.

  data: dockingleft type ref to cl_gui_docking_container,
        html_control type ref to cl_gui_html_viewer,
        repid type syrepid.

  repid = sy-repid.


  check dockingleft is initial.

  create object dockingleft
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingleft-&amp;gt;dock_at_left
                        extension = 1000.

  create object html_control
     exporting
          parent    = dockingleft.

  url = '\serverfolderfile.txt'.

  call method html_control-&amp;gt;show_url
        exporting
             url = url
        exceptions
             cnht_error_parameter = 1
             others = 2.


&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 13:57:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141385#M114710</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T13:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141386#M114711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;In my system too, text file is not allowed to changes.&lt;/P&gt;&lt;P&gt;But this is not the for Word document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 14:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141386#M114711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T14:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141387#M114712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So it allows you to edit the word document.   Does it let you save it or anything. If not, then how cares if they modify it, it would be saved anyway.  Right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 14:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141387#M114712</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T14:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141388#M114713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can save the document even if I don't see the WORD toolbar (by pressing CTRL+S).&lt;/P&gt;&lt;P&gt;I just don't want the user to be able to save anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 14:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141388#M114713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T14:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_HTML_VIEWER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141389#M114714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I shoud use method REG_EVENT_LEFT_CLICK_RUN_MODE and disable the "LEFT CLICK"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 16:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-html-viewer/m-p/1141389#M114714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T16:28:52Z</dc:date>
    </item>
  </channel>
</rss>

