DBA Data[Home] [Help]

APPS.PY_ZA_TX_UTL_01032006 dependencies on PAY_USER_TABLES

Line 2029: ( p_TableName IN pay_user_tables.user_table_name%TYPE

2025: -------------------------------------------------------------------------------
2026: -- GetTableValue --
2027: -------------------------------------------------------------------------------
2028: FUNCTION GetTableValue
2029: ( p_TableName IN pay_user_tables.user_table_name%TYPE
2030: , p_ColumnName IN pay_user_columns.user_column_name%TYPE
2031: , p_RowValue IN NUMBER
2032: , p_EffectiveDate IN DATE
2033: ) RETURN VARCHAR2

Line 2037: l_UserTableID pay_user_tables.user_table_id%TYPE;

2033: ) RETURN VARCHAR2
2034: AS
2035: -- Variables
2036: --
2037: l_UserTableID pay_user_tables.user_table_id%TYPE;
2038: l_ColumnID pay_user_columns.user_column_id%TYPE;
2039: l_RowID pay_user_rows_f.user_row_id%TYPE;
2040: l_TableValue pay_user_column_instances_f.value%TYPE;
2041: BEGIN

Line 2047: from pay_user_tables put

2043: -- Get the user_table_id
2044: --
2045: select put.user_table_id
2046: INTO l_UserTableID
2047: from pay_user_tables put
2048: where upper(put.user_table_name) = upper(p_TableName)
2049: AND put.legislation_code = 'ZA';
2050:
2051: hr_utility.set_location('py_za_tx_utl_01032006.GetTableValue',2);

Line 2067: from pay_user_tables put

2063: -- Get the user_row_id
2064: --
2065: select pur.user_row_id
2066: INTO l_RowID
2067: from pay_user_tables put
2068: , pay_user_rows_f pur
2069: where put.user_table_id = l_UserTableID
2070: and pur.user_table_id = put.user_table_id
2071: AND pur.row_high_range IS NOT NULL