DBA Data[Home] [Help]

APPS.AME_RUL_INS dependencies on FND_GLOBAL

Line 35: if (fnd_global.resp_name = 'AME Developer') then

31: exception
32: when no_data_found then
33: databaseId := null;
34: end;
35: if (fnd_global.resp_name = 'AME Developer') then
36: seededKeyPrefix := ame_util.seededKeyPrefix;
37: else
38: seededKeyPrefix := null;
39: end if;

Line 174: l_current_user_id := fnd_global.user_id;

170: -- validation start and end dates
171: --
172: -- p_rec.start_date := p_validation_start_date;
173: -- p_rec.end_date := p_validation_end_date;
174: l_current_user_id := fnd_global.user_id;
175: --
176: -- If the datetrack_mode is not INSERT then we must populate the WHO
177: -- columns with the 'old' creation values and 'new' updated values.
178: --

Line 232: if fnd_global.resp_name = 'AME Developer' then

228: --
229: -- If the current user logged in using AME Developer responsibility
230: -- then the created_by value should be ame_util.seededDataCreatedById
231: --
232: if fnd_global.resp_name = 'AME Developer' then
233: l_created_by := ame_util.seededDataCreatedById;
234: else
235: l_created_by := l_current_user_id;
236: end if;