DBA Data[Home] [Help]

APPS.PAY_TDU_BUS dependencies on PAY_TIME_DEFINITIONS

Line 34: from pay_time_definitions

30: --
31: cursor csr_parent_bus_leg is
32: select business_group_id,
33: legislation_code
34: from pay_time_definitions
35: where time_definition_id = p_time_definition_id;
36: --
37: l_business_group_id number;
38: l_legislation_code varchar2(30);

Line 119: from pay_time_definitions

115: l_exists varchar2(1);
116: --
117: cursor csr_time_definition_id is
118: select null
119: from pay_time_definitions
120: where time_definition_id = p_time_definition_id;
121: --
122: Begin
123: hr_utility.set_location('Entering:'||l_proc, 5);

Line 209: from pay_time_definitions

205: and hrl.enabled_flag = 'Y';
206:
207: cursor csr_definition_type is
208: select nvl(definition_type,'P')
209: from pay_time_definitions
210: where time_definition_id = p_time_definition_id;
211:
212: --
213: Begin