<?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>Question Re: Creating a Dynamic Title with Multiple Values in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067053#M2553428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would rather create a concatenated filed in Universe for your Account Type ID and Description. Then prompt on that, and then use it in header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way you are doing, you could just display multiple ID's in the header, but it might not be possible to display corresponding descriptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jul 2010 19:58:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-21T19:58:31Z</dc:date>
    <item>
      <title>Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaq-p/7067047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently have a title formula editor set up like this: =If(UserResponse("Enter value(s) for Appointment Type ID:") &amp;lt;&amp;gt; "") Then ("Appt. Type: "+[Appointment Type Detail Description]) Else ("") &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine if only one value is selected from the prompt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I also have the "Appointment Type ID" field in my query filter (prompt) as in list...so if a user were to select multiple Appointment Type IDs the title would read #MULTIVALUE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I change my formula above to handle listing of the multiple IDs in my report title when a user selects multiple IDs from the prompt?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 18:31:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaq-p/7067047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T18:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067048#M2553423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; In your syntax above, what is "Appointment Type Detail Description"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as displaying header from the prompt answers(even with selection of multiple values with prompt) should be no problem. But I see the problem is with "Appointment Type Detail Description". Is this another Attrbute, try taking it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample syntax that works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;="Report for States -  " + UserResponse("Enter value(s) for State Name:")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the output how it displays:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report for States -  CA;CO;MO;NV;OK;TX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 18:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067048#M2553423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T18:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067049#M2553424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My formula didn't copy over correctly, it is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(UserResponse("Enter value(s) for Appointment Type ID:") &amp;lt;&amp;gt; "") Then ("Appt. Type: "&lt;EM&gt;[Appointment Type ID]&lt;/EM&gt;" - "+[Appointment Type Detail Description]) Else ("")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which for example could return "Appt. Type: 21 - New Ob"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;21 being the value for the Appointment Type ID field and 'New Ob' being the value for the Appointment Type Detail Description field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is with how this formula is arranged if I choose multiple Appointment Type IDs from the prompt I get the #MULTIVALUE result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like it to return this for example when multiple values are chosen from the prompt "Appt. Type: 21 - New Ob, 1 - Off Visit, 3 - Compl Phy, 5 - Pre Op"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 19:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067049#M2553424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T19:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067050#M2553425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry.  This is right.  Troubles with plain text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;=If(UserResponse("Enter value(s) for Appointment Type ID:") != "") Then ("Appt. Type: "+[Appointment Type ID]+" - "+[Appointment Type Detail Description]) Else ("")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 19:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067050#M2553425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T19:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067051#M2553426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell me how do you want the title to display when there are multiple Appointment Types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not a table &amp;amp; I don't think you can display it in single cell.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 19:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067051#M2553426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T19:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067052#M2553427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like it to return this for example when multiple values are chosen from the prompt "Appt. Type: 21 - New Ob, 1 - Off Visit, 3 - Compl Phy, 5 - Pre Op"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above example is if a user selects Appointment Type IDs: 21;1;3;5.  The New Ob, Off Visit, Compl Phy, and Pre Op descriptions are held in the Appointment Type Detail Description field.  These descriptions correspond with the Appointment Type IDs.  I would like to be able to bring them together like in my example above by using both dimensions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 19:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067052#M2553427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T19:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067053#M2553428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would rather create a concatenated filed in Universe for your Account Type ID and Description. Then prompt on that, and then use it in header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way you are doing, you could just display multiple ID's in the header, but it might not be possible to display corresponding descriptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 19:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067053#M2553428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T19:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067054#M2553429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I created a concatenated field at the universe level and am able to get the information I need in my title.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, how can I format the result in order to have spaces between each value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this, using your state example above: Report for States - CA; CO; MO; NV; OK; TX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 21:44:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067054#M2553429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-21T21:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067055#M2553430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyler - You can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bo by default brings up semi colon between various the prompt values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you can use "Replace" function to actually replace that semi colon with commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Replace(UserResponse("Enter value(s) for State:");";";", ")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have replaced semi colon with comma and a space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 18:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067055#M2553430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-26T18:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Dynamic Title with Multiple Values</title>
      <link>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067056#M2553431</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 report title can be dynamically changed according to the parameters send ate report level. Just copy the below code at title function,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;="Report for the States "+ UserResponse("Enter value(s) for State:")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if you want to edit the format of the ;, u can replace it with '-' , ',' ... using below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;="Report for the States "+ Replace( UserResponse("Enter value(s) for State:");";";", ")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be helpful for you. Please let me know if you need more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Aug 2010 13:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/creating-a-dynamic-title-with-multiple-values/qaa-p/7067056#M2553431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-02T13:16:34Z</dc:date>
    </item>
  </channel>
</rss>

