DBA Data[Home] [Help]

APPS.OTA_TPM_SHD dependencies on OTA_TPM_SHD

Line 1: Package Body ota_tpm_shd as

1: Package Body ota_tpm_shd as
2: /* $Header: ottpmrhi.pkb 120.1 2005/12/14 15:33:09 asud noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 135: = ota_tpm_shd.g_old_rec.training_plan_member_id and

131: --
132: l_fct_ret := false;
133: Else
134: If (p_training_plan_member_id
135: = ota_tpm_shd.g_old_rec.training_plan_member_id and
136: p_object_version_number
137: = ota_tpm_shd.g_old_rec.object_version_number
138: ) Then
139: --

Line 137: = ota_tpm_shd.g_old_rec.object_version_number

133: Else
134: If (p_training_plan_member_id
135: = ota_tpm_shd.g_old_rec.training_plan_member_id and
136: p_object_version_number
137: = ota_tpm_shd.g_old_rec.object_version_number
138: ) Then
139: --
140: -- The g_old_rec is current therefore we must
141: -- set the returning function to true

Line 149: Fetch C_Sel1 Into ota_tpm_shd.g_old_rec;

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

Line 160: <> ota_tpm_shd.g_old_rec.object_version_number) Then

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

Line 244: Fetch C_Sel1 Into ota_tpm_shd.g_old_rec;

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

Line 255: <> ota_tpm_shd.g_old_rec.object_version_number) Then

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

Line 385: end ota_tpm_shd;

381: Return(l_rec);
382: --
383: End convert_args;
384: --
385: end ota_tpm_shd;