DBA Data[Home] [Help]

APPS.PER_SCN_SHD dependencies on PER_SCN_SHD

Line 1: Package Body per_scn_shd as

1: Package Body per_scn_shd as
2: /* $Header: pescnrhi.pkb 120.1 2011/04/28 09:51:49 sidsaxen ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' per_scn_shd.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_scn_shd.'; -- Global package name
9: --
10: -- ----------------------------------------------------------------------------
11: -- |---------------------------< constraint_error >---------------------------|
12: -- ----------------------------------------------------------------------------

Line 87: = per_scn_shd.g_old_rec.solution_id and

83: --
84: l_fct_ret := false;
85: Else
86: If (p_solution_id
87: = per_scn_shd.g_old_rec.solution_id and
88: p_component_name
89: = per_scn_shd.g_old_rec.component_name and
90: p_solution_type_name
91: = per_scn_shd.g_old_rec.solution_type_name and

Line 89: = per_scn_shd.g_old_rec.component_name and

85: Else
86: If (p_solution_id
87: = per_scn_shd.g_old_rec.solution_id and
88: p_component_name
89: = per_scn_shd.g_old_rec.component_name and
90: p_solution_type_name
91: = per_scn_shd.g_old_rec.solution_type_name and
92: p_object_version_number
93: = per_scn_shd.g_old_rec.object_version_number

Line 91: = per_scn_shd.g_old_rec.solution_type_name and

87: = per_scn_shd.g_old_rec.solution_id and
88: p_component_name
89: = per_scn_shd.g_old_rec.component_name and
90: p_solution_type_name
91: = per_scn_shd.g_old_rec.solution_type_name and
92: p_object_version_number
93: = per_scn_shd.g_old_rec.object_version_number
94: ) Then
95: --

Line 93: = per_scn_shd.g_old_rec.object_version_number

89: = per_scn_shd.g_old_rec.component_name and
90: p_solution_type_name
91: = per_scn_shd.g_old_rec.solution_type_name and
92: p_object_version_number
93: = per_scn_shd.g_old_rec.object_version_number
94: ) Then
95: --
96: -- The g_old_rec is current therefore we must
97: -- set the returning function to true

Line 105: Fetch C_Sel1 Into per_scn_shd.g_old_rec;

101: --
102: -- Select the current row into g_old_rec
103: --
104: Open C_Sel1;
105: Fetch C_Sel1 Into per_scn_shd.g_old_rec;
106: If C_Sel1%notfound Then
107: Close C_Sel1;
108: --
109: -- The primary key is invalid therefore we must error

Line 116: <> per_scn_shd.g_old_rec.object_version_number) Then

112: fnd_message.raise_error;
113: End If;
114: Close C_Sel1;
115: If (p_object_version_number
116: <> per_scn_shd.g_old_rec.object_version_number) Then
117: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
118: fnd_message.raise_error;
119: End If;
120: l_fct_ret := true;

Line 182: Fetch C_Sel1 Into per_scn_shd.g_old_rec;

178: ,p_argument_value => p_object_version_number
179: );
180: --
181: Open C_Sel1;
182: Fetch C_Sel1 Into per_scn_shd.g_old_rec;
183: If C_Sel1%notfound then
184: Close C_Sel1;
185: --
186: -- The primary key is invalid therefore we must error

Line 193: <> per_scn_shd.g_old_rec.object_version_number) Then

189: fnd_message.raise_error;
190: End If;
191: Close C_Sel1;
192: If (p_object_version_number
193: <> per_scn_shd.g_old_rec.object_version_number) Then
194: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
195: fnd_message.raise_error;
196: End If;
197: --

Line 243: end per_scn_shd;

239: Return(l_rec);
240: --
241: End convert_args;
242: --
243: end per_scn_shd;