<?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: Passing values to script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966441#M68663</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 whether the data declared at globally or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the value assigned for count is before calling corresponding text elemtnt in write_form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count = 10&lt;/P&gt;&lt;P&gt;write_form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Oct 2005 13:10:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-03T13:10:06Z</dc:date>
    <item>
      <title>Passing values to script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966439#M68661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frnds,&lt;/P&gt;&lt;P&gt; I have a variable in ABAP print program and the same is being passed to SAP Script layout.&lt;/P&gt;&lt;P&gt; eg. count type i . ( in ABAP program ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Script..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: IF &amp;amp;count&amp;amp; = 0.&lt;/P&gt;&lt;P&gt;   -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;/: ENDIF&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;But this is not working.... YYYY?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2005 13:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966439#M68661</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2005-10-03T13:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966440#M68662</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;You can pass program data only if those are gloabl data,&lt;/P&gt;&lt;P&gt;so check where count is declared in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2005 13:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966440#M68662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-03T13:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966441#M68663</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 whether the data declared at globally or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the value assigned for count is before calling corresponding text elemtnt in write_form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count = 10&lt;/P&gt;&lt;P&gt;write_form &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2005 13:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966441#M68663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-03T13:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966442#M68664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sapscript interprets all values as text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: IF &amp;amp;COUNT&amp;amp; = '0'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above does not work then try passing count to a char field in program and then use this field in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2005 13:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966442#M68664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-03T13:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966443#M68665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks dude...&lt;/P&gt;&lt;P&gt; passed the value as a character n its working fine...&lt;/P&gt;&lt;P&gt; 10 pts to u :)-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; madan....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2005 13:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-values-to-script/m-p/966443#M68665</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2005-10-03T13:18:40Z</dc:date>
    </item>
  </channel>
</rss>

