<?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: Editor in the Sap script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007655#M409376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in menu goto--&amp;gt;change editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 05:39:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T05:39:25Z</dc:date>
    <item>
      <title>Editor in the Sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007652#M409373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am modifying a sap script.&lt;/P&gt;&lt;P&gt;when i open the PC editor in sap script (where i can find PERFORM statements), i dont find the page with signs " /: ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead i am observing plane white screen with PERFORM statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what might be the reason for this..????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 05:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007652#M409373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T05:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Editor in the Sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007653#M409374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You have to WRITE PERFORM statements in the script explicitley for your requirement, when you wants to get some extra data displayed on your script output.&lt;/P&gt;&lt;P&gt;They are not predefined in script.&lt;/P&gt;&lt;P&gt;To calculate totals and sub totals in sap scripts you have to use subroutines. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Say if you have to add the unit price (KOMVD-KBERT) then in the main window whereever tat value is picked write this routine &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;/: DEFINE &amp;amp;TOT_PRICE&amp;amp; &lt;/P&gt;&lt;P&gt;/: PERFORM F_GET_PRICE IN PROGRAM &amp;lt;subroutine prog name&amp;gt; /:USING &amp;amp;KOMVD-KBERT&amp;amp; /:CHANGING &amp;amp;TOT_PRICE&amp;amp; /:ENDPERFORM &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then write the variable where ever you want it to be printed (mostly it will be in footer window) &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then create subroutine pool program and you have to write the code. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM F_GET_PRICE tables int_cond structure itcsy &lt;/P&gt;&lt;P&gt;                                    outt_cond structure itcsy. data : value type kbert. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;statics   value1 type kbert. &lt;/P&gt;&lt;P&gt;Read int_cond table index 1. &lt;/P&gt;&lt;P&gt;value = int_cond-value. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;value1 = value1 + value. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Read outt_cond table index 1. &lt;/P&gt;&lt;P&gt;outt_cond-value = value1. &lt;/P&gt;&lt;P&gt;Modify outt_cond index 1. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ENDFORM. &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>Fri, 16 Mar 2007 05:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007653#M409374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T05:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Editor in the Sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007654#M409375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;when the screen appears &lt;/P&gt;&lt;P&gt;from menu bar select&lt;/P&gt;&lt;P&gt;goto-&amp;gt;change editor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 05:38:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007654#M409375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T05:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Editor in the Sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007655#M409376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in menu goto--&amp;gt;change editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 05:39:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007655#M409376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T05:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Editor in the Sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007656#M409377</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;use path from menu bar select&lt;/P&gt;&lt;P&gt;goto-&amp;gt;change editor &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Please reward suitable points&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;Navin Khedikar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 05:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editor-in-the-sap-script/m-p/2007656#M409377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T05:41:25Z</dc:date>
    </item>
  </channel>
</rss>

