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
  • I have found out that it will automatically uppdate the header if the header file is correct. Like TRACEFIELD(1). but now I am trying to request the operator name and fill it in the revision field and it won't work. My code is
    C3 = COMMENT/INPUT,NO,FULL SCREEN=YES
    ENTER OPERATOR NAME
    TRACEFILED/NO_DISPLAY,LIMIT=15; : C3.INPUT :

    However when I do this it automatically grabs C2.INPUT which is the serial number. I am sure the header file is edited correctly. I even threw in "ASSIGN/V2=C3.INPUT". What could I be missing?



    See the misspelled TRACEFIELD above and C3.INPUT should be the second term in the line.

    ex. TRACEFIELD/NO_DISPLAY,LIMIT=15 ; : C3.INPUT

    Also, if you have TRACEFIELD(1) in the header file it will take data from the first tracefield in the program. If you add a new one later before the intended tracefield that becomes number 1.
Reply
  • I have found out that it will automatically uppdate the header if the header file is correct. Like TRACEFIELD(1). but now I am trying to request the operator name and fill it in the revision field and it won't work. My code is
    C3 = COMMENT/INPUT,NO,FULL SCREEN=YES
    ENTER OPERATOR NAME
    TRACEFILED/NO_DISPLAY,LIMIT=15; : C3.INPUT :

    However when I do this it automatically grabs C2.INPUT which is the serial number. I am sure the header file is edited correctly. I even threw in "ASSIGN/V2=C3.INPUT". What could I be missing?



    See the misspelled TRACEFIELD above and C3.INPUT should be the second term in the line.

    ex. TRACEFIELD/NO_DISPLAY,LIMIT=15 ; : C3.INPUT

    Also, if you have TRACEFIELD(1) in the header file it will take data from the first tracefield in the program. If you add a new one later before the intended tracefield that becomes number 1.
Children
No Data