DBA Data[Home] [Help]

APPS.PAY_AIF_SHD dependencies on PAY_AIF_SHD

Line 1: Package Body pay_aif_shd as

1: Package Body pay_aif_shd as
2: /* $Header: pyaifrhi.pkb 120.3.12020000.2 2012/07/04 20:39:11 amnaraya ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 108: = pay_aif_shd.g_old_rec.action_information_id and

104: --
105: l_fct_ret := false;
106: Else
107: If (p_action_information_id
108: = pay_aif_shd.g_old_rec.action_information_id and
109: p_object_version_number
110: = pay_aif_shd.g_old_rec.object_version_number
111: ) Then
112: --

Line 110: = pay_aif_shd.g_old_rec.object_version_number

106: Else
107: If (p_action_information_id
108: = pay_aif_shd.g_old_rec.action_information_id and
109: p_object_version_number
110: = pay_aif_shd.g_old_rec.object_version_number
111: ) Then
112: --
113: -- The g_old_rec is current therefore we must
114: -- set the returning function to true

Line 122: Fetch C_Sel1 Into pay_aif_shd.g_old_rec;

118: --
119: -- Select the current row into g_old_rec
120: --
121: Open C_Sel1;
122: Fetch C_Sel1 Into pay_aif_shd.g_old_rec;
123: If C_Sel1%notfound Then
124: Close C_Sel1;
125: --
126: -- The primary key is invalid therefore we must error

Line 133: <> pay_aif_shd.g_old_rec.object_version_number) Then

129: fnd_message.raise_error;
130: End If;
131: Close C_Sel1;
132: If (p_object_version_number
133: <> pay_aif_shd.g_old_rec.object_version_number) Then
134: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
135: fnd_message.raise_error;
136: End If;
137: l_fct_ret := true;

Line 214: Fetch C_Sel1 Into pay_aif_shd.g_old_rec;

210: ,p_argument_value => p_action_information_id
211: );
212: --
213: Open C_Sel1;
214: Fetch C_Sel1 Into pay_aif_shd.g_old_rec;
215: If C_Sel1%notfound then
216: Close C_Sel1;
217: --
218: -- The primary key is invalid therefore we must error

Line 225: <> pay_aif_shd.g_old_rec.object_version_number) Then

221: fnd_message.raise_error;
222: End If;
223: Close C_Sel1;
224: If (p_object_version_number
225: <> pay_aif_shd.g_old_rec.object_version_number) Then
226: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
227: fnd_message.raise_error;
228: End If;
229: --

Line 349: end pay_aif_shd;

345: Return(l_rec);
346: --
347: End convert_args;
348: --
349: end pay_aif_shd;