<?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: Displaying Selection Options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492029#M839791</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;the function module RS_VARIANT_CONTENTS returns a lot of info about variants of a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye, Antonino&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Mar 2008 08:57:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-09T08:57:41Z</dc:date>
    <item>
      <title>Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492026#M839788</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;Provide me with a SAP ABAP Report on Displaying Selection Options in your report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 05:22:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492026#M839788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T05:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492027#M839789</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;REPORT CHAP1109.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Work area&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES CUSTOMERS.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Specifiying a Select-Option&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT-OPTIONS SNAME FOR CUSTOMERS-NAME.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for later use&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100&lt;/P&gt;&lt;P&gt;                   WITH HEADER LINE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reading table entries according to a Select-Option&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT * FROM CUSTOMERS INTO TABLE ALL_CUSTOMERS&lt;/P&gt;&lt;P&gt;       WHERE NAME IN SNAME.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Displaying the reuslt&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT ALL_CUSTOMERS.&lt;/P&gt;&lt;P&gt;  WRITE: / ALL_CUSTOMERS-CITY,&lt;/P&gt;&lt;P&gt;           ALL_CUSTOMERS-NAME.&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;Hope this helps u,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 06:19:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492027#M839789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T06:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492028#M839790</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;select-options: sel_opt for sy-datum.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;loop at sel_opt. &lt;/P&gt;&lt;P&gt;perform describe_select_options using 'Date'&lt;/P&gt;&lt;P&gt;sel_opt-sign&lt;/P&gt;&lt;P&gt;sel_opt-option&lt;/P&gt;&lt;P&gt;sel_opt-low&lt;/P&gt;&lt;P&gt;sel_opt-high&lt;/P&gt;&lt;P&gt;changing datedesc.&lt;/P&gt;&lt;P&gt;write: / datedesc.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Form DESCRIBE_SELECT_OPTIONS&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form describe_select_options using&lt;/P&gt;&lt;P&gt;field_name type c "name to describe field (e.g. "Date")&lt;/P&gt;&lt;P&gt;sel_opt_sign like sel_opt-sign&lt;/P&gt;&lt;P&gt;sel_opt_option like sel_opt-option&lt;/P&gt;&lt;P&gt;sel_opt_low like sel_opt-low&lt;/P&gt;&lt;P&gt;sel_opt_high like sel_opt_high&lt;/P&gt;&lt;P&gt;changing descline type c. "line that will hold the one-line description&lt;/P&gt;&lt;P&gt;if sel_opt_sign = 'i'.&lt;/P&gt;&lt;P&gt;concatenate 'Include' field_name into descline separated by space.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;concatenate 'Exclude' field_name into descline separated by space.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;case sel_opt_option.&lt;/P&gt;&lt;P&gt;when 'EQ'.&lt;/P&gt;&lt;P&gt;concatenate descline '=' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;when 'BT'.&lt;/P&gt;&lt;P&gt;concatenate descline 'between' sel_opt_low 'and' sel_opt_high&lt;/P&gt;&lt;P&gt;into descline separated by space.&lt;/P&gt;&lt;P&gt;when 'NB'.&lt;/P&gt;&lt;P&gt;concatenate descline 'not between' sel_opt_low 'and' sel_opt_high&lt;/P&gt;&lt;P&gt;into descline separated by space.&lt;/P&gt;&lt;P&gt;when 'NE'.&lt;/P&gt;&lt;P&gt;concatenate descline '!=' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;when 'GE'.&lt;/P&gt;&lt;P&gt;concatenate descline '&amp;gt;=' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;when 'LE'.&lt;/P&gt;&lt;P&gt;concatenate descline '&amp;lt;=' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;when 'GT'.&lt;/P&gt;&lt;P&gt;concatenate descline '&amp;gt;' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;when 'LT'.&lt;/P&gt;&lt;P&gt;concatenate descline '&amp;lt;' sel_opt_low into descline&lt;/P&gt;&lt;P&gt;separated by space.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endform. " describe_select_options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 08:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492028#M839790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T08:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492029#M839791</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;the function module RS_VARIANT_CONTENTS returns a lot of info about variants of a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye, Antonino&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 08:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492029#M839791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T08:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492030#M839792</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;tables:kna1.&lt;/P&gt;&lt;P&gt;types:begin of itab,&lt;/P&gt;&lt;P&gt;     kunnr type kunnr,&lt;/P&gt;&lt;P&gt;     name1 type name1_gp,&lt;/P&gt;&lt;P&gt;     end of itab.&lt;/P&gt;&lt;P&gt; data: wa_itab type itab,&lt;/P&gt;&lt;P&gt;       it_itab type standard table of itab.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select-options:so_kunnr for kna1-kunnr.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;select kunnr name1 from kna1 into  table it_itab&lt;/P&gt;&lt;P&gt;         where kunnr in so_kunnr.&lt;/P&gt;&lt;P&gt; loop at it_itab into wa_itab.&lt;/P&gt;&lt;P&gt;   write:/ wa_itab-kunnr,&lt;/P&gt;&lt;P&gt;          wa_itab-name1.&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 07:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492030#M839792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T07:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Selection Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492031#M839793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Manosh&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the function module &lt;STRONG&gt;Print_Selections&lt;/STRONG&gt;. You can print the selection criteria on your report using this FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 08:03:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-selection-options/m-p/3492031#M839793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T08:03:18Z</dc:date>
    </item>
  </channel>
</rss>

