DBA Data[Home] [Help]

APPS.GHR_PRE_SHD dependencies on GHR_PA_REMARKS

Line 21: If (p_constraint_name = 'GHR_PA_REMARKS_FK1') Then

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'GHR_PA_REMARKS_FK1') Then
22: hr_utility.set_message(8301, 'GHR_38048_INV_PA_REQUEST_ID');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_FK2') Then
25: hr_utility.set_message(8301, 'GHR_38109_INV_REMARK_ID');

Line 24: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_FK2') Then

20: --
21: If (p_constraint_name = 'GHR_PA_REMARKS_FK1') Then
22: hr_utility.set_message(8301, 'GHR_38048_INV_PA_REQUEST_ID');
23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_FK2') Then
25: hr_utility.set_message(8301, 'GHR_38109_INV_REMARK_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_PK') Then
28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 27: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_PK') Then

23: hr_utility.raise_error;
24: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_FK2') Then
25: hr_utility.set_message(8301, 'GHR_38109_INV_REMARK_ID');
26: hr_utility.raise_error;
27: ElsIf (p_constraint_name = 'GHR_PA_REMARKS_PK') Then
28: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
29: hr_utility.set_message_token('PROCEDURE', l_proc);
30: hr_utility.set_message_token('STEP','15');
31: hr_utility.raise_error;

Line 66: from ghr_pa_remarks

62: remark_code_information3,
63: remark_code_information4,
64: remark_code_information5,
65: object_version_number
66: from ghr_pa_remarks
67: where pa_remark_id = p_pa_remark_id;
68: --
69: l_proc varchar2(72) := g_package||'api_updating';
70: l_fct_ret boolean;

Line 145: from ghr_pa_remarks

141: remark_code_information3,
142: remark_code_information4,
143: remark_code_information5,
144: object_version_number
145: from ghr_pa_remarks
146: where pa_remark_id = p_pa_remark_id
147: for update nowait;
148: --
149: l_proc varchar2(72) := g_package||'lck';

Line 188: hr_utility.set_message_token('TABLE_NAME', 'ghr_pa_remarks');

184: -- The object is locked therefore we need to supply a meaningful
185: -- error message.
186: --
187: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
188: hr_utility.set_message_token('TABLE_NAME', 'ghr_pa_remarks');
189: hr_utility.raise_error;
190: End lck;
191: --
192: -- ----------------------------------------------------------------------------