DBA Data[Home] [Help]

APPS.XNP_PIPE dependencies on XNP_ERRORS

Line 25: x_error_code := xnp_errors.g_no_msg_in_pipe ;

21:
22: if (l_msg_status = 0) then
23: dbms_pipe.unpack_message(x_msg_text) ;
24: elsif (l_msg_status = 1) then
25: x_error_code := xnp_errors.g_no_msg_in_pipe ;
26: x_error_message := 'No message in pipe - timedout' ;
27: --We donot use this message for anything - fnd_message.get is a DB call!!
28: --fnd_message.set_name('XNP','NO_MSG_IN_PIPE') ;
29: --fnd_message.set_token('NAME',p_pipe_name) ;

Line 68: x_error_code := xnp_errors.g_pipe_write_failure ;

64:
65: l_status := dbms_pipe.send_message(p_pipe_name, p_timeout) ;
66:
67: if (l_status <> 0) then
68: x_error_code := xnp_errors.g_pipe_write_failure ;
69: x_error_message := 'Failed to write to the specified pipe';
70: end if ;
71:
72: exception