hexagon logo

Forms

We currently fill out a CMM Request Sheet for each part we put on the CMM.

Is it possible to add this information to a Form that comes up at the start of each CMM Program for the details section?

Will then need a Pass / Fail Section at the end of the CMM Program and approval.

I'd like these to appear at the start and end of the CMM Reports

TIA for your help

Attached Files
Parents
  • Thanks to Jon and Henniger123 I know have this working as intended

    For reference please see new code below

    ASSIGN/STR_USER=""
    ASSIGN/STR_RESULT=""
    CS2 =FORM/FILENAME= C:\PCDMIS\APPROVAL FORM.FORM
    PARAM/CBOUSER.TEXTVALUE=STR_USER
    PARAM/COMBORESULT.TEXTVALUE=STR_RESULT
    PARAM/=
    ENDFORM/
    COMMENT/REPT,
    ********************
    CMM Layout Approval
    ********************​
    COMMENT/REPT,
    "NAME: "+STR_USER
    COMMENT/REPT,
    "RESULT: "+STR_RESULT
    ASSIGN/V1=SYSTEMDATE("dd/MM/yy")
    ASSIGN/V2=SYSTEMTIME("HH:mm:ss")
    COMMENT/REPT,
    DATE:
    V1
    COMMENT/REPT,
    TIME:
    V2​
Reply
  • Thanks to Jon and Henniger123 I know have this working as intended

    For reference please see new code below

    ASSIGN/STR_USER=""
    ASSIGN/STR_RESULT=""
    CS2 =FORM/FILENAME= C:\PCDMIS\APPROVAL FORM.FORM
    PARAM/CBOUSER.TEXTVALUE=STR_USER
    PARAM/COMBORESULT.TEXTVALUE=STR_RESULT
    PARAM/=
    ENDFORM/
    COMMENT/REPT,
    ********************
    CMM Layout Approval
    ********************​
    COMMENT/REPT,
    "NAME: "+STR_USER
    COMMENT/REPT,
    "RESULT: "+STR_RESULT
    ASSIGN/V1=SYSTEMDATE("dd/MM/yy")
    ASSIGN/V2=SYSTEMTIME("HH:mm:ss")
    COMMENT/REPT,
    DATE:
    V1
    COMMENT/REPT,
    TIME:
    V2​
Children
No Data