<?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 Calculated values not printing . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066613#M972039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear SAP expert,&lt;/P&gt;&lt;P&gt;When we created PO ( Scheduling Agreement ) for certain stationary items, the system calculates the taxes correctly, the calculated values are not printed in the PO document. And system showing zero against tax condition in printout.&lt;/P&gt;&lt;P&gt;Where should i check for the same?&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2008 06:29:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-03T06:29:11Z</dc:date>
    <item>
      <title>Calculated values not printing .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066613#M972039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear SAP expert,&lt;/P&gt;&lt;P&gt;When we created PO ( Scheduling Agreement ) for certain stationary items, the system calculates the taxes correctly, the calculated values are not printed in the PO document. And system showing zero against tax condition in printout.&lt;/P&gt;&lt;P&gt;Where should i check for the same?&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 06:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066613#M972039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T06:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated values not printing .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066614#M972040</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;This  seems to be form problem. Check  printing form where tax amount is wriiten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward pts if usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 06:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066614#M972040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T06:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated values not printing .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066615#M972041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Please enable the script debugger and find what values is being passed to that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO Enable the debugger&lt;/P&gt;&lt;P&gt;go to SE71 -- &amp;gt; Enter Form Name --&amp;gt; Utilities --&amp;gt; Activate Debugger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the correct value is not passed just call a subroutine from the script&lt;/P&gt;&lt;P&gt;and populate the value .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample Code To be written in script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Perform &amp;lt;Subroutine Name&amp;gt; in &amp;lt;Program Name&amp;gt;&lt;/P&gt;&lt;P&gt;Using VAR1&lt;/P&gt;&lt;P&gt;Changing VAR2&lt;/P&gt;&lt;P&gt;EndPerform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample Code in Program.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM &amp;lt;Subroutine name&amp;gt; TABLES INPUT STRUCTURE ITCSY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT STRUCTURE ITCSY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE INPUT WITH KEY 'VAR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALUE1 = INPUT-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT var2 INTO var2 FROM &amp;lt;table&amp;gt; WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE OUTPUT INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE var2 TO OUTPUT-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIFT OUTPUT-VALUE LEFT DELETING LEADING SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY OUTPUT INDEX 1.&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;VIjay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vijay on Jul 3, 2008 8:51 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 06:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calculated-values-not-printing/m-p/4066615#M972041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T06:50:55Z</dc:date>
    </item>
  </channel>
</rss>

