<?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: Title Text In screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560201#M1659001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the PBO module of each screen use the code&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET TITLEBAR 'xxx'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jan 2012 08:35:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-20T08:35:01Z</dc:date>
    <item>
      <title>Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560198#M1658998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Expert&lt;/P&gt;&lt;P&gt;                     &lt;/P&gt;&lt;P&gt;                       I want to set Two different text for titlebar for two differnt screen, generally we can do this by SET TITLE &lt;/P&gt;&lt;P&gt;                       in both screen , I want to cahnge the TITLE BAR TEXT dynamicaaly for differnet screen. Can you please tell me   how can i do this.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Girdhari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 07:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560198#M1658998</guid>
      <dc:creator>former_member16553</dc:creator>
      <dc:date>2012-01-20T07:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560199#M1658999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Girdhari!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use titlebar name in variable&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA gv_title TYPE char20.
gv_title = '100'.
SET TITLEBAR gv_title.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Przemysław&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 08:33:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560199#M1658999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-20T08:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560200#M1659000</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 can create two titles Title1 and Title2 and based on screen you can change the title using SET Title stmt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-dynnr = '0100' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set titlebar 'TITLE1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif sy-dynnr = '0200'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEt titlebar 'TITLE2'&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;or put title text in a variable and change dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally you can write these two separately in corresponding PBO of the screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 08:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560200#M1659000</guid>
      <dc:creator>Kiran_Valluru</dc:creator>
      <dc:date>2012-01-20T08:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560201#M1659001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the PBO module of each screen use the code&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET TITLEBAR 'xxx'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 08:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560201#M1659001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-20T08:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560202#M1659002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 08:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560202#M1659002</guid>
      <dc:creator>former_member16553</dc:creator>
      <dc:date>2012-01-20T08:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560203#M1659003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Girdhari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using two separate titles, you can use one and dynalically change this. for example : &lt;/P&gt;&lt;P&gt;If your first Screen 001 and second Second is 002. And if the text to be displayed is 'Welcome to Frist Screen' and Welcome to Second Screen'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create the title as &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Welcome to &amp;amp;1 Screen&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO Module of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF sy-dynnr EQ '001'.
lv_text = 'First'.
ELSE.
lv_text = 'Second'.
ENDIF.

SET TITLEBAR test WITH lv_text.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Rinzy Deena Mathews&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 10:50:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560203#M1659003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-20T10:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560204#M1659004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;     Thank u  much very much for guieding me , Can u plzz clarify me what is &lt;STRONG&gt;&amp;amp;1&lt;/STRONG&gt; In &lt;STRONG&gt;welcome to &amp;amp;1 screen&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Girdhari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 11:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560204#M1659004</guid>
      <dc:creator>former_member16553</dc:creator>
      <dc:date>2012-01-20T11:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Title Text In screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560205#M1659005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Time to read the help files, thread locked.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 12:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/title-text-in-screen/m-p/8560205#M1659005</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2012-01-20T12:27:01Z</dc:date>
    </item>
  </channel>
</rss>

