DBA Data[Home] [Help]

APPS.FND_FLEX_LOADER_APIS dependencies on FND_TABLES

Line 64: SUBTYPE tbl_type IS fnd_tables%ROWTYPE;

60: ERROR_KFF_COL_NOT_REG CONSTANT NUMBER := -20304;
61:
62:
63: SUBTYPE app_type IS fnd_application%ROWTYPE;
64: SUBTYPE tbl_type IS fnd_tables%ROWTYPE;
65: SUBTYPE col_type IS fnd_columns%ROWTYPE;
66: SUBTYPE resp_type IS fnd_responsibility%ROWTYPE;
67:
68: SUBTYPE vst_set_type IS fnd_flex_value_sets%ROWTYPE;

Line 1098: FROM fnd_tables

1094: get_app(p_application_short_name, l_app);
1095:
1096: SELECT *
1097: INTO x_tbl
1098: FROM fnd_tables
1099: WHERE application_id = l_app.application_id
1100: AND table_name = p_table_name;
1101: RETURN TRUE;
1102: EXCEPTION