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.12010000.2 2009/07/24 10:53:50 shwnayak ship $ */
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 123: = ota_ctu_shd.g_old_rec.category_usage_id and

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

Line 125: = ota_ctu_shd.g_old_rec.object_version_number

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

Line 137: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;

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

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

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

Line 227: Fetch C_Sel1 Into ota_ctu_shd.g_old_rec;

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

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

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

Line 346: end ota_ctu_shd;

342: Return(l_rec);
343: --
344: End convert_args;
345: --
346: end ota_ctu_shd;