<?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: Dynamically changing the text on a screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872978#M50217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich. You sent me down the right direction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try the other options suggested later. I logged in yesterday and saw Rich's response and went back to work on it thinking -'Duh!' &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Did not see the other options. Will try them now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2005 18:26:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-10T18:26:48Z</dc:date>
    <item>
      <title>Dynamically changing the text on a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872974#M50213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is to dynamically change the text of a text-element on a screen . I know that we can change the characteristics like visibility, input, output etc - of a element thro' the screen structure but do not know how to change the text displayed. I know that I need to do this in the PBO module but how is where I need help. How do you change the text displayed on the screen dynamically ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 17:58:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872974#M50213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T17:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically changing the text on a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872975#M50214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of using a "text elemnt" use an input field,  make it output only.   This will look like a "text element" but will allow you to fill it at run-time.&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>Mon, 09 May 2005 18:28:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872975#M50214</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-05-09T18:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically changing the text on a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872976#M50215</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;I have no idea about changing the text element dynamically.&lt;/P&gt;&lt;P&gt;But you can refresh the screen by the following sample coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can accomplish this with a RFC enabled Function module.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;1. Create a function module. The only functionality will be to wait for 10 secs.&lt;/P&gt;&lt;P&gt;2. Create a subroutine which will set a user-command.&lt;/P&gt;&lt;P&gt;3. and at user-command call the function module.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Below is the code, I found on the web. It is quite simple..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: ZNUM LIKE SY-TABIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;: GET TIME.&lt;/P&gt;&lt;P&gt;: WRITE: /01 'Update Number:', ZNUM, SY-UZEIT.&lt;/P&gt;&lt;P&gt;: CALL FUNCTION 'Z_WAIT_30_SECS'&lt;/P&gt;&lt;P&gt;: STARTING NEW TASK 'IF'&lt;/P&gt;&lt;P&gt;: PERFORMING START_REFRESH ON END OF TASK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;: AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;: IF SY-UCOMM = 'REFR'.&lt;/P&gt;&lt;P&gt;: SY-LSIND = SY-LSIND - 1.&lt;/P&gt;&lt;P&gt;: ADD 1 TO ZNUM.&lt;/P&gt;&lt;P&gt;: GET TIME.&lt;/P&gt;&lt;P&gt;: WRITE: /01 'Update Number:', ZNUM, SY-UZEIT.&lt;/P&gt;&lt;P&gt;: CALL FUNCTION 'Z_WAIT_30_SECS'&lt;/P&gt;&lt;P&gt;: STARTING NEW TASK 'IF'&lt;/P&gt;&lt;P&gt;: PERFORMING START_REFRESH ON END OF TASK.&lt;/P&gt;&lt;P&gt;: ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;: *----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;: */ Program Subroutines&lt;/P&gt;&lt;P&gt;: *----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;: FORM START_REFRESH USING TASKNAME.&lt;/P&gt;&lt;P&gt;: *----&lt;/P&gt;&lt;HR originaltext="-------------------------" /&gt;&lt;P&gt;: *&lt;/P&gt;&lt;P&gt;: SET USER-COMMAND 'REFR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;: ENDFORM. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;: FUNCTION Z_WAIT_30_SECS.&lt;/P&gt;&lt;P&gt;: *"----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;: &lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;: *"----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;: DATA: ZTIME LIKE SY-UZEIT.&lt;/P&gt;&lt;P&gt;: GET TIME.&lt;/P&gt;&lt;P&gt;: ZTIME = SY-UZEIT + 30.&lt;/P&gt;&lt;P&gt;: DO.&lt;/P&gt;&lt;P&gt;: GET TIME.&lt;/P&gt;&lt;P&gt;: IF SY-UZEIT &amp;gt;= ZTIME.&lt;/P&gt;&lt;P&gt;: EXIT.&lt;/P&gt;&lt;P&gt;: ENDIF.&lt;/P&gt;&lt;P&gt;: ENDDO.&lt;/P&gt;&lt;P&gt;: ENDFUNCTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;J.Jayanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 04:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872976#M50215</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-10T04:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically changing the text on a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872977#M50216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Design them as labels on the same position, display only one at a time on screen (Depending on a condition).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds, &lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 06:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872977#M50216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T06:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically changing the text on a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872978#M50217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich. You sent me down the right direction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try the other options suggested later. I logged in yesterday and saw Rich's response and went back to work on it thinking -'Duh!' &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Did not see the other options. Will try them now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 18:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-changing-the-text-on-a-screen/m-p/872978#M50217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T18:26:48Z</dc:date>
    </item>
  </channel>
</rss>

