DBA Data[Home] [Help]

APPS.ASO_CFG_INT dependencies on CZ_CONFIG_MESSAGES

Line 843: FROM cz_config_messages

839: WHERE quote_line_id = p_config_rec.quote_line_id;
840:
841: CURSOR c_messages is
842: SELECT constraint_type, message
843: FROM cz_config_messages
844: WHERE config_hdr_id = p_config_hdr_id
845: AND config_rev_nbr = p_config_rev_nbr;
846:
847: CURSOR C_diff_Config_Exists IS

Line 3151: FROM cz_config_messages

3147: IS
3148:
3149: CURSOR c_messages(p_config_hdr_id NUMBER, p_config_rev_nbr NUMBER) is
3150: SELECT constraint_type , message
3151: FROM cz_config_messages
3152: WHERE config_hdr_id = p_config_hdr_id
3153: AND config_rev_nbr = p_config_rev_nbr;
3154:
3155: i NUMBER := 1;

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

3253:
3254: IF l_config_header_id is NULL THEN
3255:
3256: IF aso_debug_pub.g_debug_flag = 'Y' THEN
3257: aso_debug_pub.add('Parse_output_xml: Getting messages from cz_config_messages');
3258: END IF;
3259:
3260: OPEN c_messages(l_config_header_id, l_config_revision_num);
3261: