DBA Data[Home] [Help]

APPS.PER_STC_SHD dependencies on PER_STC_SHD

Line 1: Package Body per_stc_shd as

1: Package Body per_stc_shd as
2: /* $Header: pestcrhi.pkb 120.1 2005/08/29 11:48:34 ndorai noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 84: = per_stc_shd.g_old_rec.component_name and

80: --
81: l_fct_ret := false;
82: Else
83: If (p_component_name
84: = per_stc_shd.g_old_rec.component_name and
85: p_solution_type_name
86: = per_stc_shd.g_old_rec.solution_type_name and
87: p_legislation_code
88: = per_stc_shd.g_old_rec.legislation_code and

Line 86: = per_stc_shd.g_old_rec.solution_type_name and

82: Else
83: If (p_component_name
84: = per_stc_shd.g_old_rec.component_name and
85: p_solution_type_name
86: = per_stc_shd.g_old_rec.solution_type_name and
87: p_legislation_code
88: = per_stc_shd.g_old_rec.legislation_code and
89: p_object_version_number
90: = per_stc_shd.g_old_rec.object_version_number

Line 88: = per_stc_shd.g_old_rec.legislation_code and

84: = per_stc_shd.g_old_rec.component_name and
85: p_solution_type_name
86: = per_stc_shd.g_old_rec.solution_type_name and
87: p_legislation_code
88: = per_stc_shd.g_old_rec.legislation_code and
89: p_object_version_number
90: = per_stc_shd.g_old_rec.object_version_number
91: ) Then
92: --

Line 90: = per_stc_shd.g_old_rec.object_version_number

86: = per_stc_shd.g_old_rec.solution_type_name and
87: p_legislation_code
88: = per_stc_shd.g_old_rec.legislation_code and
89: p_object_version_number
90: = per_stc_shd.g_old_rec.object_version_number
91: ) Then
92: --
93: -- The g_old_rec is current therefore we must
94: -- set the returning function to true

Line 102: Fetch C_Sel1 Into per_stc_shd.g_old_rec;

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

Line 113: <> per_stc_shd.g_old_rec.object_version_number) Then

109: fnd_message.raise_error;
110: End If;
111: Close C_Sel1;
112: If (p_object_version_number
113: <> per_stc_shd.g_old_rec.object_version_number) Then
114: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
115: fnd_message.raise_error;
116: End If;
117: l_fct_ret := true;

Line 181: Fetch C_Sel1 Into per_stc_shd.g_old_rec;

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

Line 192: <> per_stc_shd.g_old_rec.object_version_number) Then

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

Line 248: end per_stc_shd;

244: Return(l_rec);
245: --
246: End convert_args;
247: --
248: end per_stc_shd;