<?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: Tooltip on screen field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523068#M847396</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;Where do I write the statement "@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_nogen." as it gives me a syntax error as an independent statement. Do I write it in addition to the parameter statement? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2008 11:56:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-04T11:56:52Z</dc:date>
    <item>
      <title>Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523063#M847391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to add tooltip text to a radiobutton on a selection screen  in a report program. The text I provide in selection-texts is also not appearing. Please suggest how this can be achieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My source code is &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS  p_nogen RADIOBUTTON GROUP rad  USER-COMMAND fcode DEFAULT 'X' .&lt;/P&gt;&lt;P&gt;PARAMETER  p_lowgen RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;PARAMETER  p_inprd RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;PARAMETER  p_upgen RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;PARAMETER  p_outprd RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is really urgent. &lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 4, 2008 12:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523063#M847391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523064#M847392</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;Go to  Menu bar--&amp;gt; Text elements --&amp;gt; Selection Texts --&amp;gt; Text column make some change like press space bar --&amp;gt; And save it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably this time you may get the selection texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523064#M847392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523065#M847393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the below code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
PARAMETERS p_nogen RADIOBUTTON GROUP rad USER-COMMAND fcode DEFAULT 'X' .
PARAMETER p_lowgen RADIOBUTTON GROUP rad.
PARAMETER p_inprd RADIOBUTTON GROUP rad.
PARAMETER p_upgen RADIOBUTTON GROUP rad.
PARAMETER p_outprd RADIOBUTTON GROUP rad.
SELECTION-SCREEN END OF BLOCK b1.

@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_nogen
@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_lowgen
@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_inprd
@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_upgen
@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_outprd

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523065#M847393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523066#M847394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Anju&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check if you are saving and &lt;STRONG&gt;ACTIVATING&lt;/STRONG&gt; the selection-texts after you create them and&lt;/P&gt;&lt;P&gt;in selection texts of ur radio buttons(say p_nogen and p_lowgen) write the following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for  p_nogen write @5F\Q&amp;lt;&lt;STRONG&gt;First Button Tool Tip&lt;/STRONG&gt;&amp;gt;@ p_nogen&lt;/P&gt;&lt;P&gt;for p_lowgen write @5F\Q&amp;lt;&lt;STRONG&gt;Second Button Tool Tip&lt;/STRONG&gt;&amp;gt;@ p_lowgen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By doing this whenever the radiobutton p_nogen is pointed at a tool tip saying &lt;STRONG&gt;First Button Tool Tip&lt;/STRONG&gt; will appear on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 4, 2008 12:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523066#M847394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523067#M847395</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 have a tooltip for a Radio Button on Selection screen as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1: Declare the radio buttons as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameter: p_test1 radiobutton group grp1,
                p_test2 radiobutton group grp1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2: Click on Goto-&amp;gt;Text Elements-&amp;gt; Selection Texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 3: Here do not give the description you want directly.  Instead do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For P_TEST1: @5F\Q TEST1 @ RADIO_BUTTON_1&lt;/P&gt;&lt;P&gt;For P_TEST2: @5F\Q TEST2 @ RADIO_BUTTON_2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Here 'TEST1' and 'TEST2' are the tool tips.  You can write anything you want here as the tooltip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RADIO_BUTTON_1 and RADIO_BUTTON_2 are the descriptions (i.e the text which you want it to appear next to radio button...write the description you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get the tooltip now.  But remember, the tooptip would be displayed only for the radio button which is not selected.  Place the mouse pointer over the non selected radio button for 2 to 3 seconds, and the tool tip will come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523067#M847395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523068#M847396</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;Where do I write the statement "@5F\Q&amp;lt;info text as per ur wish&amp;gt;@p_nogen." as it gives me a syntax error as an independent statement. Do I write it in addition to the parameter statement? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 11:56:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523068#M847396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T11:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523069#M847397</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;in menubar goto&lt;DEL&gt;-&amp;gt;text elements&lt;/DEL&gt;&amp;gt;selection texts--&amp;gt;&lt;/P&gt;&lt;P&gt;der u ll find all ur parameters...........against ur radio buttons write these texts....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 12:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523069#M847397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T12:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523070#M847398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing the following code in my selection-texts but I do not see the tooltip texts.&lt;/P&gt;&lt;P&gt;P_INPRD	                        @5F\QTEST1@p_inprd&lt;/P&gt;&lt;P&gt;P_LOWGEN	        @5F\QTEST1@p_lowgen&lt;/P&gt;&lt;P&gt;P_NOGEN                        @5F\QTEST1@p_nogen&lt;/P&gt;&lt;P&gt;P_OUTPRD	        @5F\QTEST1@p_outprd&lt;/P&gt;&lt;P&gt;P_UPGEN                        @5F\QTEST1@p_upgen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please also tell what does this syntax mean&lt;/P&gt;&lt;P&gt;@5F\Q....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 12:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523070#M847398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T12:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523071#M847399</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;@5F@ is an icon( &lt;STRONG&gt;space&lt;/STRONG&gt; ) so nothing ll appear....@5F\Q tool tip@ provides tool tip for dat icon ( any thing followed by Q/.....).....ok...if u want change it like this @10\Q tool tip@ an icon ll appear and if u keep de cursor above it its tool tip ll come........since we are using @5F@ icon ll not appear but the associated tool tip ll come...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by the way wats? comming in ur sel-screen against ur radio buttons...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 13:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523071#M847399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T13:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523072#M847400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried adding the text in selection texts but its not appearing in my screen. Only radio buttons without any text are displayed on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 13:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523072#M847400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T13:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523073#M847401</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;are u declaring those radiobuttons within &lt;STRONG&gt;Selection-screen Begin of line&lt;/STRONG&gt; and &lt;STRONG&gt;Selection-screen End of line&lt;/STRONG&gt; sattements???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 03:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523073#M847401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T03:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523074#M847402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using begin of line and end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 05:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523074#M847402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T05:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523075#M847403</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;If u want it only in a line code like below......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF line.
PARAMETER p_r1 RADIOBUTTON GROUP rad USER-COMMAND rad.
selection-screen COMMENT  2(22) text1.
PARAMETER p_r2 RADIOBUTTON GROUP rad.
selection-screen COMMENT  27(22) text2.
SELECTION-SCREEN END   OF line.

INITIALIZATION.

text1 = '@5F\Q&amp;lt;info1&amp;gt;@button 1'.
text2 = '@5F\Q&amp;lt;info2&amp;gt;@button 2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 05:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523075#M847403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T05:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523076#M847404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was able to add a tooltip for the field, but just wanted to know if there is a limit on the length of the text which we can provide as the tooltip. The code functions well if I provide a tooltip of length 5. But beyond that the code is inneffective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 08:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523076#M847404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T08:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip on screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523077#M847405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No not like dat.....u have to increase the comment's length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF line.
PARAMETER p_r1 RADIOBUTTON GROUP rad USER-COMMAND rad.
selection-screen COMMENT  2(32) text1.  "length increased
PARAMETER p_r2 RADIOBUTTON GROUP rad.
selection-screen COMMENT  37(32) text2.
SELECTION-SCREEN END   OF line.
 
INITIALIZATION.
 
text1 = '@5F\Q&amp;lt;info1 hi hello&amp;gt;@button 1'.
text2 = '@5F\Q&amp;lt;info2 welcome&amp;gt;@button 2'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 09:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tooltip-on-screen-field/m-p/3523077#M847405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T09:35:09Z</dc:date>
    </item>
  </channel>
</rss>

