DBA Data[Home] [Help]

APPS.OTA_CCI_SHD dependencies on OTA_CCI_SHD

Line 1: Package Body ota_cci_shd as

1: Package Body ota_cci_shd as
2: /* $Header: otccirhi.pkb 120.1 2005/07/21 15:07 estreacy noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 96: = ota_cci_shd.g_old_rec.category_usage_id and

92: --
93: l_fct_ret := false;
94: Else
95: If (p_category_usage_id
96: = ota_cci_shd.g_old_rec.category_usage_id and
97: p_certification_id
98: = ota_cci_shd.g_old_rec.certification_id and
99: p_object_version_number
100: = ota_cci_shd.g_old_rec.object_version_number

Line 98: = ota_cci_shd.g_old_rec.certification_id and

94: Else
95: If (p_category_usage_id
96: = ota_cci_shd.g_old_rec.category_usage_id and
97: p_certification_id
98: = ota_cci_shd.g_old_rec.certification_id and
99: p_object_version_number
100: = ota_cci_shd.g_old_rec.object_version_number
101: ) Then
102: --

Line 100: = ota_cci_shd.g_old_rec.object_version_number

96: = ota_cci_shd.g_old_rec.category_usage_id and
97: p_certification_id
98: = ota_cci_shd.g_old_rec.certification_id and
99: p_object_version_number
100: = ota_cci_shd.g_old_rec.object_version_number
101: ) Then
102: --
103: -- The g_old_rec is current therefore we must
104: -- set the returning function to true

Line 112: Fetch C_Sel1 Into ota_cci_shd.g_old_rec;

108: --
109: -- Select the current row into g_old_rec
110: --
111: Open C_Sel1;
112: Fetch C_Sel1 Into ota_cci_shd.g_old_rec;
113: If C_Sel1%notfound Then
114: Close C_Sel1;
115: --
116: -- The primary key is invalid therefore we must error

Line 123: <> ota_cci_shd.g_old_rec.object_version_number) Then

119: fnd_message.raise_error;
120: End If;
121: Close C_Sel1;
122: If (p_object_version_number
123: <> ota_cci_shd.g_old_rec.object_version_number) Then
124: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
125: fnd_message.raise_error;
126: End If;
127: l_fct_ret := true;

Line 203: Fetch C_Sel1 Into ota_cci_shd.g_old_rec;

199: ,p_argument_value => p_object_version_number
200: );
201: --
202: Open C_Sel1;
203: Fetch C_Sel1 Into ota_cci_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: <> ota_cci_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: <> ota_cci_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 308: end ota_cci_shd;

304: Return(l_rec);
305: --
306: End convert_args;
307: --
308: end ota_cci_shd;