DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on FND_APPLICATION

Line 553: buffer fnd_application_vl.application_name%type;

549: end audit_active;
550:
551: -- APPLICATION_NAME -
552: function application_name return varchar2 is
553: buffer fnd_application_vl.application_name%type;
554: v_raid integer := resp_appl_id;
555: begin
556: if v_raid is null then
557: return null;

Line 568: from fnd_application_vl a

564:
565: -- Re-query every time in case of language change --
566: select a.application_name
567: into buffer
568: from fnd_application_vl a
569: where a.application_id = v_raid;
570:
571: -- no caching of APPLICATION_NAME
572: -- to avoid changing pragma in spec

Line 1820: -- query fnd_application data if resp_appl_id changed

1816: end if;
1817:
1818: -- Would be nice to query these on-demand but the pragmas are all RNDS.
1819:
1820: -- query fnd_application data if resp_appl_id changed
1821: --
1822: if appl_context_change then
1823:
1824: clear(FND_CONST.APPLICATION_SHORT_NAME);

Line 1831: v_asn fnd_application.application_short_name%type;

1827: -- and just clear the APPLICATION_SHORT_NAME instead
1828: if is_defined(FND_CONST.RESP_APPL_ID) then
1829:
1830: declare
1831: v_asn fnd_application.application_short_name%type;
1832: v_raid fnd_application.application_id%type := resp_appl_id;
1833: begin
1834:
1835: select a.application_short_name

Line 1832: v_raid fnd_application.application_id%type := resp_appl_id;

1828: if is_defined(FND_CONST.RESP_APPL_ID) then
1829:
1830: declare
1831: v_asn fnd_application.application_short_name%type;
1832: v_raid fnd_application.application_id%type := resp_appl_id;
1833: begin
1834:
1835: select a.application_short_name
1836: into v_asn

Line 1837: from fnd_application a

1833: begin
1834:
1835: select a.application_short_name
1836: into v_asn
1837: from fnd_application a
1838: where a.application_id = v_raid;
1839:
1840: put(FND_CONST.APPLICATION_SHORT_NAME,v_asn);
1841: