hexagon logo

Multiple Reports

Is it possible to use separate custom reports inside the one program?

I need to measure some bits of a part and/or other bits dependent on what the operator choice is at the start of the program and need to show clear Cad views with dimensions attached for each situation, which a custom report works well with. Can I call them into a program at different locations etc...?

Or is there some form of legacy or hyper report that I could do this with? TIA
Parents Reply Children
  • I have the same problem as OP.

    Want to do with REPORT command and I can't figure it out how.

    I have 3 parts on one fixture, want to save a custom report (CAD) for every single one.

    I've tried:
    /code1
    -CS1 =REPORT/CUSTOM, FILENAME=Custom Report_G1, Section=-1
    PARAM/=
    ENDCUSTOM/
    PRINT/REPORT,EXEC MODE=END,$
    TO_FILE=ON,AUTO=1,AUTO OPEN=OFF,$
    TO_PRINTER=OFF,COPIES=1,$
    TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$
    REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMENSIONS=NO,$
    TO_EXCEL=OFF,$
    PREVIOUS_RUNS=DELETE_INSTANCES
    /code2
    -CS2 =REPORT/CUSTOM, FILENAME=Custom Report_G2, Section=-1
    PARAM/=
    ENDCUSTOM/
    PRINT/REPORT,EXEC MODE=END,$
    TO_FILE=ON,AUTO=10,AUTO OPEN=OFF,$
    TO_PRINTER=OFF,COPIES=1,$
    TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$
    REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMENSIONS=NO,$
    TO_EXCEL=OFF,$
    PREVIOUS_RUNS=DELETE_INSTANCES

    ....