DBA Data[Home] [Help]

APPS.AME_AXU_INS dependencies on AME_ACTION_TYPE_USAGES

Line 93: from ame_action_type_usages t

89: -- Cursor to select 'old' created AOL who column values
90: --
91: Cursor C_Sel1 Is
92: select t.creation_date
93: from ame_action_type_usages t
94: where t.action_type_id = p_rec.action_type_id
95: and t.rule_type = p_rec.rule_type
96: and t.start_date = ame_axu_shd.g_old_rec.start_date
97: and t.end_date = p_validation_start_date;

Line 101: from ame_action_type_usages t

97: and t.end_date = p_validation_start_date;
98: --
99: Cursor C_Sel2 Is
100: select created_by
101: from ame_action_type_usages t
102: where t.action_type_id = p_rec.action_type_id
103: and t.rule_type = p_rec.rule_type
104: and ame_utility_pkg.is_seed_user(created_by) = ame_util.seededDataCreatedById
105: and rownum<2;

Line 108: l_created_by ame_action_type_usages.created_by%TYPE;

104: and ame_utility_pkg.is_seed_user(created_by) = ame_util.seededDataCreatedById
105: and rownum<2;
106: --
107: l_proc varchar2(72) := g_package||'dt_insert_dml';
108: l_created_by ame_action_type_usages.created_by%TYPE;
109: l_creation_date ame_action_type_usages.creation_date%TYPE;
110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;
111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;
112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;

Line 109: l_creation_date ame_action_type_usages.creation_date%TYPE;

105: and rownum<2;
106: --
107: l_proc varchar2(72) := g_package||'dt_insert_dml';
108: l_created_by ame_action_type_usages.created_by%TYPE;
109: l_creation_date ame_action_type_usages.creation_date%TYPE;
110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;
111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;
112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;
113: l_current_user_id integer;

Line 110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;

106: --
107: l_proc varchar2(72) := g_package||'dt_insert_dml';
108: l_created_by ame_action_type_usages.created_by%TYPE;
109: l_creation_date ame_action_type_usages.creation_date%TYPE;
110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;
111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;
112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;
113: l_current_user_id integer;
114: l_temp_count integer;

Line 111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;

107: l_proc varchar2(72) := g_package||'dt_insert_dml';
108: l_created_by ame_action_type_usages.created_by%TYPE;
109: l_creation_date ame_action_type_usages.creation_date%TYPE;
110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;
111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;
112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;
113: l_current_user_id integer;
114: l_temp_count integer;
115: --

Line 112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;

108: l_created_by ame_action_type_usages.created_by%TYPE;
109: l_creation_date ame_action_type_usages.creation_date%TYPE;
110: l_last_update_date ame_action_type_usages.last_update_date%TYPE;
111: l_last_updated_by ame_action_type_usages.last_updated_by%TYPE;
112: l_last_update_login ame_action_type_usages.last_update_login%TYPE;
113: l_current_user_id integer;
114: l_temp_count integer;
115: --
116: Begin

Line 191: -- Insert the row into: ame_action_type_usages

187: End If;
188: --
189: --
190: --
191: -- Insert the row into: ame_action_type_usages
192: --
193: insert into ame_action_type_usages
194: (action_type_id
195: ,rule_type

Line 193: insert into ame_action_type_usages

189: --
190: --
191: -- Insert the row into: ame_action_type_usages
192: --
193: insert into ame_action_type_usages
194: (action_type_id
195: ,rule_type
196: ,start_date
197: ,end_date

Line 313: -- Cursor C_Sel1 is select ame_action_type_usages_s.nextval from sys.dual;

309: ,p_validation_start_date in date
310: ,p_validation_end_date in date
311: ) is
312: --
313: -- Cursor C_Sel1 is select ame_action_type_usages_s.nextval from sys.dual;
314: --
315: Cursor C_Sel2 is
316: Select null
317: from ame_action_type_usages

Line 317: from ame_action_type_usages

313: -- Cursor C_Sel1 is select ame_action_type_usages_s.nextval from sys.dual;
314: --
315: Cursor C_Sel2 is
316: Select null
317: from ame_action_type_usages
318: where action_type_id =
319: ame_axu_ins.g_action_type_id_i
320: and rule_type =
321: ame_axu_ins.g_rule_type_i;

Line 342: fnd_message.set_token('TABLE_NAME','ame_action_type_usages');

338: --
339: -- The primary key values are already in use.
340: --
341: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
342: fnd_message.set_token('TABLE_NAME','ame_action_type_usages');
343: fnd_message.raise_error;
344: End If;
345: Close C_Sel2;
346: --

Line 446: (p_module_name => 'AME_ACTION_TYPE_USAGES'

442: --
443: when hr_api.cannot_find_prog_unit then
444: --
445: hr_api.cannot_find_prog_unit_error
446: (p_module_name => 'AME_ACTION_TYPE_USAGES'
447: ,p_hook_type => 'AI');
448: --
449: end;
450: --