Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

2/9/22, 12:21 PM Document 2118009.

1
Copyright (c) 2022, Oracle. All rights reserved. Oracle Confidential.

Fusion Global Payroll: Manage Calculation Cards (W4) Related Tables (Doc ID 2118009.1)

In this Document

Goal
Solution
References

APPLIES TO:

Oracle Fusion Global Payroll Cloud Service - Version 11.1.10.0.0 and later
Oracle Fusion Global Payroll - Version 11.1.10.0.0 and later

Information in this document applies to any platform.

GOAL

Table and Query to find Calculation Card Details


SOLUTION

1. Tables mentioned below are important tables to explore.

PAY_DIR_CARDS_F

PAY_DIR_CARD_COMPONENTS_F
PAY_DIR_CARD_DEFINITIONS

PAY_DIR_CARD_DEFINITIONS_VL
PAY_DIR_CARD_COMP_DEFS_F

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=18ln8wvlg0_4&id=2118009.1 1/3
2/9/22, 12:21 PM Document 2118009.1

PAY_DIR_CARD_COMP_DEFS_VL
PAY_DIR_COMP_DETAILS_F
PAY_DIR_CARD_DEFINITIONS
PAY_DIR_REP_CARDS_F - This table contains the association between a card, or a section of a card, and a tax reporting unit,
thus forming a reporting card.
PAY_DIR_REP_CARD_USAGES_F - This table contains mappings of deduction components to employment terms or
assignments within a reporting card.
PAY_ELEMENT_ENTRIES_F
FUSION.PAY_RANGE_ITEMS_F PRI
FUSION.PAY_VALUE_DEFINITIONS_F
FUSION.PAY_DIR_OVERRIDE_USAGES_F
FUSION.PAY_ALLOW_OVERRIDES_VL
FUSION.PAY_VALUE_DEFINITIONS_VL

2. Please find Sample Query, it might be helpful:

SELECT pri.*
FROM fusion.pay_range_items_f pri, fusion.pay_value_definitions_f vd, fusion.pay_dir_override_usages_f dou,
fusion.pay_allow_overrides_vl aor, fusion.pay_value_definitions_vl vdl, pay_dir_card_components_f pdcc,
pay_dir_card_definitions_vl pdcd,
pay_dir_card_comp_defs_vl pdccd, pay_dir_cards_f pdcf, pay_element_entries_f pee
WHERE pri.value_defn_id = vd.value_defn_id
and vd.dir_override_usage_id = dou.dir_override_usage_id
and dou.allow_overrides_id = aor.allow_overrides_id
and vd.parent_value_defn_id = vdl.value_defn_id
and vdl.base_name = 'Time Unit'
and vd.source_type = 'PDCC' and vd.source_id = pdcc.dir_card_comp_id
and pdccd.dir_card_comp_def_id=pdcc.dir_card_comp_def_id
and pdccd.base_component_name =
and pdccd.dir_card_definition_id = pdcd.dir_card_definition_id
and pdcd.base_display_name = 'Time Cards'
and pdcc.dir_card_id = pdcf.dir_card_id
and pdcf.payroll_relationship_id =
and pee.element_type_id = pdccd.element_type_id
and pee.creator_id = pdcc.dir_card_comp_id
and pee.creator_type = 'DIR_COMP'
and pee.element_entry_id =
and '26-FEB-16' = pri.effective_start_date
and '26-FEB-16' between vd.effective_start_date and vd.effective_end_date
and '26-FEB-16' between dou.effective_start_date and dou.effective_end_date
and '26-FEB-16' between aor.effective_start_date and aor.effective_end_date
and '26-FEB-16' between vdl.effective_start_date and vdl.effective_end_date
and '26-FEB-16' between pdcc.effective_start_date and pdcc.effective_end_date
and '26-FEB-16' between pee.effective_start_date and pee.effective_end_date

3. For detailed documentation of table/view details in Oracle Enterprise Repository.


https://fusionappsoer.oracle.com/oer/index.jsp

Login as guest and find complete details of respective tables.

REFERENCES

NOTE:166650.1 - Working Effectively With Oracle Support - Best Practices


Didn't find what you are looking for?

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=18ln8wvlg0_4&id=2118009.1 2/3
2/9/22, 12:21 PM Document 2118009.1

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=18ln8wvlg0_4&id=2118009.1 3/3

You might also like