DBA Data[Home] [Help]

APPS.FND_MANAGER dependencies on FND_LOOKUP_VALUES

Line 462: from fnd_lookup_values

458: /* Get type code */
459: begin
460: select lookup_code
461: into type_code
462: from fnd_lookup_values
463: where lookup_type = 'CP_MANAGER_TYPE'
464: and upper(meaning) = upper(type)
465: and rownum = 1;
466: exception

Line 994: from fnd_lookup_values

990: /* Get type */
991: begin
992: select lookup_code
993: into type_code
994: from fnd_lookup_values
995: where lookup_type = 'CP_PROGRAM_LIBRARY_TYPE'
996: and upper(meaning) = upper(type)
997: and rownum = 1;
998: exception

Line 1164: from fnd_lookup_values

1160: /* Get action code */
1161: begin
1162: select lookup_code
1163: into action_code
1164: from fnd_lookup_values
1165: where lookup_type = 'INCLUDE_EXCLUDE'
1166: and upper(meaning) = upper(action)
1167: and rownum = 1;
1168: exception

Line 1178: from fnd_lookup_values

1174: /* Get object type */
1175: begin
1176: select lookup_code
1177: into type_code
1178: from fnd_lookup_values
1179: where lookup_type = 'CP_SPECIAL_RULES'
1180: and upper(meaning) = upper(object_type)
1181: and lookup_code in ('C','O','P','R','U')
1182: and rownum = 1;

Line 1456: from fnd_lookup_values

1452:
1453: /* Get object type */
1454: select lookup_code
1455: into obj_code
1456: from fnd_lookup_values
1457: where lookup_type = 'CP_SPECIAL_RULES'
1458: and upper(meaning) = upper(object_type)
1459: and lookup_code in ('C','O','P','R','U')
1460: and rownum = 1;