<?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: Dialog Programming.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673552#M617533</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create a container in the third screen. Use the class CL_GUI_CUSTOM_CONTAINER. Further, more functions can be found in the class CL_GUI_TEXTEDIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Usha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2007 06:54:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-14T06:54:57Z</dc:date>
    <item>
      <title>Dialog Programming..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673550#M617531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends..&lt;/P&gt;&lt;P&gt;In Dialog programming...&lt;/P&gt;&lt;P&gt;i need to display the text messages in right side of the screen..&lt;/P&gt;&lt;P&gt;i divide my main screen into three parts&lt;/P&gt;&lt;P&gt;1)selection area- it contains push buttons.&lt;/P&gt;&lt;P&gt;2)subscreen area&lt;/P&gt;&lt;P&gt;3)text area..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i select any button in selection area.. subscreen area display the relevant screen..&lt;/P&gt;&lt;P&gt;upto this ok for me..&lt;/P&gt;&lt;P&gt;next.. depends on the subscreen i need to diaplay some text&lt;/P&gt;&lt;P&gt;in the right corner of the screen..&lt;/P&gt;&lt;P&gt;in that purpose  which one is best,.. custom control..&lt;/P&gt;&lt;P&gt;how can i store and retrive data in custom control depends on subscreen..&lt;/P&gt;&lt;P&gt;plz anyone give me the suggestion.. for that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gowrishankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 06:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673550#M617531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T06:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673551#M617532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simply create a Text Output field &amp;amp; populate it.&lt;/P&gt;&lt;P&gt;MESSAGE = 'Test message'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hide it using&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;if message is initial.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'MESSAGE'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;SCREEN-OUTPUT = 0.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 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;else.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'MESSAGE'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;SCREEN-OUTPUT = 1.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 06:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673551#M617532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T06:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Programming..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673552#M617533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create a container in the third screen. Use the class CL_GUI_CUSTOM_CONTAINER. Further, more functions can be found in the class CL_GUI_TEXTEDIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Usha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 06:54:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/2673552#M617533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T06:54:57Z</dc:date>
    </item>
  </channel>
</rss>

