<?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: Adding Comments in Selection-screen of report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688258#M302725</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Check the below code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-h01.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_deta RADIOBUTTON GROUP g1 USER-COMMAND abc DEFAULT 'X'.
SELECTION-SCREEN COMMENT 5(30) text-c01 FOR FIELD p_deta.
PARAMETERS: p_summ RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 60(15) text-c02 FOR FIELD p_summ.
SELECTION-SCREEN END OF LINE.
SELECT-OPTIONS: s_dol FOR oiuh_rv_gl-gl_trans_am.
SELECT-OPTIONS: s_own FOR oiuh_cm_ba-ba_ba_no.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_strt RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 5(30) text-c03 FOR FIELD p_strt.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN END OF BLOCK b1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Nov 2006 15:55:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-14T15:55:01Z</dc:date>
    <item>
      <title>Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688255#M302722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to add comments/Instructions on a selection -screen of a report.&lt;/P&gt;&lt;P&gt;How do we do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 15:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688255#M302722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T15:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688256#M302723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vara,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block B1 with frame title TEXT-001.&lt;/P&gt;&lt;P&gt;selection-screen : begin of line.&lt;/P&gt;&lt;P&gt;selection-screen : comment 1(23) TEXT-001.&lt;/P&gt;&lt;P&gt;parameter : P_01 radiobutton group R1.&lt;/P&gt;&lt;P&gt;selection-screen : comment 30(8) TEXT-001.&lt;/P&gt;&lt;P&gt;parameter : P_02 radiobutton group R1.&lt;/P&gt;&lt;P&gt;selection-screen : comment 42(10) TEXT-001.&lt;/P&gt;&lt;P&gt;parameter : P_C01 type rlgrap-filename obligatory.&lt;/P&gt;&lt;P&gt;selection-screen : end of line.&lt;/P&gt;&lt;P&gt;selection-screen : end of block B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps.&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 15:50:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688256#M302723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T15:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688257#M302724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF BLOCK comment WITH FRAME TITLE text-006.
SELECTION-SCREEN COMMENT /05(70) comm01.
SELECTION-SCREEN COMMENT /05(70) comm02.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN COMMENT /05(70) text-007.
SELECTION-SCREEN COMMENT /05(70) text-008.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN COMMENT /05(70) text-009.
SELECTION-SCREEN COMMENT /05(70) text-010.
SELECTION-SCREEN END OF BLOCK comment.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMM01 and COMM02 are dynamically set at the initialization event and TEXT-007/10 are standard text elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 15:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688257#M302724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T15:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688258#M302725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Check the below code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-h01.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_deta RADIOBUTTON GROUP g1 USER-COMMAND abc DEFAULT 'X'.
SELECTION-SCREEN COMMENT 5(30) text-c01 FOR FIELD p_deta.
PARAMETERS: p_summ RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 60(15) text-c02 FOR FIELD p_summ.
SELECTION-SCREEN END OF LINE.
SELECT-OPTIONS: s_dol FOR oiuh_rv_gl-gl_trans_am.
SELECT-OPTIONS: s_own FOR oiuh_cm_ba-ba_ba_no.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_strt RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 5(30) text-c03 FOR FIELD p_strt.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN END OF BLOCK b1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 15:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688258#M302725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T15:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688259#M302726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use the below ones to create the texts on the selection screen ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /01(20) TEXT-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /02(20) TEXT-002.&lt;/P&gt;&lt;P&gt;In the above line, which ever you enter in the Texts, that will appear in the Selection screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 4(35) text-c06 FOR FIELD fix.&lt;/P&gt;&lt;P&gt;here after the Field FIX, the text will appear ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 15:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688259#M302726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T15:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688260#M302727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alla,&lt;/P&gt;&lt;P&gt;Thank you vrey much I solved my problem.&lt;/P&gt;&lt;P&gt;I am awarding points for all of you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 16:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688260#M302727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T16:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Comments in Selection-screen of report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688261#M302728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vara,&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_select_comment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /2(50) text-001 MODIF ID sc1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /10(30) comm1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: r1 RADIOBUTTON GROUP rad1,&lt;/P&gt;&lt;P&gt;            r2 RADIOBUTTON GROUP rad1,&lt;/P&gt;&lt;P&gt;            r3 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE /1(50).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /10(30) comm2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: s1 RADIOBUTTON GROUP rad2,&lt;/P&gt;&lt;P&gt;            s2 RADIOBUTTON GROUP rad2,&lt;/P&gt;&lt;P&gt;            s3 RADIOBUTTON GROUP rad2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN ULINE /1(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMM1 ='Radio Button Group 1'.&lt;/P&gt;&lt;P&gt;COMM2 ='Radio Button Group 2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'SC1'.&lt;/P&gt;&lt;P&gt;      screen-intensified = '1'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 16:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-comments-in-selection-screen-of-report/m-p/1688261#M302728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-14T16:07:19Z</dc:date>
    </item>
  </channel>
</rss>

