DBA Data[Home] [Help]

APPS.OTA_CTU_SHD dependencies on OTA_CTU_SHD

Line 1: Package Body ota_ctu_shd as

1: Package Body ota_ctu_shd as
2: /* $Header: otcturhi.pkb 120.2 2005/09/29 05:31:13 pgupta noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 122: = ota_ctu_shd.g_old_rec.category_usage_id and

118: --
119: l_fct_ret := false;
120: Else
121: If (p_category_usage_id
122: = ota_ctu_shd.g_old_rec.category_usage_id and
123: p_object_version_number
124: = ota_ctu_shd.g_old_rec.object_version_number
125: ) Then
126: --

Line 124: = ota_ctu_shd.g_old_rec.object_version_number

120: Else
121: If (p_category_usage_id
122: = ota_ctu_shd.g_old_rec.category_usage_id and
123: p_object_version_number
124: = ota_ctu_shd.g_old_rec.object_version_number
125: ) Then
126: --
127: -- The g_old_rec is current therefore we must
128: -- set the returning function to true

Line 136: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;

132: --
133: -- Select the current row into g_old_rec
134: --
135: Open C_Sel1;
136: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;
137: If C_Sel1%notfound Then
138: Close C_Sel1;
139: --
140: -- The primary key is invalid therefore we must error

Line 147: <> ota_ctu_shd.g_old_rec.object_version_number) Then

143: fnd_message.raise_error;
144: End If;
145: Close C_Sel1;
146: If (p_object_version_number
147: <> ota_ctu_shd.g_old_rec.object_version_number) Then
148: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
149: fnd_message.raise_error;
150: End If;
151: l_fct_ret := true;

Line 225: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;

221: ,p_argument_value => p_object_version_number
222: );
223: --
224: Open C_Sel1;
225: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;
226: If C_Sel1%notfound then
227: Close C_Sel1;
228: --
229: -- The primary key is invalid therefore we must error

Line 236: <> ota_ctu_shd.g_old_rec.object_version_number) Then

232: fnd_message.raise_error;
233: End If;
234: Close C_Sel1;
235: If (p_object_version_number
236: <> ota_ctu_shd.g_old_rec.object_version_number) Then
237: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
238: fnd_message.raise_error;
239: End If;
240: --

Line 342: end ota_ctu_shd;

338: Return(l_rec);
339: --
340: End convert_args;
341: --
342: end ota_ctu_shd;