<?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 Report program underline on parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480224#M2001738</link>
    <description>&lt;P&gt;Hi Expert, &lt;/P&gt;
  &lt;P&gt;This is a new SAP developer.. &lt;/P&gt;
  &lt;P&gt;I would like to make underline on Currency looks same as SPMON and CCode,&lt;/P&gt;
  &lt;P&gt;it is like &lt;STRONG&gt;as Label on left&lt;/STRONG&gt;, but I don't know how to make line on Report Program, SELECTION-SCREEN COMMENT.&lt;/P&gt;
  &lt;P&gt;could anyone know how? or let me know if it can not do.. &lt;/P&gt;
  &lt;P&gt;Thank you in advance.. &lt;/P&gt;
  &lt;P&gt;Regards, &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2038523-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2038524-image.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2022 06:49:45 GMT</pubDate>
    <dc:creator>shinhye52</dc:creator>
    <dc:date>2022-04-08T06:49:45Z</dc:date>
    <item>
      <title>Report program underline on parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480224#M2001738</link>
      <description>&lt;P&gt;Hi Expert, &lt;/P&gt;
  &lt;P&gt;This is a new SAP developer.. &lt;/P&gt;
  &lt;P&gt;I would like to make underline on Currency looks same as SPMON and CCode,&lt;/P&gt;
  &lt;P&gt;it is like &lt;STRONG&gt;as Label on left&lt;/STRONG&gt;, but I don't know how to make line on Report Program, SELECTION-SCREEN COMMENT.&lt;/P&gt;
  &lt;P&gt;could anyone know how? or let me know if it can not do.. &lt;/P&gt;
  &lt;P&gt;Thank you in advance.. &lt;/P&gt;
  &lt;P&gt;Regards, &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2038523-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2038524-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 06:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480224#M2001738</guid>
      <dc:creator>shinhye52</dc:creator>
      <dc:date>2022-04-08T06:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Report program underline on parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480225#M2001739</link>
      <description>&lt;P&gt;Would you share to piece of code that defines the selection screen?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 06:54:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480225#M2001739</guid>
      <dc:creator>Dominik_Tylczynski</dc:creator>
      <dc:date>2022-04-08T06:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Report program underline on parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480226#M2001740</link>
      <description>&lt;P&gt;my cristal ball says: look abapdocu for SELECTION-SCREEN COMMENT ... FOR FIELD ... &lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 07:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480226#M2001740</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-04-08T07:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Report program underline on parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480227#M2001741</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="mention-scrubbed"&gt;shinhye&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;That kind of "label" is defined with SELECTION-SCREEN COMMENT FOR FIELD. However that doesn't work for radio buttons. Therefore I'd suggest to define a nested block for your radio buttons and put the label as the block title, e.g.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-b01.
  PARAMETERS: p_ccode TYPE bukrs.
  PARAMETERS: p_spmon TYPE spmon.

  SELECTION-SCREEN BEGIN OF BLOCK b02 WITH FRAME TITLE TEXT-b02.
    PARAMETERS p_radio1 RADIOBUTTON GROUP rg1.
    PARAMETERS p_radio2 RADIOBUTTON GROUP rg1.
  SELECTION-SCREEN END OF BLOCK b02.
SELECTION-SCREEN END OF BLOCK b01.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2038525-image.png" /&gt;&lt;/P&gt;&lt;P&gt;It's not exactly what you require, but I hope it's close enough.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Dominik Tylczynski&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 07:28:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480227#M2001741</guid>
      <dc:creator>Dominik_Tylczynski</dc:creator>
      <dc:date>2022-04-08T07:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Report program underline on parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480228#M2001742</link>
      <description>&lt;P&gt;Thank you Dominik, That would be better. &lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2022 01:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-program-underline-on-parameter/m-p/12480228#M2001742</guid>
      <dc:creator>shinhye52</dc:creator>
      <dc:date>2022-04-09T01:23:17Z</dc:date>
    </item>
  </channel>
</rss>

