DBA Data[Home] [Help]

APPS.PQH_ASA_SHD dependencies on PQH_ASA_SHD

Line 1: Package Body pqh_asa_shd as

1: Package Body pqh_asa_shd as
2: /* $Header: pqasarhi.pkb 115.3 2002/11/27 00:35:21 rpasapul noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 147: pqh_asa_shd.g_old_rec.assignment_acco_id and

143: --
144: l_fct_ret := false;
145: Else
146: If (p_assignment_acco_id =
147: pqh_asa_shd.g_old_rec.assignment_acco_id and
148: p_object_version_number =
149: pqh_asa_shd.g_old_rec.object_version_number
150: ) Then
151: --

Line 149: pqh_asa_shd.g_old_rec.object_version_number

145: Else
146: If (p_assignment_acco_id =
147: pqh_asa_shd.g_old_rec.assignment_acco_id and
148: p_object_version_number =
149: pqh_asa_shd.g_old_rec.object_version_number
150: ) Then
151: --
152: -- The g_old_rec is current therefore we must
153: -- set the returning function to true

Line 161: Fetch C_Sel1 Into pqh_asa_shd.g_old_rec;

157: --
158: -- Select the current row
159: --
160: Open C_Sel1;
161: Fetch C_Sel1 Into pqh_asa_shd.g_old_rec;
162: If C_Sel1%notfound Then
163: Close C_Sel1;
164: --
165: -- The primary key is invalid therefore we must error

Line 172: <> pqh_asa_shd.g_old_rec.object_version_number) Then

168: fnd_message.raise_error;
169: End If;
170: Close C_Sel1;
171: If (p_object_version_number
172: <> pqh_asa_shd.g_old_rec.object_version_number) Then
173: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
174: fnd_message.raise_error;
175: End If;
176: l_fct_ret := true;

Line 462: Fetch C_Sel1 Into pqh_asa_shd.g_old_rec;

458: --
459: -- We must select and lock the current row.
460: --
461: Open C_Sel1;
462: Fetch C_Sel1 Into pqh_asa_shd.g_old_rec;
463: If C_Sel1%notfound then
464: Close C_Sel1;
465: --
466: -- The primary key is invalid therefore we must error

Line 473: <> pqh_asa_shd.g_old_rec.object_version_number) Then

469: fnd_message.raise_error;
470: End If;
471: Close C_Sel1;
472: If (p_object_version_number
473: <> pqh_asa_shd.g_old_rec.object_version_number) Then
474: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
475: fnd_message.raise_error;
476: End If;
477: --

Line 490: ,p_parent_key_value1 => pqh_asa_shd.g_old_rec.accommodation_id

486: ,p_base_key_column => 'assignment_acco_id'
487: ,p_base_key_value => p_assignment_acco_id
488: ,p_parent_table_name1 => 'pqh_accommodations_f'
489: ,p_parent_key_column1 => 'accommodation_id'
490: ,p_parent_key_value1 => pqh_asa_shd.g_old_rec.accommodation_id
491: ,p_enforce_foreign_locking => true
492: ,p_validation_start_date => l_validation_start_date
493: ,p_validation_end_date => l_validation_end_date
494: );

Line 707: end pqh_asa_shd;

703: Return(l_rec);
704: --
705: End convert_args;
706: --
707: end pqh_asa_shd;