DBA Data[Home] [Help]

APPS.CZ_FCE_COMPILE dependencies on CZ_EXPRESSION_NODES

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

7982: RETURN '''' || p_value || '''';
7983:
7984: ELSIF ( p_data_type = h_datatypes ('boolean')) THEN
7985:
7986: --In cz_expression_nodes value of a boolean literal is represented by 0 or 1 in data_value.
7987: --Here we are trying to handle cases, when the user writes logical constants explicitly as
7988: --operands to logical operands, for example NOT FALSE.
7989:
7990: IF ( logical_context ( j, NULL )) THEN

Line 10694: FROM cz_expression_nodes

10690: BULK COLLECT INTO t_exp_modelrefexplid, t_exp_exprtype, t_exp_exprnodeid, t_exp_exprparentid,
10691: t_exp_templateid, t_exp_psnodeid, t_exp_datavalue, t_exp_propertyid,
10692: t_exp_paramindex, t_exp_argumentindex, t_exp_argumentname, t_exp_datatype,
10693: t_exp_datanumvalue, t_exp_paramsignatureid, t_exp_relativenodepath, t_exp_seqnbr
10694: FROM cz_expression_nodes
10695: WHERE rule_id = rule.rule_id
10696: AND expr_type <> h_exprtypes ('punctuation')
10697: AND deleted_flag = '0'
10698: ORDER BY expr_parent_id, seq_nbr;