DBA Data[Home] [Help]

APPS.IRC_IAD_SHD dependencies on IRC_IAD_SHD

Line 1: Package Body irc_iad_shd as

1: Package Body irc_iad_shd as
2: /* $Header: iriadrhi.pkb 120.3.12000000.2 2007/03/23 07:14:06 vboggava noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 79: irc_iad_shd.g_old_rec.assignment_details_id and

75: --
76: l_fct_ret := false;
77: Else
78: If (p_assignment_details_id =
79: irc_iad_shd.g_old_rec.assignment_details_id and
80: p_object_version_number =
81: irc_iad_shd.g_old_rec.object_version_number
82: ) Then
83: --

Line 81: irc_iad_shd.g_old_rec.object_version_number

77: Else
78: If (p_assignment_details_id =
79: irc_iad_shd.g_old_rec.assignment_details_id and
80: p_object_version_number =
81: irc_iad_shd.g_old_rec.object_version_number
82: ) Then
83: --
84: -- The g_old_rec is current therefore we must
85: -- set the returning function to true

Line 93: Fetch C_Sel1 Into irc_iad_shd.g_old_rec;

89: --
90: -- Select the current row
91: --
92: Open C_Sel1;
93: Fetch C_Sel1 Into irc_iad_shd.g_old_rec;
94: If C_Sel1%notfound Then
95: Close C_Sel1;
96: --
97: -- The primary key is invalid therefore we must error

Line 104: <> irc_iad_shd.g_old_rec.object_version_number) Then

100: fnd_message.raise_error;
101: End If;
102: Close C_Sel1;
103: If (p_object_version_number
104: <> irc_iad_shd.g_old_rec.object_version_number) Then
105: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
106: fnd_message.raise_error;
107: End If;
108: l_fct_ret := true;

Line 311: Fetch C_Sel1 Into irc_iad_shd.g_old_rec;

307: --
308: -- We must select and lock the current row.
309: --
310: Open C_Sel1;
311: Fetch C_Sel1 Into irc_iad_shd.g_old_rec;
312: If C_Sel1%notfound then
313: Close C_Sel1;
314: --
315: -- The primary key is invalid therefore we must error

Line 322: <> irc_iad_shd.g_old_rec.object_version_number) Then

318: fnd_message.raise_error;
319: End If;
320: Close C_Sel1;
321: If (p_object_version_number
322: <> irc_iad_shd.g_old_rec.object_version_number) Then
323: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
324: fnd_message.raise_error;
325: End If;
326: --

Line 340: ,p_parent_key_value1 => irc_iad_shd.g_old_rec.assignment_id

336: ,p_base_key_column => 'assignment_details_id'
337: ,p_base_key_value => p_assignment_details_id
338: ,p_parent_table_name1 => 'per_all_assignments_f'
339: ,p_parent_key_column1 => 'assignment_id'
340: ,p_parent_key_value1 => irc_iad_shd.g_old_rec.assignment_id
341: ,p_enforce_foreign_locking => true
342: ,p_validation_start_date => l_validation_start_date
343: ,p_validation_end_date => l_validation_end_date
344: );

Line 351: ,p_base_key_value => irc_iad_shd.g_old_rec.assignment_id

347: (p_effective_date => p_effective_date
348: ,p_datetrack_mode => p_datetrack_mode
349: ,p_base_table_name => 'irc_assignment_details_f'
350: ,p_base_key_column => 'assignment_id'
351: ,p_base_key_value => irc_iad_shd.g_old_rec.assignment_id
352: ,p_parent_table_name1 => 'per_all_assignments_f'
353: ,p_parent_key_column1 => 'assignment_id'
354: ,p_parent_key_value1 => irc_iad_shd.g_old_rec.assignment_id
355: ,p_enforce_foreign_locking => true

Line 354: ,p_parent_key_value1 => irc_iad_shd.g_old_rec.assignment_id

350: ,p_base_key_column => 'assignment_id'
351: ,p_base_key_value => irc_iad_shd.g_old_rec.assignment_id
352: ,p_parent_table_name1 => 'per_all_assignments_f'
353: ,p_parent_key_column1 => 'assignment_id'
354: ,p_parent_key_value1 => irc_iad_shd.g_old_rec.assignment_id
355: ,p_enforce_foreign_locking => true
356: ,p_validation_start_date => l_validation_start_date
357: ,p_validation_end_date => l_validation_end_date
358: );

Line 432: end irc_iad_shd;

428: Return(l_rec);
429: --
430: End convert_args;
431: --
432: end irc_iad_shd;