DBA Data[Home] [Help]

APPS.PAY_PGA_SHD dependencies on PAY_PGA_SHD

Line 1: Package Body pay_pga_shd as

1: Package Body pay_pga_shd as
2: /* $Header: pypgarhi.pkb 120.0 2005/09/29 10:53 tvankayl noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 78: pay_pga_shd.g_old_rec.pay_gl_account_id and

74: --
75: l_fct_ret := false;
76: Else
77: If (p_pay_gl_account_id =
78: pay_pga_shd.g_old_rec.pay_gl_account_id and
79: p_object_version_number =
80: pay_pga_shd.g_old_rec.object_version_number
81: ) Then
82: --

Line 80: pay_pga_shd.g_old_rec.object_version_number

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

Line 92: Fetch C_Sel1 Into pay_pga_shd.g_old_rec;

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

Line 103: <> pay_pga_shd.g_old_rec.object_version_number) Then

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

Line 301: Fetch C_Sel1 Into pay_pga_shd.g_old_rec;

297: --
298: -- We must select and lock the current row.
299: --
300: Open C_Sel1;
301: Fetch C_Sel1 Into pay_pga_shd.g_old_rec;
302: If C_Sel1%notfound then
303: Close C_Sel1;
304: --
305: -- The primary key is invalid therefore we must error

Line 312: <> pay_pga_shd.g_old_rec.object_version_number) Then

308: fnd_message.raise_error;
309: End If;
310: Close C_Sel1;
311: If (p_object_version_number
312: <> pay_pga_shd.g_old_rec.object_version_number) Then
313: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
314: fnd_message.raise_error;
315: End If;
316: --

Line 321: if pay_pga_shd.g_old_rec.org_payment_method_id is not null then

317: --
318: -- Validate the datetrack mode mode getting the validation start
319: -- and end dates for the specified datetrack operation.
320: --
321: if pay_pga_shd.g_old_rec.org_payment_method_id is not null then
322:
323: dt_api.validate_dt_mode
324: (p_effective_date => p_effective_date
325: ,p_datetrack_mode => p_datetrack_mode

Line 331: ,p_parent_key_value1 => pay_pga_shd.g_old_rec.org_payment_method_id

327: ,p_base_key_column => 'pay_gl_account_id'
328: ,p_base_key_value => p_pay_gl_account_id
329: ,p_parent_table_name1 => 'pay_org_payment_methods_f'
330: ,p_parent_key_column1 => 'org_payment_method_id'
331: ,p_parent_key_value1 => pay_pga_shd.g_old_rec.org_payment_method_id
332: ,p_enforce_foreign_locking => false
333: ,p_validation_start_date => l_validation_start_date
334: ,p_validation_end_date => l_validation_end_date
335: );

Line 425: end pay_pga_shd;

421: Return(l_rec);
422: --
423: End convert_args;
424: --
425: end pay_pga_shd;