DBA Data[Home] [Help]

APPS.FND_PROGRAM dependencies on FND_LOOKUP_VALUES

Line 843: from fnd_lookup_values

839:
840: BEGIN
841: select lookup_code
842: into refresh_portlet_code
843: from fnd_lookup_values
844: where upper(meaning) = upper(refresh_portlet)
845: and lookup_type = 'CONC_REFRESH_PORTLET'
846: and enabled_flag = 'Y'
847: and rownum = 1;

Line 1015: FROM fnd_lookup_values

1011: application_id_f(inc_prog_application);
1012: BEGIN
1013: SELECT lookup_code
1014: INTO scope_code_i
1015: FROM fnd_lookup_values
1016: WHERE lookup_type = 'CP_SERIAL_TYPE'
1017: AND upper(meaning) = upper(scope)
1018: AND rownum = 1;
1019: EXCEPTION

Line 1174: from fnd_lookup_values

1170: application_id := application_id_f(application);
1171: BEGIN
1172: select lookup_code
1173: into execution_method_code
1174: from fnd_lookup_values
1175: where upper(meaning) = upper(execution_method)
1176: and lookup_type = 'CP_EXECUTION_METHOD_CODE'
1177: and enabled_flag = 'Y'
1178: and rownum = 1;