DBA Data[Home] [Help]

APPS.AMW_SECURITY_UTILS_PVT dependencies on FND_GLOBAL

Line 219: where employee_id = (select employee_id from fnd_user where user_name = FND_GLOBAL.user_name)

215:
216: begin
217: select party_id into l_party_id
218: from amw_employees_current_v
219: where employee_id = (select employee_id from fnd_user where user_name = FND_GLOBAL.user_name)
220: and rownum = 1;
221:
222: return l_party_id;
223:

Line 250: if (fnd_global.user_name is null) then

246: l_party_id number;
247:
248: BEGIN
249:
250: if (fnd_global.user_name is null) then
251: raise FND_API.G_EXC_UNEXPECTED_ERROR;
252: end if;
253:
254: l_data_security_switch := fnd_profile.value('AMW_DATA_SECURITY_SWITCH');

Line 263: l_user_name := FND_GLOBAL.user_name;

259: else
260: l_party_id := get_party_id;
261:
262: if(l_party_id is null) then
263: l_user_name := FND_GLOBAL.user_name;
264: else
265: l_user_name := 'HZ_PARTY:' || l_party_id;
266: end if;
267: