DBA Data[Home] [Help]

APPS.GCS_LEX_MAP_API_PKG dependencies on GCS_LEX_MAP_CONDITIONS

Line 1795: gcs_lex_map_conditions c,

1791: 'D', 'DATE',
1792: 'V', 'VARCHAR2',
1793: '') column_type_code
1794: FROM gcs_lex_map_columns mc,
1795: gcs_lex_map_conditions c,
1796: gcs_lex_map_derivations d
1797: WHERE d.rule_id = create_param_list.rule_id
1798: AND c.derivation_id = d.derivation_id
1799: AND c.source_column_id = mc.column_id)

Line 1874: gcs_lex_map_conditions c

1870: '', '',
1871: ' ''' || REPLACE(c.comparison_value, '''', '''''') || '''')
1872: simple_cond
1873: FROM gcs_lex_map_columns mc,
1874: gcs_lex_map_conditions c
1875: WHERE c.derivation_id = create_condition.derivation_id
1876: AND c.source_column_id = mc.column_id;
1877:
1878: -- for the first condition, do not add ' AND '

Line 2282: FROM gcs_lex_map_conditions c

2278: ORDER BY d.derivation_sequence;
2279:
2280: CURSOR check_condition_c(c_deriv_id NUMBER) IS
2281: SELECT 1
2282: FROM gcs_lex_map_conditions c
2283: WHERE c.derivation_id = c_deriv_id;
2284:
2285: dummy NUMBER;
2286: