如何在triggers中调用系统变量?
ebs 11.0.3 reports二次开发,我在AFTERPFORM(Function Body)中有用这样一条语句:
oneRow:= '打印时间:'||to_char(&Current Date)||页数||to_char(&Logical Page Number);
TEXT_IO.PUT_LINE(outFile,oneRow);
report developer2000报错:
Error 103 at line 479,column 8
  Encountered the symbol "|" when expecting one of the following:
   "(" "." "+" "mod" "null" <an identifier>
   <a double-quoted string><a bind variable><a number>
   <a single-quoted SQL string> "avg" "count" "max" "min"
   "prior" "sql" "stddev" "sum" "variance"
 null was inserted  before "|" to continue.
应该怎么引用这个系统时间Current Date和页数Logical Page Number呢??????