Following are the configuration options for procedure tracing:
  • To trace only specific procedures, specify the corresponding procedure names in the configuration file. For example, if you specify BusinessEntity.p, only the BusinessEntity.p procedure is traced.
  • To trace procedures based on the prefix of the procedure name, directory name (using PROPATH if an absolute directory path is not available), or combination of both, specify the wildcard character * as a suffix in your entry.

    For example:
    • Business*—Traces all procedures that start with Business or any procedures within a directory name starting with Business.
    • ObjA/BusinessEntity*—Traces all procedure names within the ObjA directory that starts with BusinessEntity, including subdirectories under ObjA that starts with BusinessEntity.
    • ObjA/*—Traces all the procedures specified within the ObjA directory.
    • ObjA/sub*—Traces all procedures within the directory name starting with ObjA/sub, or any procedure name starting with sub under the ObjA directory.
  • To trace all the procedures, specify only the wildcard character *.
    Note: Enabling tracing for all the procedures could affect the performance of the application.