DFWorks does not allow users to export Job Types and their descriptions and associated accounts and sub-accounts from the DFWorks web page. The following query can be run from SQL Query Editor in the DFWorks web page and exported as a CSV file:
SELECT JT.JOBTYPEID AS "Job Type Name",
JT.DESCRIPTION AS "Description",
AC.DISPLAYSTR AS "Account|SubAccount"
FROM JOB_TYPE_INFO JT,ACCOUNT AC
WHERE JT.ACCOUNTIDFK=AC.ID(+)
ORDER BY JT.JOBTYPEID
UPDATED: November 20, 2017