<?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: text in script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219999#M476530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  spliting of standard text is not possible in scripts i hope.&lt;/P&gt;&lt;P&gt;Instead u can take 2 standard texts which fufill ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2007 09:07:16 GMT</pubDate>
    <dc:creator>sreeramkumar_madisetty</dc:creator>
    <dc:date>2007-05-03T09:07:16Z</dc:date>
    <item>
      <title>text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219994#M476525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,  can any body tell me how to split standard text in sap-script. suppose i am having text like,&lt;/P&gt;&lt;P&gt;     'ABAP10101344 NEEDS TO UPDATED'&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  Now i want to split it into two like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 'ABAP10101344&lt;/P&gt;&lt;P&gt;NEEDS TO UPDATED'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with out effecting the other below text.&lt;/P&gt;&lt;P&gt;                Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 08:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219994#M476525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T08:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219995#M476526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Use split statement  ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : v_test(50) type c value  'ABAP10101344 NEEDS TO UPDATED'.
 
 split v_test at ' ' into var1 var2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 08:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219995#M476526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T08:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219996#M476527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;If it is a single Standard text which is maintained in SO10 tcode.&lt;/P&gt;&lt;P&gt;use the fun module READ_TEXT  in the program and get it &lt;/P&gt;&lt;P&gt;and split it into two strings by doing offset of the Text and &lt;/P&gt;&lt;P&gt;use those two separate strings in the Scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without program if you wants to use, then write the two Texts in SO10 separately as STXT1 and STX2 and put them in scripts with &lt;/P&gt;&lt;P&gt;/: INCLUDE &amp;lt;text Name&amp;gt; ID &amp;lt;id&amp;gt; Lang&amp;lt;name&amp;gt; Paragraph &amp;lt;name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219996#M476527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219997#M476528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is.... devide the text into two standard texts and use. for both the applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the new requirement use a paragraph format. where as the previous one try out with character formats so that both the texts come as concatenated....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219997#M476528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219998#M476529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if first part always having same length then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;transfer this text to variable.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;w_var = 'ABAP10101344 NEEDS TO UPDATED'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at first line put like this,&lt;/P&gt;&lt;P&gt;w_var+0(13)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at second line put like this,&lt;/P&gt;&lt;P&gt;w_var+13(99)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here instead of 99, give the remaining length of the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:04:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219998#M476529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219999#M476530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  spliting of standard text is not possible in scripts i hope.&lt;/P&gt;&lt;P&gt;Instead u can take 2 standard texts which fufill ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2219999#M476530</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-03T09:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: text in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2220000#M476531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well there might be a way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can display that value in another window (which has to be created first).&lt;/P&gt;&lt;P&gt;My idea would be to create a new window on that form of yours.&lt;/P&gt;&lt;P&gt;Place that window at the location where your Standard-text should be shown.&lt;/P&gt;&lt;P&gt;Now the clou, set the width of your new window to a value where your standard text has to make up a new line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEWARE, i never tested that, it´s just an idea, but it COULD work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 09:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-in-script/m-p/2220000#M476531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T09:13:22Z</dc:date>
    </item>
  </channel>
</rss>

