DBA Data[Home] [Help]

APPS.OTA_ACI_SHD dependencies on OTA_ACI_SHD

Line 1: Package Body ota_aci_shd as

1: Package Body ota_aci_shd as
2: /* $Header: otacirhi.pkb 120.0 2005/05/29 06:51:07 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 132: = ota_aci_shd.g_old_rec.activity_version_id and

128: --
129: l_fct_ret := false;
130: Else
131: If (p_activity_version_id
132: = ota_aci_shd.g_old_rec.activity_version_id and
133: p_object_version_number
134: = ota_aci_shd.g_old_rec.object_version_number and
135: p_category_usage_id
136: = ota_aci_shd.g_old_rec.category_usage_id

Line 134: = ota_aci_shd.g_old_rec.object_version_number and

130: Else
131: If (p_activity_version_id
132: = ota_aci_shd.g_old_rec.activity_version_id and
133: p_object_version_number
134: = ota_aci_shd.g_old_rec.object_version_number and
135: p_category_usage_id
136: = ota_aci_shd.g_old_rec.category_usage_id
137: ) Then
138: --

Line 136: = ota_aci_shd.g_old_rec.category_usage_id

132: = ota_aci_shd.g_old_rec.activity_version_id and
133: p_object_version_number
134: = ota_aci_shd.g_old_rec.object_version_number and
135: p_category_usage_id
136: = ota_aci_shd.g_old_rec.category_usage_id
137: ) Then
138: --
139: -- The g_old_rec is current therefore we must
140: -- set the returning function to true

Line 148: Fetch C_Sel1 Into ota_aci_shd.g_old_rec;

144: --
145: -- Select the current row into g_old_rec
146: --
147: Open C_Sel1;
148: Fetch C_Sel1 Into ota_aci_shd.g_old_rec;
149: If C_Sel1%notfound Then
150: Close C_Sel1;
151: --
152: -- The primary key is invalid therefore we must error

Line 159: <> ota_aci_shd.g_old_rec.object_version_number) Then

155: fnd_message.raise_error;
156: End If;
157: Close C_Sel1;
158: If (p_object_version_number
159: <> ota_aci_shd.g_old_rec.object_version_number) Then
160: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
161: fnd_message.raise_error;
162: End If;
163: l_fct_ret := true;

Line 242: Fetch C_Sel1 Into ota_aci_shd.g_old_rec;

238: ,p_argument_value => p_category_usage_id
239: );
240: --
241: Open C_Sel1;
242: Fetch C_Sel1 Into ota_aci_shd.g_old_rec;
243: If C_Sel1%notfound then
244: Close C_Sel1;
245: --
246: -- The primary key is invalid therefore we must error

Line 253: <> ota_aci_shd.g_old_rec.object_version_number) Then

249: fnd_message.raise_error;
250: End If;
251: Close C_Sel1;
252: If (p_object_version_number
253: <> ota_aci_shd.g_old_rec.object_version_number) Then
254: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
255: fnd_message.raise_error;
256: End If;
257: --

Line 353: end ota_aci_shd;

349: Return(l_rec);
350: --
351: End convert_args;
352: --
353: end ota_aci_shd;