DBA Data[Home] [Help]

APPS.PA_PAXPCIFS_XMLP_PKG dependencies on PA_LOOKUPS

Line 52: select meaning into enter_param from pa_lookups where

48:
49:
50: if (p_start_organization_id is null and
51: project_member is null) then
52: select meaning into enter_param from pa_lookups where
53: lookup_type = 'ENTER VALUE' and
54: lookup_code = 'ENTER_ORG_MGR';
55: end if;
56: c_enter := enter_param;

Line 93: select meaning into ndf from pa_lookups where

89: IF (get_start_org <> TRUE) THEN
90: RAISE init_failure;
91:
92: END IF;
93: select meaning into ndf from pa_lookups where
94: lookup_code= 'NO_DATA_FOUND'
95: and lookup_type = 'MESSAGE';
96: C_no_data_found := ndf;
97:

Line 100: select meaning into ndf from pa_lookups where

96: C_no_data_found := ndf;
97:
98: EXCEPTION
99: WHEN NO_DATA_FOUND THEN
100: select meaning into ndf from pa_lookups where
101: lookup_code= 'NO_DATA_FOUND'
102: and lookup_type = 'MESSAGE';
103: C_no_data_found := ndf;
104: c_dummy_data := 1;