‎2007 Jan 24 11:21 AM
Hi all ,
In SAPscript various system symbols are present like &year&,&page&,
What is the system symbol for displaying last page ?
‎2007 Jan 24 11:24 AM
Hi Amber
&SAPSCRIPT-FORMPAGES& is the symbol for total pages in the current form (for use in Page X of Y) etc.
Regards
Robin
‎2007 Jan 24 11:24 AM
Use the local text symbol &LASTPAGE&
<b>&LASTPAGE&</b>
regards,
vijay
‎2007 Jan 24 11:24 AM
‎2007 Jan 24 11:24 AM
Hi Amber
&SAPSCRIPT-FORMPAGES& is the symbol for total pages in the current form (for use in Page X of Y) etc.
Regards
Robin
‎2007 Jan 24 11:28 AM
Hi Amber,
used &SAPSCRIPT-FORMPAGES&
Note:reward point if useful
‎2007 Jan 24 11:29 AM
‎2007 Jan 24 11:34 AM
hi,
go through this
Symbols are place holder for values in the forms and are filled during
print formatting e.g. &DATE& ,&KNA1-NAME& . They are case insensitive
and are surrounded by &.
There are 3 types of symbols
1) System Symbols
System symbols are system maintained and their value is provided
by the system. These are as follow:
DATE
TIME
HOURS
MINUTES
SECONDS
PAGE
NEXTPAGE
DAY
MONTH
YEAR
NAME_OF_DAY
SPACE
DEVICE
2)Standard Symbols
Standard sumbols are user maintained by using transaction SM30 .These symbols are stored in table TTDG e.g &MFG& which
stands for ' Your's Faithfully ' .
3)Program Symbols
Program symbols are placeholder for database fields and global program symbols in the print program e.g &KNA1-NAME1& here the table
KNA1 has alreadty been declared in the print program using TABLES statement.
hope this solves ur problem
PLZ reward if helpful.
‎2007 May 03 7:02 AM