DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on FND_RESPONSIBILITY_VL

Line 863: buffer fnd_responsibility_vl.responsibility_name%type;

859: end resp_id;
860:
861: -- RESP_NAME -
862: function resp_name return varchar2 is
863: buffer fnd_responsibility_vl.responsibility_name%type;
864: v_rid integer := resp_id;
865: v_raid integer := resp_appl_id;
866: begin
867: if v_rid is null or v_raid is null then

Line 879: from fnd_responsibility_vl r

875:
876: -- Re-query every time in case of language change --
877: select r.responsibility_name
878: into buffer
879: from fnd_responsibility_vl r
880: where r.responsibility_id = v_rid
881: and r.application_id = v_raid;
882:
883: -- no caching of RESP_NAME

Line 910: from fnd_responsibility_vl r

906: end if;
907:
908: select r.responsibility_key
909: into buffer
910: from fnd_responsibility_vl r
911: where r.responsibility_id = v_rid
912: and r.application_id = v_raid;
913:
914: return buffer;