<?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: Drill Down... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290454#M155149</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Rich, thanks a lot. I think that has solved my problem.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Mar 2006 16:04:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-17T16:04:07Z</dc:date>
    <item>
      <title>Drill Down...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290451#M155146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have a parameter field in the selection-screen which takes the values as 'DAILY",'WEEKLY','MONTHLY' and 'QUATERLY'. I want to show all these values as drill down for that field.Please let me know how to achieve this? Thanks....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 15:49:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290451#M155146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T15:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290452#M155147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain a little better?  Do you mean a listbox?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 report zrich_0005 .

type-pools: vrm.

parameters: p_val(20) type c as listbox visible length 20.

at selection-screen output.

  perform build_user_drop_down_list.

start-of-selection.

  write:/ p_val.

************************************************************************
* build user_drop_down_list
************************************************************************
form build_user_drop_down_list.

  data: name type vrm_id,
        list type vrm_values,
        value like line of list.

  clear list. refresh list.
  name = 'P_VAL'.


  clear value.
  value-key = 'D'.
  value-text = 'Daily'.
  append value to list.

  clear value.
  value-key = 'W'.
  value-text = 'Weekly'.
  append value to list.

  clear value.
  value-key = 'M'.
  value-text = 'Monthly'.
  append value to list.

  clear value.
  value-key = 'Q'.
  value-text = 'Quarterly'.
  append value to list.

* Set the values
  call function 'VRM_SET_VALUES'
    exporting
      id     = name
      values = list.

endform.       

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 15:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290452#M155147</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-03-17T15:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290453#M155148</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 simplest method I know is to create a data type refered to a domain. &lt;/P&gt;&lt;P&gt;In the definition of the domain you have a tab with the possible value. &lt;/P&gt;&lt;P&gt;You create the 4 values in the domain with description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in your report you could use the parameters (or the select-options) as : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_toto type z_toto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where z_toto is the data element you have created, point to the domain (for ex) z_toto (with the list of possible vlaue).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 15:59:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290453#M155148</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-03-17T15:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290454#M155149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Rich, thanks a lot. I think that has solved my problem.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Mar 2006 16:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down/m-p/1290454#M155149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-17T16:04:07Z</dc:date>
    </item>
  </channel>
</rss>

