Search Results input_value_default




Overview

The APPS.PAYBV_ELEMENT_LINK_DETAIL_V view is a Business Intelligence (BIS) style reporting object within the Oracle E-Business Suite Payroll (PAY) module. It exposes element link configuration data in a denormalized, human-readable form, resolving foreign keys into descriptive names and decoding lookup codes into their translated meanings. Element links determine which elements apply to which employees, assignments, organizations, payrolls, and other criteria, making this view a central reference for payroll configuration analysis. It is defined in the APPS schema with VALID status and is available on both Oracle EBS 12.1.1 and 12.2.2.

The view is purpose-built for reporting and integration rather than transactional processing. Instead of requiring the consumer to join and decode dozens of base tables, it presents each element link with its qualifying criteria, distribution set, cost allocation, and input value defaults already resolved.

Underlying Base Objects

The documented base objects referenced by PAYBV_ELEMENT_LINK_DETAIL_V span several payroll and HR entities:

Key Columns

Common Use Cases and Queries

Typical uses include auditing which elements link to all payrolls, reviewing eligibility criteria per element, validating costing setups, and extracting configuration for migration or reconciliation. A representative query:

SELECT element_name,
       classification_name,
       payroll_name,
       link_to_all_payrolls_flag_m,
       age_criteria,
       service_criteria,
       effective_start_date,
       effective_end_date
FROM   apps.paybv_element_link_detail_v
WHERE  link_to_all_payrolls_flag = 'Y'
ORDER  BY element_name;

To inspect input value defaults for a given element:

SELECT element_name, input_value_name, input_value_default, input_value_uom_m
FROM   apps.paybv_element_link_detail_v
WHERE  element_name = 'My Element';

Because the view invokes HR_SECURITY, results are filtered by the querying user's security profile, so it is safe for use in self-service style reports. Joins to PAY_ELEMENT_LINKS_F on ELEMENT_LINK_ID can supplement additional attributes not exposed directly.