<?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 formating in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380269#M185782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The I option suppresses the output of symbols that still contain their initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax&lt;/P&gt;&lt;P&gt;&amp;amp;symbol(I)&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming KNA1-UMSAT contains the value 0 and the currency is USD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT&amp;amp;           0.00&lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT(I)&amp;amp;        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field contains an amount other than 0, this value will be output in the usual way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Jun 2006 09:45:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-13T09:45:08Z</dc:date>
    <item>
      <title>SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380263#M185776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;What is the signficance of (C), (I) formatting in SAP Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv&lt;/P&gt;&lt;P&gt;Manu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380263#M185776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380264#M185777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;amp; variable(c)&amp;amp; -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; used for condence&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex- var = 'kishan  singh'&lt;/P&gt;&lt;P&gt;&amp;amp;var(c)&amp;amp; -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;kishansingh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;var(i)&amp;amp;--- suppresses the output of symbol that still contain their initail vaue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex--&lt;/P&gt;&lt;P&gt;var = 0.00&lt;/P&gt;&lt;P&gt;&amp;amp;var(i)&amp;amp; =    .---&amp;gt; spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: kishan negi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380264#M185777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380265#M185778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Space Compression&amp;lt;/b&amp;gt; The symbol value is viewed as a sequence of &amp;#145;words&amp;#146;, each separated from the next by either one or a string of space characters. The C option has the effect of replacing each string of space characters with a single space and shifting the &amp;#145;words&amp;#146; to the left as necessary to close up the gaps. Leading spaces are completely removed. The results are the same as those of the ABAP command CONDENSE. &lt;/P&gt;&lt;P&gt;Syntax: &lt;/P&gt;&lt;P&gt;&amp;amp;symbol(C)&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Suppressing Output of Initial Values&amp;lt;/b&amp;gt; Use the I option to suppress the output of symbols that still contain their initial values. &lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&amp;amp;symbol(I)&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming KNA1-UMSAT contains the value 0 and the currency is DEM. &lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT&amp;amp; -&amp;gt; 0,00 &lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT(I)&amp;amp; -&amp;gt; &lt;/P&gt;&lt;P&gt;If the field contains an amount other than 0, this value is printed in the normal way. &lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT&amp;amp; -&amp;gt; 700,00 &lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT(I)&amp;amp; -&amp;gt; 700,00 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming ' Albert Einstein ' is the symbol value,&lt;/P&gt;&lt;P&gt;&amp;amp;symbol&amp;amp; -&amp;gt; Albert Einstein &lt;/P&gt;&lt;P&gt;&amp;amp;symbol(C)&amp;amp; -&amp;gt; Albert Einstein &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380265#M185778</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-06-13T09:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380266#M185779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am mainly looking for (I) formatting . Could any one let me know that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380266#M185779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380267#M185780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the links below for formatting options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.howforge.com/formatting-options-in-sapscript-without-the-leading-zeros" target="test_blank"&gt;http://www.howforge.com/formatting-options-in-sapscript-without-the-leading-zeros&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.howforge.com/formatting-options-in-sapscript-offset" target="test_blank"&gt;http://www.howforge.com/formatting-options-in-sapscript-offset&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Thomas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380267#M185780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380268#M185781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Formatting (I) option is used to surpress the display of initial values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally, initial value of currey is like 0,00.&lt;/P&gt;&lt;P&gt;or Intial value of numeric is 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this I format option to surpress of printing those zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most of companies ask the developes, if the value is zero or initial, do not print. So that was the situation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380268#M185781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAPscript formating</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380269#M185782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The I option suppresses the output of symbols that still contain their initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax&lt;/P&gt;&lt;P&gt;&amp;amp;symbol(I)&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming KNA1-UMSAT contains the value 0 and the currency is USD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT&amp;amp;           0.00&lt;/P&gt;&lt;P&gt;&amp;amp;KNA1-UMSAT(I)&amp;amp;        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field contains an amount other than 0, this value will be output in the usual way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 09:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-formating/m-p/1380269#M185782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T09:45:08Z</dc:date>
    </item>
  </channel>
</rss>

