DBA Data[Home] [Help]

APPS.PAY_BTH_SHD dependencies on PAY_BTH_SHD

Line 1: Package Body pay_bth_shd as

1: Package Body pay_bth_shd as
2: /* $Header: pybthrhi.pkb 120.2 2005/06/12 16:19:52 susivasu noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 122: = pay_bth_shd.g_old_rec.batch_id and

118: --
119: l_fct_ret := false;
120: Else
121: If (p_batch_id
122: = pay_bth_shd.g_old_rec.batch_id and
123: p_object_version_number
124: = pay_bth_shd.g_old_rec.object_version_number
125: ) Then
126: --

Line 124: = pay_bth_shd.g_old_rec.object_version_number

120: Else
121: If (p_batch_id
122: = pay_bth_shd.g_old_rec.batch_id and
123: p_object_version_number
124: = pay_bth_shd.g_old_rec.object_version_number
125: ) Then
126: --
127: -- The g_old_rec is current therefore we must
128: -- set the returning function to true

Line 136: Fetch C_Sel1 Into pay_bth_shd.g_old_rec;

132: --
133: -- Select the current row into g_old_rec
134: --
135: Open C_Sel1;
136: Fetch C_Sel1 Into pay_bth_shd.g_old_rec;
137: If C_Sel1%notfound Then
138: Close C_Sel1;
139: --
140: -- The primary key is invalid therefore we must error

Line 147: <> pay_bth_shd.g_old_rec.object_version_number) Then

143: fnd_message.raise_error;
144: End If;
145: Close C_Sel1;
146: If (p_object_version_number
147: <> pay_bth_shd.g_old_rec.object_version_number) Then
148: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
149: fnd_message.raise_error;
150: End If;
151: l_fct_ret := true;

Line 203: Fetch C_Sel1 Into pay_bth_shd.g_old_rec;

199: ,p_argument_value => p_batch_id
200: );
201: --
202: Open C_Sel1;
203: Fetch C_Sel1 Into pay_bth_shd.g_old_rec;
204: If C_Sel1%notfound then
205: Close C_Sel1;
206: --
207: -- The primary key is invalid therefore we must error

Line 214: <> pay_bth_shd.g_old_rec.object_version_number) Then

210: fnd_message.raise_error;
211: End If;
212: Close C_Sel1;
213: If (p_object_version_number
214: <> pay_bth_shd.g_old_rec.object_version_number) Then
215: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
216: fnd_message.raise_error;
217: End If;
218: --

Line 288: end pay_bth_shd;

284: Return(l_rec);
285: --
286: End convert_args;
287: --
288: end pay_bth_shd;