<?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: Text Editor Scrolling issue at Process After Input time... Help...!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663138#M28935</link>
    <description>&lt;P&gt;Hey &lt;/P&gt; 
  Former Member, I have found your question on same case, did you found any solution to this? if any please help ...
  &lt;P&gt;&lt;A href="https://archive.sap.com/discussions/thread/3407381#" target="test_blank"&gt;https://archive.sap.com/discussions/thread/3407381#&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Feb 2018 10:02:57 GMT</pubDate>
    <dc:creator>chirag_makwana</dc:creator>
    <dc:date>2018-02-02T10:02:57Z</dc:date>
    <item>
      <title>Text Editor Scrolling issue at Process After Input time... Help...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663137#M28934</link>
      <description>&lt;P&gt;I am loading sub screen in sub screen area, my sub screen have different screen elements including multiple custom controls for text editor by using class CL_GUI_TEXTEDIT and because of multiple screen elements and text editors , screen scrolling is on as below.&lt;/P&gt;
  &lt;P&gt;&lt;IMG src="https://archive.sap.com/image/262362" /&gt;&lt;/P&gt;
  &lt;P&gt;When I opened the screen at Process before Output(BPO) all text editors works fine but after some input (i.e. Process after input(PAI)) &lt;EM&gt;text editor remains fixed at their positions and can’t scroll with up or down screen scrolling.&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG src="https://archive.sap.com/image/262363" /&gt;&lt;/P&gt;
  &lt;P&gt;So can you tell me how text editor scrolling is possible with other screen scrolling as I already checked Class (i.e. CL_GUI_TEXTEDIT) attributes and methods but didn’t find any attribute or method in this class who could solve my issue?&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;So how text editor scrolling will be possible with other screen elements scrolling at process after input?&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;
  &lt;P&gt;***Text Container Variables .DATA: LINE_LENGTH TYPE I VALUE 254,&lt;BR /&gt;EDITOR_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,&lt;BR /&gt;TEXT_EDITOR TYPE REF TO CL_GUI_TEXTEDIT, TEXT TYPESTRING ,&lt;BR /&gt;conainter_name(50).&lt;/P&gt;
  &lt;P&gt;CREATE OBJECT editor_containerEXPORTING&lt;BR /&gt;container_name = conainter_nameEXCEPTIONS&lt;BR /&gt;cntl_error = 1&lt;BR /&gt;cntl_system_error = 2&lt;BR /&gt;create_error = 3&lt;BR /&gt;lifetime_error = 4&lt;BR /&gt;lifetime_dynpro_dynpro_link = 5.&lt;/P&gt;
  &lt;P&gt;IF text_editor IS INITIAL.CREATE OBJECT text_editorEXPORTING&lt;BR /&gt;parent = editor_container* wordwrap_mode = cl_gui_textedit=&amp;gt;wordwrap_at_fixed_position&lt;BR /&gt;wordwrap_position = line_length&lt;BR /&gt;wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.&lt;BR /&gt;*3)HIDE TOOLBAR AND STATUSBARCALL METHOD text_editor-&amp;gt;set_toolbar_modeEXPORTING&lt;BR /&gt;toolbar_mode = cl_gui_textedit=&amp;gt;false.CALL METHOD text_editor-&amp;gt;set_statusbar_modeEXPORTING&lt;BR /&gt;statusbar_mode = cl_gui_textedit=&amp;gt;false.ENDIF.&lt;/P&gt;
  &lt;P&gt; Fill Text and if display check box selected then display text in Text Editor Readonly mode.&lt;/P&gt;
  &lt;P&gt;REFRESH text_tab[].&lt;BR /&gt;f_text = wa_mas-performance_det.APPEND f_text TO text_tab.&lt;/P&gt;
  &lt;P&gt; CALL METHOD text_editor-&amp;gt;set_text_as_streamEXPORTINGtext = text_tab.IF chk_display EQ 'X' . CALL METHOD text_editor-&amp;gt;set_readonly_modeEXPORTING&lt;BR /&gt;readonly_mode = cl_gui_textedit=&amp;gt;true.CLEAR wa_mas.&lt;/P&gt;
  &lt;P&gt; ENDIF.&lt;/P&gt;
  &lt;P&gt; REFRESH text_tab.&lt;/P&gt;
  &lt;P&gt;CLEAR: f_text.&lt;/P&gt;
  &lt;P&gt;PROCESS AFTER INPUT.CALL METHOD text_editor-&amp;gt;get_textstream* EXPORTING* ONLY_WHEN_MODIFIED = CL_GUI_TEXTEDIT=&amp;gt;TRUEIMPORTINGtext = text* IS_MODIFIED =EXCEPTIONS&lt;BR /&gt;error_cntl_call_method = 1&lt;BR /&gt;not_supported_by_gui = 2OTHERS = 3.IF sy-subrc &amp;lt;&amp;gt; 0.MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgnoWITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.ENDIF.&lt;/P&gt;
  &lt;P&gt;IF text IS NOT INITIAL .&lt;/P&gt;
  &lt;P&gt; wa_permas-performance_det = text.ENDIF.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 10:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663137#M28934</guid>
      <dc:creator>chirag_makwana</dc:creator>
      <dc:date>2018-02-02T10:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Text Editor Scrolling issue at Process After Input time... Help...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663138#M28935</link>
      <description>&lt;P&gt;Hey &lt;/P&gt; 
  Former Member, I have found your question on same case, did you found any solution to this? if any please help ...
  &lt;P&gt;&lt;A href="https://archive.sap.com/discussions/thread/3407381#" target="test_blank"&gt;https://archive.sap.com/discussions/thread/3407381#&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 10:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663138#M28935</guid>
      <dc:creator>chirag_makwana</dc:creator>
      <dc:date>2018-02-02T10:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Text Editor Scrolling issue at Process After Input time... Help...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663139#M28936</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/108738-1.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/108739-2.png" /&gt;&lt;/P&gt;
  &lt;P&gt;whenever my screen change this container has block in screen. please help to sort this out.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 10:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-editor-scrolling-issue-at-process-after-input-time-help/m-p/663139#M28936</guid>
      <dc:creator>chirag_makwana</dc:creator>
      <dc:date>2018-02-02T10:06:52Z</dc:date>
    </item>
  </channel>
</rss>

