DBA Data[Home] [Help]

APPS.HR_HELPDESK_UTIL_SS dependencies on FND_SECURITY_GROUPS

Line 260: l_secgrp_key fnd_security_groups.SECURITY_GROUP_KEY%type;

256:
257: FUNCTION get_secgrp_key(bus_grp_id IN PER_BUSINESS_GROUPS.business_group_id%type)
258: RETURN VARCHAR2 IS
259:
260: l_secgrp_key fnd_security_groups.SECURITY_GROUP_KEY%type;
261: BEGIN
262:
263: SELECT security_group_key
264: INTO l_secgrp_key

Line 265: FROM fnd_security_groups

261: BEGIN
262:
263: SELECT security_group_key
264: INTO l_secgrp_key
265: FROM fnd_security_groups
266: WHERE security_group_id =
267: (select security_group_id from PER_BUSINESS_GROUPS
268: where business_group_id = bus_grp_id);
269: