hexagon logo

Creating a Template

I'm trying to create a template. I'm stuck on how to get the data into the proper place. I have 5 pcs

Attached Files
Parents
  • Allllllrightyyyyyy

    I don't recommend Tracefields, only because I don't know what they are!
    Instead you can use assignments.
    In the report, you can have, instead of =TRACEFIELD<whatever else>,
    =VARIABLE("V1")
    Where V1 is the name of a variable.

    Let's say you have a serial number variable defined in PC-DMIS
    ASSIGN/V_SER="99999-9"
    


    In your report header, in whatever cell you want the serial number to display, you'd have this:
    =VARIABLE("V_SER")
    


    Then, in every program, you'd have to include the V_SER number and it'll show up there.

Reply
  • Allllllrightyyyyyy

    I don't recommend Tracefields, only because I don't know what they are!
    Instead you can use assignments.
    In the report, you can have, instead of =TRACEFIELD<whatever else>,
    =VARIABLE("V1")
    Where V1 is the name of a variable.

    Let's say you have a serial number variable defined in PC-DMIS
    ASSIGN/V_SER="99999-9"
    


    In your report header, in whatever cell you want the serial number to display, you'd have this:
    =VARIABLE("V_SER")
    


    Then, in every program, you'd have to include the V_SER number and it'll show up there.

Children