How Do I Link Cost Centers to Journal Entries in Workday Financial Management?
Question
How do I link cost centers to journal entries in Workday Financial Management?
Environment
Connector: Workday Financial Management
Answer
To link cost centers with journal entries in Workday Financial Management via Fivetran:
- Cost center details are stored in the
cost_centertable. - Journal entries are represented in the
journal_entryandjournal_entry_linetables. Each journal entry can have multiple associated lines. - Worktags are a flexible attribution system within Workday that associate financial transactions, including journal entry lines, with attributes like cost center, project, and others.
- Cost centers are linked to journal entry lines through worktags:
- Each record in
journal_entry_linemay link to one or more worktags via a worktag association ID or reference column. - Join
journal_entry_linewith theworktagtable, for example, onjournal_entry_line.worktag_id=worktag.id, whereworktag.attribute=Cost_Center_Reference_ID. - The resulting
worktag.valuewill match theidcolumn in thecost_centertable. - Join this value to the
cost_centertable to retrieve the cost center details, for example,worktag.value=cost_center.id.
- Each record in
- There is no direct 1:1 mapping between journal entries and cost centers—linkages are derived via worktag associations per line item.
Example join workflow
- Identify journal entry lines in
journal_entry_line. - Join to
worktagonworktag_id. Filter whereworktag.attribute = 'Cost_Center_Reference_ID'. - Join to
cost_centerwhereworktag.value = cost_center.id.
For more information, see Workday Financial Management.