Support Links

Technical Bulletins

Customer Downloads

Code Generators

SmartCAM Email Forum

Patches and Utilities

Misc Resources

The Learning SmartCAM Tutorial

SmartCAM V11 Exploring Guides

Contacts


Maintenance Customer
Premium Content

SmartCAMcnc Technical Support

Topic: How do I print Job Notes in a report?

Technote 115 Date: July 1996 Product: All SmartCAM Applications  Version: v9.x

Solution:
    In order to print "Job Info" notes from Version 9 Job Operation Planner, the following additions must be added to your MJOBINF.FMT file located in \sm9\mill\josrpt. For other applications change 'mill' to the appropriate application and the first letter of MJOBINF to the matching application (TJOBINF.FMT for turning, for example).
     

    Note: The additions are in bold.

    extern integer units, rev;
    extern string smf_file, created;
    extern string rev_date, creator;
    extern string prt_desc, matl_desc;
    extern string job_note, mach_desc, matl_notes;

    procedure section_5010000
    {

      format ("Job Operations File= %s Date Created= %s\n", jof_file, created);
      format (" Revisions= %-d Date Revised= %s\n\n", rev, rev_date);
      format (" Created by= %s\n\n", creator);
      format (" Machine Type= %s Units= %s\n", mach_desc, map ( units, ["Inch", "Metric"]));
      format ("Part Description= %s\n", prt_desc);
      format (" Material Desc= %s\n\n", matl_desc);
      format (" Job Notes= %s\n\n", job_note);
      format (" Material Notes= %s\n\n", matl_notes);
      newpage();
    }