DBA Data[Home] [Help]

APPS.PAY_MGR_SHD dependencies on PAY_MAGNETIC_RECORDS

Line 36: If (p_constraint_name = 'PAY_MAGNETIC_RECORDS_FK2') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PAY_MAGNETIC_RECORDS_FK2') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'PAY_MAGNETIC_RECORDS_FK3') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'PAY_MAGNETIC_RECORDS_FK3') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'PAY_MAGNETIC_RECORDS_PK') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'PAY_MAGNETIC_RECORDS_PK') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 93: from pay_magnetic_records

89: overflow_mode,
90: sequence,
91: frequency ,
92: action_level,block_label,block_row_label,xml_proc_name
93: from pay_magnetic_records
94: where magnetic_block_id = p_magnetic_block_id
95: and sequence = p_sequence;
96: --
97: l_proc varchar2(72) := g_package||'api_updating';

Line 168: from pay_magnetic_records

164: overflow_mode,
165: sequence,
166: frequency ,
167: action_level,block_label,block_row_label,xml_proc_name
168: from pay_magnetic_records
169: where magnetic_block_id = p_magnetic_block_id
170: and sequence = p_sequence
171: for update nowait;
172: --

Line 209: hr_utility.set_message_token('TABLE_NAME', 'pay_magnetic_records');

205: -- The object is locked therefore we need to supply a meaningful
206: -- error message.
207: --
208: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
209: hr_utility.set_message_token('TABLE_NAME', 'pay_magnetic_records');
210: hr_utility.raise_error;
211: End lck;
212: --
213: -- ----------------------------------------------------------------------------