<?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: Elements in sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631489#M605104</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;A variable in SAPscript is called a symbol. There are the following types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; System symbol (e.g. the number of the current page)&lt;/P&gt;&lt;P&gt;&amp;#149; Standard symbol (usable in any document)&lt;/P&gt;&lt;P&gt;&amp;#149; Program symbol (value from the print program)&lt;/P&gt;&lt;P&gt;&amp;#149; Text symbol (&amp;#147;local variable&amp;#148;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto any PAGEWINDOW's Text elements in Script (SE71)&lt;/P&gt;&lt;P&gt;from the Menu-&amp;gt; INSERT-&amp;gt; Symbols &lt;/P&gt;&lt;P&gt;you find all symbols here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.&lt;/P&gt;&lt;P&gt;1. General system symbols&lt;/P&gt;&lt;P&gt;See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.&lt;/P&gt;&lt;P&gt;2. SAPscript system symbols&lt;/P&gt;&lt;P&gt;See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.&lt;/P&gt;&lt;P&gt;3. ABAP system symbols&lt;/P&gt;&lt;P&gt;For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. [SYST is the dictionary structure for ABAP system fields.]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;User: &amp;amp;SYST-UNAME&amp;amp;&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Page &amp;amp;PAGE&amp;amp; of &amp;amp;SAPSCRIPT-FORMPAGES(C3)&amp;amp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tools&lt;/P&gt;&lt;P&gt;Form Printout&lt;/P&gt;&lt;P&gt;Administration&lt;/P&gt;&lt;P&gt;Settings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.&lt;/P&gt;&lt;P&gt;The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.&lt;/P&gt;&lt;P&gt;We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.&lt;/P&gt;&lt;P&gt;Standard symbols complicate searching a SAPscript form, since text like &amp;#145;Charity registration 211581&amp;#146; may be hiding in a standard symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: DEFINE &amp;amp;COMP_NAME&amp;amp; = &amp;#145;University of Warwick&amp;#146;&lt;/P&gt;&lt;P&gt;/: DEFINE &amp;amp;WS_RATE&amp;amp; = &amp;amp;TAX_SUMM_C&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCRIPT COMMANDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADDRESS : Formatting of Address&lt;/P&gt;&lt;P&gt;BOTTOM, ENDBOTTOM : Define Footer text in a window&lt;/P&gt;&lt;P&gt;BOX, POSITION, SIZE : Boxes, Lines and Shading&lt;/P&gt;&lt;P&gt;CASE, ENDCASE : Case Distinction&lt;/P&gt;&lt;P&gt;DEFINE : Value assignment to text symbols&lt;/P&gt;&lt;P&gt;HEX, ENDHEX : Hexadecimal values&lt;/P&gt;&lt;P&gt;IF, ENDIF : Conditional text output&lt;/P&gt;&lt;P&gt;INCLUDE : Include other texts&lt;/P&gt;&lt;P&gt;NEW-PAGE : Explicit forms feed&lt;/P&gt;&lt;P&gt;NEW-WINDOW : Next window main&lt;/P&gt;&lt;P&gt;PRINT-CONTROL : Insert print control character&lt;/P&gt;&lt;P&gt;PROTECT...ENDPROTECT : Protect from page break&lt;/P&gt;&lt;P&gt;RESET : Initialize outline paragraphs&lt;/P&gt;&lt;P&gt;SET COUNTRY : Country-specific formating&lt;/P&gt;&lt;P&gt;SET DATE MASK : Formating of date fields&lt;/P&gt;&lt;P&gt;SET SIGN : Position of +/- sign&lt;/P&gt;&lt;P&gt;SET TIME MASK : Formating of time fields&lt;/P&gt;&lt;P&gt;STYLE : Change style&lt;/P&gt;&lt;P&gt;SUMMING : Summing variables&lt;/P&gt;&lt;P&gt;TOP : Set header text in window MAIN&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>Fri, 27 Jul 2007 05:48:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-27T05:48:29Z</dc:date>
    <item>
      <title>Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631488#M605103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning all.&lt;/P&gt;&lt;P&gt;What are elements of sapscripts?&lt;/P&gt;&lt;P&gt;Why and how will I use them?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 05:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631488#M605103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631489#M605104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;A variable in SAPscript is called a symbol. There are the following types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; System symbol (e.g. the number of the current page)&lt;/P&gt;&lt;P&gt;&amp;#149; Standard symbol (usable in any document)&lt;/P&gt;&lt;P&gt;&amp;#149; Program symbol (value from the print program)&lt;/P&gt;&lt;P&gt;&amp;#149; Text symbol (&amp;#147;local variable&amp;#148;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto any PAGEWINDOW's Text elements in Script (SE71)&lt;/P&gt;&lt;P&gt;from the Menu-&amp;gt; INSERT-&amp;gt; Symbols &lt;/P&gt;&lt;P&gt;you find all symbols here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.&lt;/P&gt;&lt;P&gt;1. General system symbols&lt;/P&gt;&lt;P&gt;See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.&lt;/P&gt;&lt;P&gt;2. SAPscript system symbols&lt;/P&gt;&lt;P&gt;See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.&lt;/P&gt;&lt;P&gt;3. ABAP system symbols&lt;/P&gt;&lt;P&gt;For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. [SYST is the dictionary structure for ABAP system fields.]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;User: &amp;amp;SYST-UNAME&amp;amp;&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Page &amp;amp;PAGE&amp;amp; of &amp;amp;SAPSCRIPT-FORMPAGES(C3)&amp;amp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tools&lt;/P&gt;&lt;P&gt;Form Printout&lt;/P&gt;&lt;P&gt;Administration&lt;/P&gt;&lt;P&gt;Settings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.&lt;/P&gt;&lt;P&gt;The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.&lt;/P&gt;&lt;P&gt;We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.&lt;/P&gt;&lt;P&gt;Standard symbols complicate searching a SAPscript form, since text like &amp;#145;Charity registration 211581&amp;#146; may be hiding in a standard symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: DEFINE &amp;amp;COMP_NAME&amp;amp; = &amp;#145;University of Warwick&amp;#146;&lt;/P&gt;&lt;P&gt;/: DEFINE &amp;amp;WS_RATE&amp;amp; = &amp;amp;TAX_SUMM_C&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCRIPT COMMANDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADDRESS : Formatting of Address&lt;/P&gt;&lt;P&gt;BOTTOM, ENDBOTTOM : Define Footer text in a window&lt;/P&gt;&lt;P&gt;BOX, POSITION, SIZE : Boxes, Lines and Shading&lt;/P&gt;&lt;P&gt;CASE, ENDCASE : Case Distinction&lt;/P&gt;&lt;P&gt;DEFINE : Value assignment to text symbols&lt;/P&gt;&lt;P&gt;HEX, ENDHEX : Hexadecimal values&lt;/P&gt;&lt;P&gt;IF, ENDIF : Conditional text output&lt;/P&gt;&lt;P&gt;INCLUDE : Include other texts&lt;/P&gt;&lt;P&gt;NEW-PAGE : Explicit forms feed&lt;/P&gt;&lt;P&gt;NEW-WINDOW : Next window main&lt;/P&gt;&lt;P&gt;PRINT-CONTROL : Insert print control character&lt;/P&gt;&lt;P&gt;PROTECT...ENDPROTECT : Protect from page break&lt;/P&gt;&lt;P&gt;RESET : Initialize outline paragraphs&lt;/P&gt;&lt;P&gt;SET COUNTRY : Country-specific formating&lt;/P&gt;&lt;P&gt;SET DATE MASK : Formating of date fields&lt;/P&gt;&lt;P&gt;SET SIGN : Position of +/- sign&lt;/P&gt;&lt;P&gt;SET TIME MASK : Formating of time fields&lt;/P&gt;&lt;P&gt;STYLE : Change style&lt;/P&gt;&lt;P&gt;SUMMING : Summing variables&lt;/P&gt;&lt;P&gt;TOP : Set header text in window MAIN&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>Fri, 27 Jul 2007 05:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631489#M605104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631490#M605105</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;Refer to this related thread&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2930750"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 05:50:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631490#M605105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631491#M605106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;" SAPscript Tutorial  - Main elements -&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 1.Language&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Language in which the data coming on to the layout set will be printed. Generally, this will be the language that has been set up as default in the SAP system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"2. Header&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section to define the various attributes of the layout set on a global level. Changing these attributes will affect all the components of the layout set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The various components of the header are explained below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;" Administration Information&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;This shows the information about the layout set &amp;#150; details of the designer, details of changes occurring to the design, development class of the layout set and the language details for the layout set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;" Standard Attributes&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Description - Brief description or title of the layout set &lt;/P&gt;&lt;P&gt;Default paragraph - The base paragraph that is globally applicable to the document. This can be overridden at lower level of the layout set by using other paragraphs &lt;/P&gt;&lt;P&gt;Tab Stop - The base tab-stop that is globally applicable to the document. These can be overridden at lower level of the layout set by using other tab stops &lt;/P&gt;&lt;P&gt;First Page - The start page of the layout set &lt;/P&gt;&lt;P&gt;Page Format &lt;/P&gt;&lt;P&gt;Orientation - The direction of printing the data on a page &amp;#150; P for portrait (vertical) and L for landscape (horizontal) &lt;/P&gt;&lt;P&gt;Lines per inch &lt;/P&gt;&lt;P&gt;Characters/inch &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;" Font Attributes&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Here the various attributes and the base font applicable to the document can be defined. This font setting can be overridden at a lower level using the character strings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 3. Paragraphs&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Used to define the start and end positions for the different texts and objects that need to be printed on the output document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 4.Character Strings&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Used to define the fonts and the formatting and printing styles for each and every character that needs to be printed on the output document. The start of the character string is indicated by &amp;lt;string name&amp;gt;, while the end of the character string is indicated by &amp;lt;/&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 5.Pages&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The designer needs to organise the template as a series of pages. When an actual output document is printed, it will refer to each page for putting the data coming from the ABAP program. The order of pages is also taken from the template i.e the layout set defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 6.Windows&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Various parts of the output document can be conveniently organised on the pages using windows. Thus the data stream coming from the ABAP program can be logically grouped into various parts and can be placed on different locations on a page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 main types of windows that can be used in a layout set:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MAIN&amp;lt;/b&amp;gt; - A layout set can have only one MAIN window which is created by default. This window can flow over multiple pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONSTANT&amp;lt;/b&amp;gt; - A layout set can have any number of constant windows. A constant window can be used once per page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 7.Text Elements&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any text that needs to be written on the output document should be placed within a text element. This includes constant text as well as variable data like internal table data coming from the ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is advisable to group logically related data within one text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields of various tables defined in the ABAP program will be included under these text elements. These fields are carriers of data. Every field should be included in a pair of &amp;amp; characters. (e.g. &amp;amp;aufk-aufnr&amp;amp;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" 8.Page Windows&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the windows that form a page of the layout set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose the window and click the Text Elements button to go to the Layout Set Editor. This consists of 2 parts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The small space on the left is for specifying the type of command, while the window adjacent to it is for writing the command or the text that needs to go under a text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull .....  enjoy the weekend &lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 05:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631491#M605106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631492#M605107</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;A element in a statement is command line area which we can call various time using WRITE_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.;g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in sapscript &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;/E  ULINE
/: ****************************************************************************
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;where /E represents element with name ULINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now u can use this in write_form using element parameter in various locations... without duplicating codes...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 05:52:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631492#M605107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631493#M605108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Elements in SAP Script&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; They are predefined text components which are determined in the layout set definition.                              They can be accessed with one name.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Elements are related to the window in which they are defined. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Elements have to be called explicitly.  You also have to specify the window.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Window MAIN is always the default.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 05:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631493#M605108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T05:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631494#M605109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;How can I use the element from abap side that I have defined in the layout set?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 06:08:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631494#M605109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T06:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Elements in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631495#M605110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Layout set and Print program and the layout set has windows in it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 06:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elements-in-sapscript/m-p/2631495#M605110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T06:20:50Z</dc:date>
    </item>
  </channel>
</rss>

