DBA Data[Home] [Help]

APPS.PAY_PBC_SHD dependencies on PAY_PBC_SHD

Line 1: Package Body pay_pbc_shd as

1: Package Body pay_pbc_shd as
2: /* $Header: pypbcrhi.pkb 120.0 2005/05/29 07:19:45 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 113: pay_pbc_shd.g_old_rec.balance_category_id and

109: --
110: l_fct_ret := false;
111: Else
112: If (p_balance_category_id =
113: pay_pbc_shd.g_old_rec.balance_category_id and
114: p_object_version_number =
115: pay_pbc_shd.g_old_rec.object_version_number
116: ) Then
117: --

Line 115: pay_pbc_shd.g_old_rec.object_version_number

111: Else
112: If (p_balance_category_id =
113: pay_pbc_shd.g_old_rec.balance_category_id and
114: p_object_version_number =
115: pay_pbc_shd.g_old_rec.object_version_number
116: ) Then
117: --
118: -- The g_old_rec is current therefore we must
119: -- set the returning function to true

Line 127: Fetch C_Sel1 Into pay_pbc_shd.g_old_rec;

123: --
124: -- Select the current row
125: --
126: Open C_Sel1;
127: Fetch C_Sel1 Into pay_pbc_shd.g_old_rec;
128: If C_Sel1%notfound Then
129: Close C_Sel1;
130: --
131: -- The primary key is invalid therefore we must error

Line 138: <> pay_pbc_shd.g_old_rec.object_version_number) Then

134: fnd_message.raise_error;
135: End If;
136: Close C_Sel1;
137: If (p_object_version_number
138: <> pay_pbc_shd.g_old_rec.object_version_number) Then
139: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
140: fnd_message.raise_error;
141: End If;
142: l_fct_ret := true;

Line 365: Fetch C_Sel1 Into pay_pbc_shd.g_old_rec;

361: --
362: -- We must select and lock the current row.
363: --
364: Open C_Sel1;
365: Fetch C_Sel1 Into pay_pbc_shd.g_old_rec;
366: If C_Sel1%notfound then
367: Close C_Sel1;
368: --
369: -- The primary key is invalid therefore we must error

Line 376: <> pay_pbc_shd.g_old_rec.object_version_number) Then

372: fnd_message.raise_error;
373: End If;
374: Close C_Sel1;
375: If (p_object_version_number
376: <> pay_pbc_shd.g_old_rec.object_version_number) Then
377: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
378: fnd_message.raise_error;
379: End If;
380: --

Line 527: end pay_pbc_shd;

523: Return(l_rec);
524: --
525: End convert_args;
526: --
527: end pay_pbc_shd;