DBA Data[Home] [Help]

APPS.PQP_VAL_INS dependencies on PQP_VEHICLE_ALLOCATIONS_F

Line 91: FROM pqp_vehicle_allocations_f t

87: --
88: Cursor C_Sel1 Is
89: SELECT t.created_by,
90: t.creation_date
91: FROM pqp_vehicle_allocations_f t
92: WHERE t.vehicle_allocation_id = p_rec.vehicle_allocation_id
93: AND t.effective_start_date =
94: pqp_val_shd.g_old_rec.effective_start_date
95: AND t.effective_end_date = (p_validation_start_date - 1);

Line 98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;

94: pqp_val_shd.g_old_rec.effective_start_date
95: AND t.effective_end_date = (p_validation_start_date - 1);
96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;
99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;
100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;
101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;
102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;

Line 99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;

95: AND t.effective_end_date = (p_validation_start_date - 1);
96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;
99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;
100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;
101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;
102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;
103: --

Line 100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;

96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;
99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;
100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;
101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;
102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;
103: --
104: Begin

Line 101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;

97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;
99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;
100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;
101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;
102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);

Line 102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;

98: l_created_by pqp_vehicle_allocations_f.created_by%TYPE;
99: l_creation_date pqp_vehicle_allocations_f.creation_date%TYPE;
100: l_last_update_date pqp_vehicle_allocations_f.last_update_date%TYPE;
101: l_last_updated_by pqp_vehicle_allocations_f.last_updated_by%TYPE;
102: l_last_update_login pqp_vehicle_allocations_f.last_update_login%TYPE;
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);
106: --

Line 111: (p_base_table_name => 'pqp_vehicle_allocations_f'

107: -- Get the object version number for the insert
108: --
109: p_rec.object_version_number :=
110: dt_api.get_object_version_number
111: (p_base_table_name => 'pqp_vehicle_allocations_f'
112: ,p_base_key_column => 'vehicle_allocation_id'
113: ,p_base_key_value => p_rec.vehicle_allocation_id
114: );
115: --

Line 154: -- Insert the row into: pqp_vehicle_allocations_f

150: End If;
151: --
152: --
153: --
154: -- Insert the row into: pqp_vehicle_allocations_f
155: --
156: insert into pqp_vehicle_allocations_f
157: (vehicle_allocation_id
158: ,effective_start_date

Line 156: insert into pqp_vehicle_allocations_f

152: --
153: --
154: -- Insert the row into: pqp_vehicle_allocations_f
155: --
156: insert into pqp_vehicle_allocations_f
157: (vehicle_allocation_id
158: ,effective_start_date
159: ,effective_end_date
160: ,assignment_id

Line 396: from pqp_vehicle_allocations_f

392: Cursor C_Sel1 is select pqp_vehicle_allocations_s.nextval from sys.dual;
393: --
394: Cursor C_Sel2 is
395: Select null
396: from pqp_vehicle_allocations_f
397: where vehicle_allocation_id =
398: pqp_val_ins.g_vehicle_allocation_id_i;
399: --
400: l_proc varchar2(72) := g_package||'pre_insert';

Line 418: fnd_message.set_token('TABLE_NAME','pqp_vehicle_allocations_f');

414: --
415: -- The primary key values are already in use.
416: --
417: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
418: fnd_message.set_token('TABLE_NAME','pqp_vehicle_allocations_f');
419: fnd_message.raise_error;
420: End If;
421: Close C_Sel2;
422: --

Line 632: (p_module_name => 'PQP_VEHICLE_ALLOCATIONS_F'

628: --
629: when hr_api.cannot_find_prog_unit then
630: --
631: hr_api.cannot_find_prog_unit_error
632: (p_module_name => 'PQP_VEHICLE_ALLOCATIONS_F'
633: ,p_hook_type => 'AI');
634: --
635: end;
636: --

Line 697: ,p_base_table_name => 'pqp_vehicle_allocations_f'

693: --
694: dt_api.validate_dt_mode
695: (p_effective_date => p_effective_date
696: ,p_datetrack_mode => p_datetrack_mode
697: ,p_base_table_name => 'pqp_vehicle_allocations_f'
698: ,p_base_key_column => 'vehicle_allocation_id'
699: ,p_base_key_value => p_rec.vehicle_allocation_id
700: ,p_parent_table_name1 =>'pqp_vehicle_repository_f'
701: ,p_parent_key_column1 =>'vehicle_repository_id'