<?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 SCRIPTS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449816#M213134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;these r the system commands in sapscript&lt;/P&gt;&lt;P&gt;7.2	System Symbols &lt;/P&gt;&lt;P&gt;You can use system symbols in all kinds of text. SAPscript supplies the values for system symbols. The names of the system symbols are fixed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.1	Current Date &lt;/P&gt;&lt;P&gt;&amp;amp;DATE&amp;amp;&lt;/P&gt;&lt;P&gt;The current date is displayed. It is formatted according to the specifications found in the user master data. You can adapt this format to your own requirements by specifying a date mask (SET DATE MASK) or by using a country-specific formatting option (SET COUNTRY). &lt;/P&gt;&lt;P&gt;The current value for this symbol is taken from the SY-DATUM field. This value is not copied every time that the date is called, but only at the following times:&lt;/P&gt;&lt;P&gt;&amp;#149;	When printing starts (OPEN_FORM, PRINT_TEXT) &lt;/P&gt;&lt;P&gt;&amp;#149;	When symbols are replaced in the text editor &lt;/P&gt;&lt;P&gt;&amp;#149;	When a text is exported in the ASCII or RTF format &lt;/P&gt;&lt;P&gt;&amp;#149;	When the TEXT_SYMBOL_REPLACE function module is called (optional)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.2	Current Day Number &lt;/P&gt;&lt;P&gt;&amp;amp;DAY&amp;amp;&lt;/P&gt;&lt;P&gt;The current day number is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.3	Current Month Number &lt;/P&gt;&lt;P&gt;&amp;amp;MONTH&amp;amp;&lt;/P&gt;&lt;P&gt;The current month number is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.4	Current Year Number &lt;/P&gt;&lt;P&gt;&amp;amp;YEAR&amp;amp;&lt;/P&gt;&lt;P&gt;This symbol is used to print the current year as a four digit number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.5	Current Day Name (Long Form) &lt;/P&gt;&lt;P&gt;&amp;amp;NAME_OF_DAY&amp;amp;&lt;/P&gt;&lt;P&gt;The name of the current day is written out in full. The language used for the output is determined by the appropriate text language or form language. The names of the days are stored in the TTDTG table under the key %%SAPSCRIPT_DDDD_dd, where dd is the day number (01= Monday,.., 07 = Sunday).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.6	Current Month Name (Long Form) &lt;/P&gt;&lt;P&gt;&amp;amp;NAME_OF_MONTH&amp;amp;&lt;/P&gt;&lt;P&gt;The name of the current month is written out in full. The language used for the output is determined by the appropriate text language or form language. The names of the months are stored in the TTDTG table under the key %%SAPSCRIPT_MMMM_mm, where mm is the month number (01,.., 12). &lt;/P&gt;&lt;P&gt;7.2.7	Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;TIME&amp;amp;&lt;/P&gt;&lt;P&gt;The current time is printed in the form hours:minutes:seconds. Each of the components for hours, minutes, and seconds consists of two digits, using a leading zero if necessary. You can adapt this format to your own requirements by specifying a time mask (SET TIME MASK).&lt;/P&gt;&lt;P&gt;The value for the time field is taken from the SY-UZEIT field. This value can be copied over only at particular times (c.f. DATE ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.8	Hours Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;HOURS&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to hours is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.9	Minutes Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;MINUTES&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to minutes is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.10	Seconds Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;SECONDS&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to seconds is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.11	Current Page Number &lt;/P&gt;&lt;P&gt;&amp;amp;PAGE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert into the text the page number that the current page will have when printed. You can specify the formatting option for the page number in the form for each page type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.12	Page Number of the Next Page &lt;/P&gt;&lt;P&gt;&amp;amp;NEXTPAGE&amp;amp;&lt;/P&gt;&lt;P&gt;This symbol is used to print the number of the following page. The output format is the same as with &amp;amp;PAGE&amp;amp; . &lt;/P&gt;&lt;P&gt;Note that on the last page of the output, in each window that is not of type MAIN, &amp;amp;NEXTPAGE&amp;amp; has the value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.13	Selected Device Type &lt;/P&gt;&lt;P&gt;&amp;amp;DEVICE&amp;amp;&lt;/P&gt;&lt;P&gt;The &amp;amp;DEVICE&amp;amp; symbol is used to print the type of the output device. This type is passed in the DEVICE parameter when the SAPscript output (OPEN_FORM, PRINT_TEXT) is started, and it specifies the device for which the output should be formatted.&lt;/P&gt;&lt;P&gt;Possible values are: &lt;/P&gt;&lt;P&gt;PRINTER&lt;/P&gt;&lt;P&gt;SCREEN&lt;/P&gt;&lt;P&gt;TELEX&lt;/P&gt;&lt;P&gt;TELEFAX&lt;/P&gt;&lt;P&gt;ABAP (ABAP list display) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.14	Spaces &lt;/P&gt;&lt;P&gt;&amp;amp;SPACE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to generate a string of space characters. You must pass the number of space characters required with the symbol. If you leave out the number, then no spaces are printed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.15	Underline &lt;/P&gt;&lt;P&gt;&amp;amp;ULINE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert a string of underline characters into the output text. You must pass the number of underline characters required with the symbol. If you leave out the number, then just one underline character is printed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.16	Vertical Line &lt;/P&gt;&lt;P&gt;&amp;amp;VLINE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert a string of vertical line characters into the output text. You must pass the number of vertical line characters required with the symbol. If you leave out the number, then just one vertical line character is printed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Jul 2006 06:26:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-20T06:26:32Z</dc:date>
    <item>
      <title>SAP SCRIPTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449814#M213132</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 know control commands....&lt;/P&gt;&lt;P&gt; what are system commands in sap scripts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 04:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449814#M213132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T04:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449815#M213133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer.&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="1679030"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check this link &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/Scripts_1.html" target="test_blank"&gt;http://www.allsaplinks.com/Scripts_1.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;do reward if it helps,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 04:08:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449815#M213133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T04:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449816#M213134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;these r the system commands in sapscript&lt;/P&gt;&lt;P&gt;7.2	System Symbols &lt;/P&gt;&lt;P&gt;You can use system symbols in all kinds of text. SAPscript supplies the values for system symbols. The names of the system symbols are fixed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.1	Current Date &lt;/P&gt;&lt;P&gt;&amp;amp;DATE&amp;amp;&lt;/P&gt;&lt;P&gt;The current date is displayed. It is formatted according to the specifications found in the user master data. You can adapt this format to your own requirements by specifying a date mask (SET DATE MASK) or by using a country-specific formatting option (SET COUNTRY). &lt;/P&gt;&lt;P&gt;The current value for this symbol is taken from the SY-DATUM field. This value is not copied every time that the date is called, but only at the following times:&lt;/P&gt;&lt;P&gt;&amp;#149;	When printing starts (OPEN_FORM, PRINT_TEXT) &lt;/P&gt;&lt;P&gt;&amp;#149;	When symbols are replaced in the text editor &lt;/P&gt;&lt;P&gt;&amp;#149;	When a text is exported in the ASCII or RTF format &lt;/P&gt;&lt;P&gt;&amp;#149;	When the TEXT_SYMBOL_REPLACE function module is called (optional)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.2	Current Day Number &lt;/P&gt;&lt;P&gt;&amp;amp;DAY&amp;amp;&lt;/P&gt;&lt;P&gt;The current day number is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.3	Current Month Number &lt;/P&gt;&lt;P&gt;&amp;amp;MONTH&amp;amp;&lt;/P&gt;&lt;P&gt;The current month number is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.4	Current Year Number &lt;/P&gt;&lt;P&gt;&amp;amp;YEAR&amp;amp;&lt;/P&gt;&lt;P&gt;This symbol is used to print the current year as a four digit number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.5	Current Day Name (Long Form) &lt;/P&gt;&lt;P&gt;&amp;amp;NAME_OF_DAY&amp;amp;&lt;/P&gt;&lt;P&gt;The name of the current day is written out in full. The language used for the output is determined by the appropriate text language or form language. The names of the days are stored in the TTDTG table under the key %%SAPSCRIPT_DDDD_dd, where dd is the day number (01= Monday,.., 07 = Sunday).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.6	Current Month Name (Long Form) &lt;/P&gt;&lt;P&gt;&amp;amp;NAME_OF_MONTH&amp;amp;&lt;/P&gt;&lt;P&gt;The name of the current month is written out in full. The language used for the output is determined by the appropriate text language or form language. The names of the months are stored in the TTDTG table under the key %%SAPSCRIPT_MMMM_mm, where mm is the month number (01,.., 12). &lt;/P&gt;&lt;P&gt;7.2.7	Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;TIME&amp;amp;&lt;/P&gt;&lt;P&gt;The current time is printed in the form hours:minutes:seconds. Each of the components for hours, minutes, and seconds consists of two digits, using a leading zero if necessary. You can adapt this format to your own requirements by specifying a time mask (SET TIME MASK).&lt;/P&gt;&lt;P&gt;The value for the time field is taken from the SY-UZEIT field. This value can be copied over only at particular times (c.f. DATE ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.8	Hours Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;HOURS&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to hours is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.9	Minutes Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;MINUTES&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to minutes is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.10	Seconds Component of Current Time &lt;/P&gt;&lt;P&gt;&amp;amp;SECONDS&amp;amp;&lt;/P&gt;&lt;P&gt;The component of the current time referring to seconds is printed. The display includes leading zeros. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.11	Current Page Number &lt;/P&gt;&lt;P&gt;&amp;amp;PAGE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert into the text the page number that the current page will have when printed. You can specify the formatting option for the page number in the form for each page type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.12	Page Number of the Next Page &lt;/P&gt;&lt;P&gt;&amp;amp;NEXTPAGE&amp;amp;&lt;/P&gt;&lt;P&gt;This symbol is used to print the number of the following page. The output format is the same as with &amp;amp;PAGE&amp;amp; . &lt;/P&gt;&lt;P&gt;Note that on the last page of the output, in each window that is not of type MAIN, &amp;amp;NEXTPAGE&amp;amp; has the value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.13	Selected Device Type &lt;/P&gt;&lt;P&gt;&amp;amp;DEVICE&amp;amp;&lt;/P&gt;&lt;P&gt;The &amp;amp;DEVICE&amp;amp; symbol is used to print the type of the output device. This type is passed in the DEVICE parameter when the SAPscript output (OPEN_FORM, PRINT_TEXT) is started, and it specifies the device for which the output should be formatted.&lt;/P&gt;&lt;P&gt;Possible values are: &lt;/P&gt;&lt;P&gt;PRINTER&lt;/P&gt;&lt;P&gt;SCREEN&lt;/P&gt;&lt;P&gt;TELEX&lt;/P&gt;&lt;P&gt;TELEFAX&lt;/P&gt;&lt;P&gt;ABAP (ABAP list display) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.14	Spaces &lt;/P&gt;&lt;P&gt;&amp;amp;SPACE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to generate a string of space characters. You must pass the number of space characters required with the symbol. If you leave out the number, then no spaces are printed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.15	Underline &lt;/P&gt;&lt;P&gt;&amp;amp;ULINE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert a string of underline characters into the output text. You must pass the number of underline characters required with the symbol. If you leave out the number, then just one underline character is printed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2.16	Vertical Line &lt;/P&gt;&lt;P&gt;&amp;amp;VLINE&amp;amp;&lt;/P&gt;&lt;P&gt;You can use this symbol to insert a string of vertical line characters into the output text. You must pass the number of vertical line characters required with the symbol. If you leave out the number, then just one vertical line character is printed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 06:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts/m-p/1449816#M213134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T06:26:32Z</dc:date>
    </item>
  </channel>
</rss>

