How to make sense of Data structure after SQL replication?

SOLVED

I just recently setup SQL Replication and that seems to be working well now.

Now my goal is to create some reports from this data. Is there any documentation that explains the data structure?

For example, what does PRT, RTT, PJF mean?

More specifically I am trying to build a report of Labor Hours and Overtime Labor Hours.

Thanks!

Parents
  • 0
    SUGGESTED

    For my labor hour reporting, I have chosen to look at the Job Cost tables and filter for the Labor Costs.  I am able to get the RT and OT hours and cost without using the PR tables.  Specifically, I use JCT_CURRENT__TRANSACTION.

    Related to your question re: PRT, RTT, PJF.  The 1st 2 letters relate to the module, and the last letter relates to whether the table contents are Transaction, Master, Activity, etc:

    PRT = Payroll Module - Transaction

Reply
  • 0
    SUGGESTED

    For my labor hour reporting, I have chosen to look at the Job Cost tables and filter for the Labor Costs.  I am able to get the RT and OT hours and cost without using the PR tables.  Specifically, I use JCT_CURRENT__TRANSACTION.

    Related to your question re: PRT, RTT, PJF.  The 1st 2 letters relate to the module, and the last letter relates to whether the table contents are Transaction, Master, Activity, etc:

    PRT = Payroll Module - Transaction

Children