DBA Data[Home] [Help]

APPS.OTA_CUS_SHD dependencies on OTA_CUS_SHD

Line 1: Package Body ota_cus_shd as

1: Package Body ota_cus_shd as
2: /* $Header: otcusrhi.pkb 120.0 2005/06/24 07:53 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 78: = ota_cus_shd.g_old_rec.chat_id and

74: --
75: l_fct_ret := false;
76: Else
77: If (p_chat_id
78: = ota_cus_shd.g_old_rec.chat_id and
79: p_person_id
80: = ota_cus_shd.g_old_rec.person_id and
81: p_contact_id
82: = ota_cus_shd.g_old_rec.contact_id and

Line 80: = ota_cus_shd.g_old_rec.person_id and

76: Else
77: If (p_chat_id
78: = ota_cus_shd.g_old_rec.chat_id and
79: p_person_id
80: = ota_cus_shd.g_old_rec.person_id and
81: p_contact_id
82: = ota_cus_shd.g_old_rec.contact_id and
83: p_object_version_number
84: = ota_cus_shd.g_old_rec.object_version_number

Line 82: = ota_cus_shd.g_old_rec.contact_id and

78: = ota_cus_shd.g_old_rec.chat_id and
79: p_person_id
80: = ota_cus_shd.g_old_rec.person_id and
81: p_contact_id
82: = ota_cus_shd.g_old_rec.contact_id and
83: p_object_version_number
84: = ota_cus_shd.g_old_rec.object_version_number
85: ) Then
86: --

Line 84: = ota_cus_shd.g_old_rec.object_version_number

80: = ota_cus_shd.g_old_rec.person_id and
81: p_contact_id
82: = ota_cus_shd.g_old_rec.contact_id and
83: p_object_version_number
84: = ota_cus_shd.g_old_rec.object_version_number
85: ) Then
86: --
87: -- The g_old_rec is current therefore we must
88: -- set the returning function to true

Line 96: Fetch C_Sel1 Into ota_cus_shd.g_old_rec;

92: --
93: -- Select the current row into g_old_rec
94: --
95: Open C_Sel1;
96: Fetch C_Sel1 Into ota_cus_shd.g_old_rec;
97: If C_Sel1%notfound Then
98: Close C_Sel1;
99: --
100: -- The primary key is invalid therefore we must error

Line 107: <> ota_cus_shd.g_old_rec.object_version_number) Then

103: fnd_message.raise_error;
104: End If;
105: Close C_Sel1;
106: If (p_object_version_number
107: <> ota_cus_shd.g_old_rec.object_version_number) Then
108: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
109: fnd_message.raise_error;
110: End If;
111: l_fct_ret := true;

Line 174: Fetch C_Sel1 Into ota_cus_shd.g_old_rec;

170: ,p_argument_value => p_object_version_number
171: );
172: --
173: Open C_Sel1;
174: Fetch C_Sel1 Into ota_cus_shd.g_old_rec;
175: If C_Sel1%notfound then
176: Close C_Sel1;
177: --
178: -- The primary key is invalid therefore we must error

Line 185: <> ota_cus_shd.g_old_rec.object_version_number) Then

181: fnd_message.raise_error;
182: End If;
183: Close C_Sel1;
184: If (p_object_version_number
185: <> ota_cus_shd.g_old_rec.object_version_number) Then
186: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
187: fnd_message.raise_error;
188: End If;
189: --

Line 237: end ota_cus_shd;

233: Return(l_rec);
234: --
235: End convert_args;
236: --
237: end ota_cus_shd;