DBA Data[Home] [Help]

APPS.PQH_CRE_INS dependencies on PQH_CRITERIA_RATE_ELEMENTS

Line 135: -- Insert the row into: pqh_criteria_rate_elements

131: p_rec.object_version_number := 1; -- Initialise the object version
132: --
133: --
134: --
135: -- Insert the row into: pqh_criteria_rate_elements
136: --
137: insert into pqh_criteria_rate_elements
138: (criteria_rate_element_id
139: ,criteria_rate_defn_id

Line 137: insert into pqh_criteria_rate_elements

133: --
134: --
135: -- Insert the row into: pqh_criteria_rate_elements
136: --
137: insert into pqh_criteria_rate_elements
138: (criteria_rate_element_id
139: ,criteria_rate_defn_id
140: ,element_type_id
141: ,input_value_id

Line 221: Cursor C_Sel1 is select pqh_criteria_rate_elements_s.nextval from sys.dual;

217: Procedure pre_insert
218: (p_rec in out nocopy pqh_cre_shd.g_rec_type
219: ) is
220: --
221: Cursor C_Sel1 is select pqh_criteria_rate_elements_s.nextval from sys.dual;
222: --
223: Cursor C_Sel2 is
224: Select null
225: from pqh_criteria_rate_elements

Line 225: from pqh_criteria_rate_elements

221: Cursor C_Sel1 is select pqh_criteria_rate_elements_s.nextval from sys.dual;
222: --
223: Cursor C_Sel2 is
224: Select null
225: from pqh_criteria_rate_elements
226: where criteria_rate_element_id =
227: pqh_cre_ins.g_criteria_rate_element_id_i;
228: --
229: l_proc varchar2(72) := g_package||'pre_insert';

Line 247: fnd_message.set_token('TABLE_NAME','pqh_criteria_rate_elements');

243: --
244: -- The primary key values are already in use.
245: --
246: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
247: fnd_message.set_token('TABLE_NAME','pqh_criteria_rate_elements');
248: fnd_message.raise_error;
249: End If;
250: Close C_Sel2;
251: --

Line 342: (p_module_name => 'PQH_CRITERIA_RATE_ELEMENTS'

338: --
339: when hr_api.cannot_find_prog_unit then
340: --
341: hr_api.cannot_find_prog_unit_error
342: (p_module_name => 'PQH_CRITERIA_RATE_ELEMENTS'
343: ,p_hook_type => 'AI');
344: --
345: end;
346: --