<?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: Problem in displaying the text in script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467100#M1416608</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably need to define the variable as blank, then do the perform ABAP subroutine that is described in Appendix A-19-A-21 of the SAPScript Made Easy Manual...  It's been a while since I did this, so beware...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE &amp;amp;PLANTSES&amp;amp; := ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: perform set_plantses in program &amp;lt;z_programname&amp;gt; "a subroutine pool essentially.&lt;/P&gt;&lt;P&gt;/: using &amp;amp;EKPO-WERKS&amp;amp;&lt;/P&gt;&lt;P&gt;/: changing &amp;amp;PLANTSES&amp;amp;&lt;/P&gt;&lt;P&gt;/: endperform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form set_plantses tables IN_PAR structure itcsy "your EKPO-WERKS is in field value&lt;/P&gt;&lt;P&gt;                                        out_par structure itcsy.&lt;/P&gt;&lt;P&gt;data: xpar type itcsy.&lt;/P&gt;&lt;P&gt;read table in_par into xpar index 1.&lt;/P&gt;&lt;P&gt;read table out_par index 1.&lt;/P&gt;&lt;P&gt;concatenate 'ZTEST_' xpar-value into out_par-value.&lt;/P&gt;&lt;P&gt;modify out_par index 1.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2010 12:29:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-05T12:29:39Z</dc:date>
    <item>
      <title>Problem in displaying the text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467098#M1416606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       I am working on a script, here is the code which I have done. Now the problem is below two includes are there. from that text has to be written two times but the second include only working , first include is not working . when I was debugging it &amp;amp;PLANTSES&amp;amp; is having 'ZTEST_1435' . but still text is not displaying . help me in this please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE &amp;amp;PLANTSES&amp;amp; := u2018ZTEST_&amp;amp;EKPO-WERKS&amp;amp;u2019&lt;/P&gt;&lt;P&gt;INCLUDE &amp;amp;PLANTSES&amp;amp; OBJECT TEXT ID ST LANGUAGE &amp;amp;EKKO-SPRAS&amp;amp;&lt;/P&gt;&lt;P&gt;INCLUDE 'ZTEST_1435' OBJECT TEXT ID ST LANGUAGE &amp;amp;EKKO-SPRAS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;G.S.Naidu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 05:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467098#M1416606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T05:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467099#M1416607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any idea please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 05:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467099#M1416607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T05:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467100#M1416608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably need to define the variable as blank, then do the perform ABAP subroutine that is described in Appendix A-19-A-21 of the SAPScript Made Easy Manual...  It's been a while since I did this, so beware...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE &amp;amp;PLANTSES&amp;amp; := ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: perform set_plantses in program &amp;lt;z_programname&amp;gt; "a subroutine pool essentially.&lt;/P&gt;&lt;P&gt;/: using &amp;amp;EKPO-WERKS&amp;amp;&lt;/P&gt;&lt;P&gt;/: changing &amp;amp;PLANTSES&amp;amp;&lt;/P&gt;&lt;P&gt;/: endperform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form set_plantses tables IN_PAR structure itcsy "your EKPO-WERKS is in field value&lt;/P&gt;&lt;P&gt;                                        out_par structure itcsy.&lt;/P&gt;&lt;P&gt;data: xpar type itcsy.&lt;/P&gt;&lt;P&gt;read table in_par into xpar index 1.&lt;/P&gt;&lt;P&gt;read table out_par index 1.&lt;/P&gt;&lt;P&gt;concatenate 'ZTEST_' xpar-value into out_par-value.&lt;/P&gt;&lt;P&gt;modify out_par index 1.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 12:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-text-in-script/m-p/6467100#M1416608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T12:29:39Z</dc:date>
    </item>
  </channel>
</rss>

