DBA Data[Home] [Help]

APPS.XNP_ACK_U dependencies on XNP_ERRORS

Line 83: x_error_code := XNP_ERRORS.G_MISSING_MANDATORY_DATA ;

79: x_msg_text := l_xml_doc ;
80: /* handle exceptions */
81: EXCEPTION
82: WHEN e_MISSING_MANDATORY_DATA THEN
83: x_error_code := XNP_ERRORS.G_MISSING_MANDATORY_DATA ;
84: WHEN OTHERS THEN
85: x_error_code := SQLCODE ;
86: x_error_message := 'ACK.create_msg()::' || SQLERRM ;
87: END ;

Line 149: x_error_code := XNP_ERRORS.G_NO_DESTINATION ;

145: NULL;
146: END IF ;
147: EXCEPTION
148: WHEN e_NO_DESTINATION THEN
149: x_error_code := XNP_ERRORS.G_NO_DESTINATION ;
150: WHEN OTHERS THEN
151: x_error_code := SQLCODE ;
152: x_error_message := SQLERRM ;
153: END ;