DBA Data[Home] [Help]

APPS.PAY_PTA_SHD dependencies on PAY_PTA_SHD

Line 1: Package Body pay_pta_shd as

1: Package Body pay_pta_shd as
2: /* $Header: pyptarhi.pkb 120.0 2005/05/29 07:56:20 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 86: = pay_pta_shd.g_old_rec.dated_table_id and

82: --
83: l_fct_ret := false;
84: Else
85: If (p_dated_table_id
86: = pay_pta_shd.g_old_rec.dated_table_id and
87: p_object_version_number
88: = pay_pta_shd.g_old_rec.object_version_number
89: ) Then
90: --

Line 88: = pay_pta_shd.g_old_rec.object_version_number

84: Else
85: If (p_dated_table_id
86: = pay_pta_shd.g_old_rec.dated_table_id and
87: p_object_version_number
88: = pay_pta_shd.g_old_rec.object_version_number
89: ) Then
90: --
91: -- The g_old_rec is current therefore we must
92: -- set the returning function to true

Line 100: Fetch C_Sel1 Into pay_pta_shd.g_old_rec;

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

Line 111: <> pay_pta_shd.g_old_rec.object_version_number) Then

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

Line 162: Fetch C_Sel1 Into pay_pta_shd.g_old_rec;

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

Line 173: <> pay_pta_shd.g_old_rec.object_version_number) Then

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

Line 237: end pay_pta_shd;

233: Return(l_rec);
234: --
235: End convert_args;
236: --
237: end pay_pta_shd;