DBA Data[Home] [Help]

APPS.CZ_FCE_COMPILE dependencies on CZ_EXPRESSION_NODES

Line 8120: --In cz_expression_nodes value of a boolean literal is represented by 0 or 1 in data_value.

8116: RETURN '''' || p_value || '''';
8117:
8118: ELSIF ( p_data_type = h_datatypes ('boolean')) THEN
8119:
8120: --In cz_expression_nodes value of a boolean literal is represented by 0 or 1 in data_value.
8121: --Here we are trying to handle cases, when the user writes logical constants explicitly as
8122: --operands to logical operands, for example NOT FALSE.
8123:
8124: IF ( logical_context ( j, NULL )) THEN

Line 10830: FROM cz_expression_nodes

10826: BULK COLLECT INTO t_exp_modelrefexplid, t_exp_exprtype, t_exp_exprnodeid, t_exp_exprparentid,
10827: t_exp_templateid, t_exp_psnodeid, t_exp_datavalue, t_exp_propertyid,
10828: t_exp_paramindex, t_exp_argumentindex, t_exp_argumentname, t_exp_datatype,
10829: t_exp_datanumvalue, t_exp_paramsignatureid, t_exp_relativenodepath, t_exp_seqnbr
10830: FROM cz_expression_nodes
10831: WHERE rule_id = rule.rule_id
10832: AND expr_type <> h_exprtypes ('punctuation')
10833: AND deleted_flag = '0'
10834: ORDER BY expr_parent_id, seq_nbr;