<?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: SAP SCRIPT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458724#M551510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;What are the different types of windows in SAP Scripts?&lt;/P&gt;&lt;P&gt;Windows are defined in the Layout sets which define the position and the text to displayed.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The different types of windows are:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MAIN - Main Window&lt;/P&gt;&lt;P&gt;The main window is a continous window which can extend over several pages. If the text in the main window fills up a page, a new page is created.&lt;/P&gt;&lt;P&gt;Only one main window can be defined in the SAP Script whereas upto 100 instances of main window can be created in a page. &lt;/P&gt;&lt;P&gt;VAR - Variable Window&lt;/P&gt;&lt;P&gt;This window can have the variable contents displayed on them. The contents of the window cannot exceed the window size. The content can be formatted for each page. &lt;/P&gt;&lt;P&gt;CONST - Constant Window&lt;/P&gt;&lt;P&gt;The constant window can have a fixed content and is formatted only once. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main Windows (MAIN)&lt;/P&gt;&lt;P&gt;Each form must have one window of type MAIN. Such a window is called the main window of the form. For SAPscript forms, the main window has a central meaning:&lt;/P&gt;&lt;P&gt;&amp;#149; It controls the page break.&lt;/P&gt;&lt;P&gt;&amp;#149; It contains the text body that may cover several pages.&lt;/P&gt;&lt;P&gt;&amp;#149; It allows to fix text elements at the upper and lower margins of the allocated page window (for example, for column headings).&lt;/P&gt;&lt;P&gt;As soon as a window of type MAIN is full, SAPscript automatically triggers a page break and continues to output the remaining text in the main window of the subsequent page. Page windows of type MAIN have the same width throughout the form. The SAPscript composer thus avoids reformatting of the text after each page break.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable Windows (VAR)&lt;/P&gt;&lt;P&gt;The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different form pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constant Windows (CONST)&lt;/P&gt;&lt;P&gt;Starting with Release 4.0, the system internally processes windows of type CONST similar to windows of type VAR. Therefore, if you create a new window, always use type VAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&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>Tue, 26 Jun 2007 09:38:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-26T09:38:02Z</dc:date>
    <item>
      <title>SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458721#M551507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HOW MANY WINDOW TYPES ARE AVAILABLE IN SCRIPT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 09:33:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458721#M551507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T09:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458722#M551508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are three types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Windows 



If you are using the graphical Form Painter, read about the Administration Screen as well. 

Windows are defined in form maintenance. They represent areas that are positioned on pages &amp;#150; as page windows &amp;#150; and in which at a later time text is printed. You must define at least one window for each form. Otherwise, SAPscript cannot format the text. 

You can assign window names and window types. However, note that you can define only one main window per form. 

Use one of these window types: 

MAIN 
Main window in which continuous text is printed. This is the window used by dialog users of a print program and form. For example, the body text of a letter would be entered in MAIN. 

The text in the main window can extend over several pages. If the text fills one page, output continues in the window of the next and subsequent pages, as long as MAIN has been defined for these pages. 

For more information, see Main Window.

VAR 
Window with variable contents. The text can vary on each page in which the window is positioned. Variable windows are formatted for each page. 

To every window you can assign text, which is printed in the corresponding window when the form is formatted. To assign text, use text elements, which are stored with the form. 

To create and maintain text elements with the SAPscript Editor, choose Text elements. For more information, see Text Elements.

Should the text selected for the window exceed the window size, then the text is cut off. 

CONST 
Window with constant contents that is formatted only once. 



Currently, CONST windows are processed in the same way as VAR windows. You should only use windows of type VAR. 

Default Paragraph

For a particular window, you can override the default paragraph format that is set in the form header. Enter the default format that should apply in the window in the Default paragraph field in the window definition screen.

 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 09:34:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458722#M551508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T09:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458723#M551509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Balaji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use only one Main window (it will be there by default) for one layout for printing the data and you can create any number of Variable and Constants windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Sasidhar Reddy Matli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 09:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458723#M551509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T09:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458724#M551510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;What are the different types of windows in SAP Scripts?&lt;/P&gt;&lt;P&gt;Windows are defined in the Layout sets which define the position and the text to displayed.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The different types of windows are:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MAIN - Main Window&lt;/P&gt;&lt;P&gt;The main window is a continous window which can extend over several pages. If the text in the main window fills up a page, a new page is created.&lt;/P&gt;&lt;P&gt;Only one main window can be defined in the SAP Script whereas upto 100 instances of main window can be created in a page. &lt;/P&gt;&lt;P&gt;VAR - Variable Window&lt;/P&gt;&lt;P&gt;This window can have the variable contents displayed on them. The contents of the window cannot exceed the window size. The content can be formatted for each page. &lt;/P&gt;&lt;P&gt;CONST - Constant Window&lt;/P&gt;&lt;P&gt;The constant window can have a fixed content and is formatted only once. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main Windows (MAIN)&lt;/P&gt;&lt;P&gt;Each form must have one window of type MAIN. Such a window is called the main window of the form. For SAPscript forms, the main window has a central meaning:&lt;/P&gt;&lt;P&gt;&amp;#149; It controls the page break.&lt;/P&gt;&lt;P&gt;&amp;#149; It contains the text body that may cover several pages.&lt;/P&gt;&lt;P&gt;&amp;#149; It allows to fix text elements at the upper and lower margins of the allocated page window (for example, for column headings).&lt;/P&gt;&lt;P&gt;As soon as a window of type MAIN is full, SAPscript automatically triggers a page break and continues to output the remaining text in the main window of the subsequent page. Page windows of type MAIN have the same width throughout the form. The SAPscript composer thus avoids reformatting of the text after each page break.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable Windows (VAR)&lt;/P&gt;&lt;P&gt;The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different form pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constant Windows (CONST)&lt;/P&gt;&lt;P&gt;Starting with Release 4.0, the system internally processes windows of type CONST similar to windows of type VAR. Therefore, if you create a new window, always use type VAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&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>Tue, 26 Jun 2007 09:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458724#M551510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T09:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458725#M551511</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;There are 3 Window types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAIN Window contains the major info to be printed. It varies form page to page. If datda is more it gets extended to next Page. This is Mandatory in a Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VAR Window with variable contents. The text can vary on each page in which the window is positioned. Variable windows are formatted for each page. To every window you can assign text, which is printed in the corresponding window when the form is formatted. To assign text, use text elements, which are stored with the form. To create and maintain text elements with the SAPscript Editor, choose Text elements. Should the text selected for the window exceed the window size, then the text is cut off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONST Window with constant contents that is formatted only once. Currently, CONST windows are processed in the same way as VAR windows. You should only use windows of type VAR.&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;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 09:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458725#M551511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T09:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458726#M551512</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;There are three types of windows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constant Windows (CONST)&lt;/P&gt;&lt;P&gt;Starting with Release 4.0, the system internally processes windows of type CONST similar to windows of type VAR. Therefore, if you create a new window, always use type VAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable Windows (VAR)&lt;/P&gt;&lt;P&gt;The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different form pages.&lt;/P&gt;&lt;P&gt;As far as the processing of the window contents is concerned, the system currently treats constant and variable windows alike. The only difference is that constant windows have the same size throughout the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main Windows (MAIN)&lt;/P&gt;&lt;P&gt;Each form must have one window of type MAIN. Such a window is called the main window of the form. For SAPscript forms, the main window has a central meaning:&lt;/P&gt;&lt;P&gt;&amp;#149; It controls the page break.&lt;/P&gt;&lt;P&gt;&amp;#149; It contains the text body that may cover several pages.&lt;/P&gt;&lt;P&gt;&amp;#149; It allows to fix text elements at the upper and lower margins of the allocated page window (for example, for column headings).&lt;/P&gt;&lt;P&gt;As soon as a window of type MAIN is full, SAPscript automatically triggers a page break and continues to output the remaining text in the main window of the subsequent page. Page windows of type MAIN have the same width throughout the form. The SAPscript composer thus avoids reformatting of the text after each page break.&lt;/P&gt;&lt;P&gt;If a page does not have a main window, the system implicitly processes all other windows of the page and continues with the subsequent page. This page must not call itself as subsequent page (recursive call), since this would produce an endless loop. In such a case, SAPscript terminates the output after three subsequent pages.&lt;/P&gt;&lt;P&gt;For printing header lines or totals, the different output areas of the main window are of special importance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 12:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458726#M551512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T12:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458727#M551513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;there are  3 types of windows in sap script&lt;/P&gt;&lt;P&gt;1 variable window:  here content is generated on every new page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 constant window: here content is generated only once and printed on every page&lt;/P&gt;&lt;P&gt;3main window: it is the main business text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 13:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2458727#M551513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T13:15:11Z</dc:date>
    </item>
  </channel>
</rss>

