<?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: Email Title Modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885631#M1688520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Puneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! This may be a stupid question, but I'm assuming that CONCATENATE would go after the &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle that is already there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2012 19:19:21 GMT</pubDate>
    <dc:creator>JMorozowski</dc:creator>
    <dc:date>2012-07-25T19:19:21Z</dc:date>
    <item>
      <title>Email Title Modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885629#M1688518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a copy of SAP code and am trying to add static text to an email title.&amp;nbsp; I don't have much ABAP experience so please bear with me.&amp;nbsp; I am trying to modify the code below to add a bit of static text before the dynamic elements, but I'm not really sure how to do so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;REPLACE &lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;ls_orderadm_h&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;object_id&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that is the place, but here is the whole snippet of code in case I am looking in the wrong spot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN class="L0S31"&gt;* set mail title&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;caption &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;stxfadmt &lt;SPAN class="L0S52"&gt;WHERE&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; formname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;ip_smart_form &lt;SPAN class="L0S52"&gt;AND&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; langu&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lv_language&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&amp;nbsp; &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;caption &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;stxfadmt &lt;SPAN class="L0S52"&gt;WHERE&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; formname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;ip_smart_form&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;REPLACE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;ls_orderadm_h&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;object_id&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&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, 25 Jul 2012 18:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885629#M1688518</guid>
      <dc:creator>JMorozowski</dc:creator>
      <dc:date>2012-07-25T18:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Email Title Modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885630#M1688519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If&amp;nbsp; &lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt; is being passed to the email title, then you &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;CONCATENATE statictext&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt; INTO&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure the size of the data after concatenation does not exceed the variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;SPAN class="L0S55"&gt;- Puneet&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 19:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885630#M1688519</guid>
      <dc:creator>Puneet_Gupta</dc:creator>
      <dc:date>2012-07-25T19:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Email Title Modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885631#M1688520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Puneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! This may be a stupid question, but I'm assuming that CONCATENATE would go after the &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle that is already there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 19:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885631#M1688520</guid>
      <dc:creator>JMorozowski</dc:creator>
      <dc:date>2012-07-25T19:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Email Title Modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885632#M1688521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that is correct. I will go after the REPLACE statement that you have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;REPLACE &lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;ls_orderadm_h&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;object_id&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;CONCATENATE ls_statictext &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ls_output_options&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;tdtitle&lt;SPAN class="L0S55"&gt; SEPARATED BY SPACE.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/email-title-modification/m-p/8885632#M1688521</guid>
      <dc:creator>Puneet_Gupta</dc:creator>
      <dc:date>2012-07-25T20:23:27Z</dc:date>
    </item>
  </channel>
</rss>

