DBA Data[Home] [Help]

APPS.AME_ATY_INS dependencies on AME_UTIL

Line 99: and ame_utility_pkg.is_seed_user(created_by) = ame_util.seededDataCreatedById

95: Cursor C_Sel2 Is
96: select created_by
97: from ame_action_types t
98: where t.action_type_id = p_rec.action_type_id
99: and ame_utility_pkg.is_seed_user(created_by) = ame_util.seededDataCreatedById
100: and rownum<2;
101: --
102: l_proc varchar2(72) := g_package||'dt_insert_dml';
103: l_created_by ame_action_types.created_by%TYPE;

Line 168: -- EDIT_HERE -- need to be modified to ame_util.seededDataCreatedById the

164: l_last_updated_by := l_current_user_id;
165: l_last_update_login := l_current_user_id;
166: Else
167: p_rec.object_version_number := 1; -- Initialise the object version
168: -- EDIT_HERE -- need to be modified to ame_util.seededDataCreatedById the
169: -- user has developer responsibility according to AME standards.
170: -- If the current user logged in using AME Developer responsibility
171: -- then the created_by value should be ame_util.seededDataCreatedById
172: --

Line 171: -- then the created_by value should be ame_util.seededDataCreatedById

167: p_rec.object_version_number := 1; -- Initialise the object version
168: -- EDIT_HERE -- need to be modified to ame_util.seededDataCreatedById the
169: -- user has developer responsibility according to AME standards.
170: -- If the current user logged in using AME Developer responsibility
171: -- then the created_by value should be ame_util.seededDataCreatedById
172: --
173: if fnd_global.resp_name = 'AME Developer' then
174: l_created_by := ame_util.seededDataCreatedById;
175: else

Line 174: l_created_by := ame_util.seededDataCreatedById;

170: -- If the current user logged in using AME Developer responsibility
171: -- then the created_by value should be ame_util.seededDataCreatedById
172: --
173: if fnd_global.resp_name = 'AME Developer' then
174: l_created_by := ame_util.seededDataCreatedById;
175: else
176: l_created_by := l_current_user_id;
177: end if;
178:

Line 518: p_validation_end_date := ame_utility_pkg.endOfTime;

514: -- p_validation_start_date := l_validation_start_date;
515: -- p_validation_end_date := l_validation_end_date;
516: -- MURTHY_CHANGES
517: p_validation_start_date := sysdate;
518: p_validation_end_date := ame_utility_pkg.endOfTime;
519: --
520: hr_utility.set_location(' Leaving:'||l_proc, 10);
521: --
522: End ins_lck;