DBA Data[Home] [Help]

APPS.PAY_ELE_UPD dependencies on PAY_ELEMENT_ENTRIES_F

Line 79: (p_base_table_name => 'pay_element_entries_f'

75: -- version number.
76: --
77: p_rec.object_version_number :=
78: dt_api.get_object_version_number
79: (p_base_table_name => 'pay_element_entries_f'
80: ,p_base_key_column => 'element_entry_id'
81: ,p_base_key_value => p_rec.element_entry_id
82: );
83: --

Line 86: -- Update the pay_element_entries_f Row

82: );
83: --
84: pay_ele_shd.g_api_dml := true; -- Set the api dml status
85: --
86: -- Update the pay_element_entries_f Row
87: --
88: update pay_element_entries_f
89: set
90: element_entry_id = p_rec.element_entry_id

Line 88: update pay_element_entries_f

84: pay_ele_shd.g_api_dml := true; -- Set the api dml status
85: --
86: -- Update the pay_element_entries_f Row
87: --
88: update pay_element_entries_f
89: set
90: element_entry_id = p_rec.element_entry_id
91: ,cost_allocation_keyflex_id = p_rec.cost_allocation_keyflex_id
92: ,assignment_id = p_rec.assignment_id

Line 363: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'

359: -- Insert the comment text if comments exist
360: --
361: If (p_rec.comments is not null and p_rec.comment_id is null) then
362: hr_comm_api.ins(p_comment_id => p_rec.comment_id
363: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'
364: ,p_comment_text => p_rec.comments
365: );
366: -- Update the comments if they have changed
367: ElsIf (p_rec.comment_id is not null and p_rec.comments <>

Line 370: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'

366: -- Update the comments if they have changed
367: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
368: pay_ele_shd.g_old_rec.comments) then
369: hr_comm_api.upd(p_comment_id => p_rec.comment_id
370: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'
371: ,p_comment_text => p_rec.comments
372: );
373: End If;
374: --

Line 687: (p_module_name => 'PAY_ELEMENT_ENTRIES_F'

683: --
684: when hr_api.cannot_find_prog_unit then
685: --
686: hr_api.cannot_find_prog_unit_error
687: (p_module_name => 'PAY_ELEMENT_ENTRIES_F'
688: ,p_hook_type => 'AU');
689: --
690: end;
691: --