<?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: Sapscript: Do not interpret two commas in text as tab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633230#M1442233</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;One way could be, create a constant in the print program and use it in script.&lt;/P&gt;&lt;P&gt;eg: CONSTANTS: c_comma(2) TYPE c VALUE ',,'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inscript print this variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;c_comma&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other way is use the character format.&lt;/P&gt;&lt;P&gt;eg: &amp;lt;AA&amp;gt;,,&amp;lt;/AA&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First method is simple i feel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2010 19:34:26 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2010-02-11T19:34:26Z</dc:date>
    <item>
      <title>Sapscript: Do not interpret two commas in text as tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633229#M1442232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since Sapscript interprets two commas in a row as a tab, this causes a problem for any form which prints out any text containing two commas. Does anyone know a way to get Sapscript to ignore these commas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 19:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633229#M1442232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-11T19:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript: Do not interpret two commas in text as tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633230#M1442233</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;One way could be, create a constant in the print program and use it in script.&lt;/P&gt;&lt;P&gt;eg: CONSTANTS: c_comma(2) TYPE c VALUE ',,'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inscript print this variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;c_comma&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other way is use the character format.&lt;/P&gt;&lt;P&gt;eg: &amp;lt;AA&amp;gt;,,&amp;lt;/AA&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First method is simple i feel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 19:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633230#M1442233</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-02-11T19:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sapscript: Do not interpret two commas in text as tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633231#M1442234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hello friend, 
Welcome to SDN. 

The interpretation is different.
Situation 1
&lt;PRE&gt;&lt;CODE&gt;
/: Do,,not,,interpret,,two,,commas,,in,,text,,as,,tab

"the output will look like below text with tabs in between each word.
Do  not interpret two commas  in  text  as  tab
&lt;/CODE&gt;&lt;/PRE&gt;
Situation 2.
&lt;PRE&gt;&lt;CODE&gt;
"Define two variables in script editor like below and display.
/: DEFINE text1 = 'Do not interpret two,,commas in text as tab'
/: DEFINE text2 = ',,Text will be displayed like this'
/: &amp;amp;text1&amp;amp;,,&amp;amp;text2&amp;amp;
"The output will be like below
Do not interpret two,,commas in text as tab ,,Text will be displayed like this
"It does not care what is there inside program symbols &amp;amp;text1&amp;amp; and &amp;amp;text2&amp;amp;
&lt;/CODE&gt;&lt;/PRE&gt;
I think that you will understand. 
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2010 02:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-do-not-interpret-two-commas-in-text-as-tab/m-p/6633231#M1442234</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-02-12T02:28:56Z</dc:date>
    </item>
  </channel>
</rss>

