DBA Data[Home] [Help]

APPS.PQH_PRE_INS dependencies on PQH_DE_INS_END_REASONS

Line 87: -- Insert the row into: pqh_de_ins_end_reasons

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: pqh_de_ins_end_reasons
88: --
89: insert into pqh_de_ins_end_reasons
90: (ins_end_reason_id
91: ,business_group_id

Line 89: insert into pqh_de_ins_end_reasons

85: --
86: --
87: -- Insert the row into: pqh_de_ins_end_reasons
88: --
89: insert into pqh_de_ins_end_reasons
90: (ins_end_reason_id
91: ,business_group_id
92: ,provider_organization_id
93: ,end_reason_number

Line 173: Cursor C_Sel1 is select pqh_de_ins_end_reasons_s.nextval from sys.dual;

169: Procedure pre_insert
170: (p_rec in out nocopy pqh_pre_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select pqh_de_ins_end_reasons_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from pqh_de_ins_end_reasons

Line 177: from pqh_de_ins_end_reasons

173: Cursor C_Sel1 is select pqh_de_ins_end_reasons_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from pqh_de_ins_end_reasons
178: where ins_end_reason_id =
179: pqh_pre_ins.g_ins_end_reason_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';

Line 199: fnd_message.set_token('TABLE_NAME','pqh_de_ins_end_reasons');

195: --
196: -- The primary key values are already in use.
197: --
198: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
199: fnd_message.set_token('TABLE_NAME','pqh_de_ins_end_reasons');
200: fnd_message.raise_error;
201: End If;
202: Close C_Sel2;
203: --

Line 288: (p_module_name => 'PQH_DE_INS_END_REASONS'

284: --
285: when hr_api.cannot_find_prog_unit then
286: --
287: hr_api.cannot_find_prog_unit_error
288: (p_module_name => 'PQH_DE_INS_END_REASONS'
289: ,p_hook_type => 'AI');
290: --
291: end;
292: --