DBA Data[Home] [Help]

APPS.PAY_BCT_SHD dependencies on PAY_BCT_SHD

Line 1: Package Body pay_bct_shd as

1: Package Body pay_bct_shd as
2: /* $Header: pybctrhi.pkb 120.0.12000000.4 2007/08/20 08:21:49 ayegappa noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 90: = pay_bct_shd.g_old_rec.batch_control_id and

86: --
87: l_fct_ret := false;
88: Else
89: If (p_batch_control_id
90: = pay_bct_shd.g_old_rec.batch_control_id and
91: p_object_version_number
92: = pay_bct_shd.g_old_rec.object_version_number
93: ) Then
94: --

Line 92: = pay_bct_shd.g_old_rec.object_version_number

88: Else
89: If (p_batch_control_id
90: = pay_bct_shd.g_old_rec.batch_control_id and
91: p_object_version_number
92: = pay_bct_shd.g_old_rec.object_version_number
93: ) Then
94: --
95: -- The g_old_rec is current therefore we must
96: -- set the returning function to true

Line 104: Fetch C_Sel1 Into pay_bct_shd.g_old_rec;

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

Line 115: <> pay_bct_shd.g_old_rec.object_version_number) Then

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

Line 160: Fetch C_Sel1 Into pay_bct_shd.g_old_rec;

156: ,p_argument_value => p_batch_control_id
157: );
158: --
159: Open C_Sel1;
160: Fetch C_Sel1 Into pay_bct_shd.g_old_rec;
161: If C_Sel1%notfound then
162: Close C_Sel1;
163: --
164: -- The primary key is invalid therefore we must error

Line 171: <> pay_bct_shd.g_old_rec.object_version_number) Then

167: fnd_message.raise_error;
168: End If;
169: Close C_Sel1;
170: If (p_object_version_number
171: <> pay_bct_shd.g_old_rec.object_version_number) Then
172: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
173: fnd_message.raise_error;
174: End If;
175: --

Line 223: end pay_bct_shd;

219: Return(l_rec);
220: --
221: End convert_args;
222: --
223: end pay_bct_shd;