DBA Data[Home] [Help]

APPS.AME_CON_INS dependencies on FND_GLOBAL

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

39: when no_data_found then
40: databaseId := null;
41: end;
42: --+
43: if (fnd_global.resp_name = 'AME Developer') then
44: seededKeyPrefix := ame_util.seededKeyPrefix;
45: else
46: seededKeyPrefix := null;
47: end if;

Line 183: l_current_user_id := fnd_global.user_id;

179: -- validation start and end dates
180: --
181: p_rec.start_date := p_validation_start_date;
182: p_rec.end_date := p_validation_end_date;
183: l_current_user_id := fnd_global.user_id;
184: --
185: -- If the datetrack_mode is not INSERT then we must populate the WHO
186: -- columns with the 'old' creation values and 'new' updated values.
187: --

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

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