hexagon logo

add page numbers 2013 sp2

Hi all,
I am trying to DD Pgwe numbers to my report, only I can't find out which report I a using. so I am making the change acroos the board.
Can anyone tell me how to find out which report my programs use?
I am adding a text box to the bottom of the report and then right clicking on it to change the properties.
I go to the text 1 and text 2 and left click to the right of the text property and it automatically fills in
with the page number and number of pages code. That didn't work. So I then put a check into the box to the left of the
word text and it came up with how i want to promt the operator. I do not want to prompt the operator. I just want page of X pages at the bottom of my reports.
Can any point me in the right direction to accomplish this?

Floyd
Parents
  • Just one way to do it.

    ONUM =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    ENTER THE ORDER NUMBER 
    .
    EXAMPLE 123456789
    .
    SNUM =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    ENTER THE SERIAL NUMBER
    .
    EXAMPLE 1 OR 2 ( NO MORE 6789-1)
    . 
    OPNOT =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    TYPE IN OPERATOR NOTES
    .
    TYPE AS 1 LINE DO NOT CLICK ENTER UNTILL DONE 
    .
    COMMENT/REPT,
    .
    .
    COMMENT/REPT,
    "~~4 OPERATOR NOTES: " +OPNOT.INPUT
    COMMENT/REPT,
    "ORDER NUMBER :"+ONUM.INPUT
    COMMENT/REPT,
    "SERIAL NUMBER :"+SNUM.INPUT
    

    the ~~4 turns the line red
    AL
Reply
  • Just one way to do it.

    ONUM =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    ENTER THE ORDER NUMBER 
    .
    EXAMPLE 123456789
    .
    SNUM =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    ENTER THE SERIAL NUMBER
    .
    EXAMPLE 1 OR 2 ( NO MORE 6789-1)
    . 
    OPNOT =COMMENT/INPUT,NO,FULL SCREEN=NO,
    .
    TYPE IN OPERATOR NOTES
    .
    TYPE AS 1 LINE DO NOT CLICK ENTER UNTILL DONE 
    .
    COMMENT/REPT,
    .
    .
    COMMENT/REPT,
    "~~4 OPERATOR NOTES: " +OPNOT.INPUT
    COMMENT/REPT,
    "ORDER NUMBER :"+ONUM.INPUT
    COMMENT/REPT,
    "SERIAL NUMBER :"+SNUM.INPUT
    

    the ~~4 turns the line red
    AL
Children
No Data