DBA Data[Home] [Help]

APPS.OTA_TMT_SHD dependencies on OTA_TMT_SHD

Line 1: Package Body ota_tmt_shd as

1: Package Body ota_tmt_shd as
2: /* $Header: ottmtrhi.pkb 115.6 2002/11/26 17:09:48 hwinsor noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 122: = ota_tmt_shd.g_old_rec.tp_measurement_type_id and

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

Line 124: = ota_tmt_shd.g_old_rec.object_version_number

120: Else
121: If (p_tp_measurement_type_id
122: = ota_tmt_shd.g_old_rec.tp_measurement_type_id and
123: p_object_version_number
124: = ota_tmt_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_tmt_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_tmt_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_tmt_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_tmt_shd.g_old_rec.object_version_number) Then
148: fnd_message.set_name(801, 'HR_7155_OBJECT_INVALID');
149: fnd_message.raise_error;
150: End If;
151: l_fct_ret := true;

Line 227: Fetch C_Sel1 Into ota_tmt_shd.g_old_rec;

223: ,p_argument_value => p_tp_measurement_type_id
224: );
225: --
226: Open C_Sel1;
227: Fetch C_Sel1 Into ota_tmt_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_tmt_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_tmt_shd.g_old_rec.object_version_number) Then
239: fnd_message.set_name(801, 'HR_7155_OBJECT_INVALID');
240: fnd_message.raise_error;
241: End If;
242: --

Line 360: end ota_tmt_shd;

356: Return(l_rec);
357: --
358: End convert_args;
359: --
360: end ota_tmt_shd;