DBA Data[Home] [Help]

APPS.ASO_CFG_INT dependencies on CZ_CONFIG_MESSAGES

Line 755: FROM cz_config_messages

751: WHERE quote_line_id = p_config_rec.quote_line_id;
752:
753: CURSOR c_messages is
754: SELECT constraint_type, message
755: FROM cz_config_messages
756: WHERE config_hdr_id = p_config_hdr_id
757: AND config_rev_nbr = p_config_rev_nbr;
758:
759: CURSOR C_diff_Config_Exists IS

Line 2856: FROM cz_config_messages

2852: IS
2853:
2854: CURSOR c_messages(p_config_hdr_id NUMBER, p_config_rev_nbr NUMBER) is
2855: SELECT constraint_type , message
2856: FROM cz_config_messages
2857: WHERE config_hdr_id = p_config_hdr_id
2858: AND config_rev_nbr = p_config_rev_nbr;
2859:
2860: i NUMBER := 1;

Line 2962: aso_debug_pub.add('Parse_output_xml: Getting messages from cz_config_messages');

2958:
2959: IF l_config_header_id is NULL THEN
2960:
2961: IF aso_debug_pub.g_debug_flag = 'Y' THEN
2962: aso_debug_pub.add('Parse_output_xml: Getting messages from cz_config_messages');
2963: END IF;
2964:
2965: OPEN c_messages(l_config_header_id, l_config_revision_num);
2966: