DBA Data[Home] [Help]

APPS.PAY_PEL_UPD dependencies on PAY_ELEMENT_LINKS_F

Line 78: (p_base_table_name => 'pay_element_links_f'

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

Line 85: -- Update the pay_element_links_f Row

81: );
82: --
83: pay_pel_shd.g_api_dml := true; -- Set the api dml status
84: --
85: -- Update the pay_element_links_f Row
86: --
87: update pay_element_links_f
88: set
89: element_link_id = p_rec.element_link_id

Line 87: update pay_element_links_f

83: pay_pel_shd.g_api_dml := true; -- Set the api dml status
84: --
85: -- Update the pay_element_links_f Row
86: --
87: update pay_element_links_f
88: set
89: element_link_id = p_rec.element_link_id
90: ,cost_allocation_keyflex_id = p_rec.cost_allocation_keyflex_id
91: ,element_type_id = p_rec.element_type_id

Line 357: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'

353: -- Insert the comment text if comments exist
354: --
355: If (p_rec.comments is not null and p_rec.comment_id is null) then
356: hr_comm_api.ins(p_comment_id => p_rec.comment_id
357: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'
358: ,p_comment_text => p_rec.comments
359: );
360: -- Update the comments if they have changed
361: ElsIf (p_rec.comment_id is not null and p_rec.comments <>

Line 364: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'

360: -- Update the comments if they have changed
361: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
362: pay_pel_shd.g_old_rec.comments) then
363: hr_comm_api.upd(p_comment_id => p_rec.comment_id
364: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'
365: ,p_comment_text => p_rec.comments
366: );
367: End If;
368: --

Line 636: (p_module_name => 'PAY_ELEMENT_LINKS_F'

632: --
633: when hr_api.cannot_find_prog_unit then
634: --
635: hr_api.cannot_find_prog_unit_error
636: (p_module_name => 'PAY_ELEMENT_LINKS_F'
637: ,p_hook_type => 'AU');
638: --
639: end;
640: --