<?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: Issue in the Script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425122#M1738604</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;Check the length of your text that appears in one line of your script. I think the first 80 chars are visible in the window although all the chars are present in the variable. You might have to split and display the value in 2 to 3 lines based on window width.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 May 2013 02:48:22 GMT</pubDate>
    <dc:creator>arindam_m</dc:creator>
    <dc:date>2013-05-18T02:48:22Z</dc:date>
    <item>
      <title>Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425120#M1738602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai All &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using perform statement in sap script.&lt;/P&gt;&lt;P&gt;I need take a "Terms of payment" text in a PO, the length of text is 180, but when return the text to script only take the 80 first words.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: text(255) type c.&lt;/P&gt;&lt;P&gt;call function 'READ_TEXT'&lt;/P&gt;&lt;P&gt;&amp;nbsp; exporting&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; id = id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; language = language "sy-langu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; name = name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; object = object&lt;/P&gt;&lt;P&gt;&amp;nbsp; tables&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; lines = tlinetab &lt;/P&gt;&lt;P&gt;&amp;nbsp; exceptions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; others = 8.&lt;/P&gt;&lt;P&gt; if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp; loop at tlinetab.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; concatenate text tlinetab-tdline into text&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; separated by space.&lt;/P&gt;&lt;P&gt;&amp;nbsp; endloop.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; clear tlinetab.&lt;/P&gt;&lt;P&gt; refresh : tlinetab.&amp;nbsp; clear tlinetab. &lt;/P&gt;&lt;P&gt; read table out_table with key name = 'TEXT'.&lt;/P&gt;&lt;P&gt; ind = sy-tabix.&lt;/P&gt;&lt;P&gt; write text to out_table-value.&lt;/P&gt;&lt;P&gt; out_table-value = out_table-value.&lt;/P&gt;&lt;P&gt; modify out_table index ind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;/P&gt;&lt;P&gt;The Sap Script code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp; DEFINE &amp;amp;ZID&amp;amp; = 'F07'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp; DEFINE &amp;amp;ZOBJECT&amp;amp; = 'EKKO'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp; PERFORM TEXTOS IN PROGRAM ZPEDIDO&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; USING &amp;amp;ZOBJECT&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; USING &amp;amp;ZID&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; USING &amp;amp;EKKO-EBELN&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHANGING &amp;amp;TEXT&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;/:&amp;nbsp;&amp;nbsp; ENDPERFORM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I´m debugging the ABAP program the value that take the variables text and out_table-value is correct, but in the script is wrong.&lt;/P&gt;&lt;P&gt;How I resolve this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2013 14:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425120#M1738602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-17T14:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425121#M1738603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CHANGING &amp;amp;TEXT1&amp;amp; &lt;/P&gt;&lt;P&gt;CHANGING &amp;amp;TEXT2&amp;amp;&lt;/P&gt;&lt;P&gt;CHANGING &amp;amp;TEXT3&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you put the 3 texts in the good order in your page &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1434/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt; &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;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2013 18:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425121#M1738603</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-05-17T18:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425122#M1738604</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;Check the length of your text that appears in one line of your script. I think the first 80 chars are visible in the window although all the chars are present in the variable. You might have to split and display the value in 2 to 3 lines based on window width.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 May 2013 02:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425122#M1738604</guid>
      <dc:creator>arindam_m</dc:creator>
      <dc:date>2013-05-18T02:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425123#M1738605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swaroopa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the Data Declarations for ur variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more details please go through the link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/501690" title="http://scn.sap.com/thread/501690"&gt;http://scn.sap.com/thread/55501690&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Kranthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 May 2013 10:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425123#M1738605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-18T10:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425124#M1738606</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;&amp;nbsp; Check the window width. i think the the 180 characters are not fitting in the window.&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;PRudhvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 May 2013 12:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425124#M1738606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-18T12:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in the Script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425125#M1738607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for Yours Replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Got the Solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swaroopa K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 04:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-the-script/m-p/9425125#M1738607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-20T04:38:40Z</dc:date>
    </item>
  </channel>
</rss>

