<?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/2158766#M456404</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naga.&lt;/P&gt;&lt;P&gt;Text symbols are global variables that are filled into the print program linked to a form.&lt;/P&gt;&lt;P&gt;Standard symbols are somehow "constants" for some common items (paragraph numbering, "What to do", "Syntax"). You should use these standard symbols if you want SAP automatically to handle the language translations for these constants.&lt;/P&gt;&lt;P&gt;System symbols are global variables valid for all forms, for example, page number, total number of pages, and several fields of structure SY/SYST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps. BR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2007 06:42:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-20T06:42:25Z</dc:date>
    <item>
      <title>sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158762#M456400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what r system symobls ,standard symbols,text symbols ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158762#M456400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158763#M456401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158763#M456401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158764#M456402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Symbols : &lt;/P&gt;&lt;P&gt;		- are placeholders for texts.&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;		&amp;amp;symbol&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Four Types :&lt;/P&gt;&lt;P&gt;		System Symbols.&lt;/P&gt;&lt;P&gt;		Standard Symbols.&lt;/P&gt;&lt;P&gt;		Program Symbols.	&lt;/P&gt;&lt;P&gt;		Text Symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System Symbols :&lt;/P&gt;&lt;P&gt;		SAPscript supplies the values for system symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;		&amp;amp;Date&amp;amp;&lt;/P&gt;&lt;P&gt;		&amp;amp;DAY&amp;amp;&lt;/P&gt;&lt;P&gt;		&amp;amp;MONTH&amp;amp;&lt;/P&gt;&lt;P&gt;		&amp;amp;TIME&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard Symbols :&lt;/P&gt;&lt;P&gt;	Standard symbols are defined in table 	TTDTG.&lt;/P&gt;&lt;P&gt;	TTDTG contains the name of each symbol and its value.  &lt;/P&gt;&lt;P&gt;	SAP supplies this table filled with standard entries.&lt;/P&gt;&lt;P&gt;	Can use standard symbols in all kinds of  text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program Symbols : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Represent data supplied by the program that is currently executing.&lt;/P&gt;&lt;P&gt;	datas are copied into work areas declared using TABLES.&lt;/P&gt;&lt;P&gt;	Symbols which obtain their values from this work area are called program &lt;/P&gt;&lt;P&gt;         symbols.&lt;/P&gt;&lt;P&gt;	The value of  a program symbol is limited to 255 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text Symbols :&lt;/P&gt;&lt;P&gt;	All symbols except the above three symbols are text 	symbols.&lt;/P&gt;&lt;P&gt;	we define text symbols ourselves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two ways of defining :&lt;/P&gt;&lt;P&gt;In the text editor :  INCLUDE -&amp;gt;SYMBOLS-&amp;gt;TEXT  &lt;/P&gt;&lt;P&gt;In the text, use the control command DEFINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158764#M456402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158765#M456403</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;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/f4/b4a0b3453611d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/f4/b4a0b3453611d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPscript symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overview&lt;/P&gt;&lt;P&gt;&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;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;Program symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program symbols are for values from the ABAP print program.&lt;/P&gt;&lt;P&gt;For example, &amp;amp;VBDPA-NETWR(11)&amp;amp; in SAPscript code represents the value of the ABAP field VBDPA-NETWR, but as text (to be printable) and restricted to 11 characters.&lt;/P&gt;&lt;P&gt;Such values are not explicitly passed by the print program. A side effect of some of the SAPscript-related function calls that a print program makes seems to be that all the ABAP fields and their contents (as they are at that moment) become available for SAPscript-symbol use.&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;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158765#M456403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158766#M456404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naga.&lt;/P&gt;&lt;P&gt;Text symbols are global variables that are filled into the print program linked to a form.&lt;/P&gt;&lt;P&gt;Standard symbols are somehow "constants" for some common items (paragraph numbering, "What to do", "Syntax"). You should use these standard symbols if you want SAP automatically to handle the language translations for these constants.&lt;/P&gt;&lt;P&gt;System symbols are global variables valid for all forms, for example, page number, total number of pages, and several fields of structure SY/SYST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps. BR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158766#M456404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158767#M456405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naga Mrudula,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Symbols are constants used to save un nessessary  work used in documentation &lt;/P&gt;&lt;P&gt; 1. system symbols : example: &amp;amp;date&amp;amp; &amp;amp;time&amp;amp; etc &lt;/P&gt;&lt;P&gt; 2. text symbols: they are defined using control statements &lt;/P&gt;&lt;P&gt;     protect...endprotect, if endif, etc &lt;/P&gt;&lt;P&gt; 3. standard symbols : all the messages are stored in TTDTG table &lt;/P&gt;&lt;P&gt; 4. program symbols  : used in abap program example: &amp;amp;i_mara-matnr&amp;amp; &amp;amp;i_mara-ernam&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/2158767#M456405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T06:44:09Z</dc:date>
    </item>
  </channel>
</rss>

