DBA Data[Home] [Help]

APPS.XNP_TIMER dependencies on XNP_XML_UTILS

Line 44: xnp_xml_utils.decode(p_msg_text,'DELAY',l_temp) ;

40: x_error_code := 0;
41: x_error_message := NULL;
42:
43:
44: xnp_xml_utils.decode(p_msg_text,'DELAY',l_temp) ;
45: l_delay := TO_NUMBER(l_temp) ;
46:
47: xnp_xml_utils.decode(p_msg_text,'INTERVAL',l_temp) ;
48: l_interval := TO_NUMBER(l_temp) ;

Line 47: xnp_xml_utils.decode(p_msg_text,'INTERVAL',l_temp) ;

43:
44: xnp_xml_utils.decode(p_msg_text,'DELAY',l_temp) ;
45: l_delay := TO_NUMBER(l_temp) ;
46:
47: xnp_xml_utils.decode(p_msg_text,'INTERVAL',l_temp) ;
48: l_interval := TO_NUMBER(l_temp) ;
49:
50:
51: IF (l_delay <= 0) THEN

Line 58: xnp_xml_utils.decode(p_msg_text,

54: p_msg_text => p_msg_text,
55: x_error_code => x_error_code,
56: x_error_message => x_error_message);
57: ELSE
58: xnp_xml_utils.decode(p_msg_text,
59: p_msg_header.message_code,
60: l_payload) ;
61:
62: xnp_t_dummy_u.create_msg(x_msg_header => l_msg_header,

Line 199: xnp_xml_utils.decode(p_msg_text,'T_DUMMY',l_dummy_text);

195: END IF;
196:
197: IF (p_msg_header.message_code = 'T_DUMMY') THEN
198:
199: xnp_xml_utils.decode(p_msg_text,'T_DUMMY',l_dummy_text);
200:
201: xnp_xml_utils.decode(l_dummy_text, 'INTERVAL',
202: l_interval_txt) ;
203: ELSE

Line 201: xnp_xml_utils.decode(l_dummy_text, 'INTERVAL',

197: IF (p_msg_header.message_code = 'T_DUMMY') THEN
198:
199: xnp_xml_utils.decode(p_msg_text,'T_DUMMY',l_dummy_text);
200:
201: xnp_xml_utils.decode(l_dummy_text, 'INTERVAL',
202: l_interval_txt) ;
203: ELSE
204:
205: xnp_xml_utils.decode(p_msg_text, 'INTERVAL', l_interval_txt) ;

Line 205: xnp_xml_utils.decode(p_msg_text, 'INTERVAL', l_interval_txt) ;

201: xnp_xml_utils.decode(l_dummy_text, 'INTERVAL',
202: l_interval_txt) ;
203: ELSE
204:
205: xnp_xml_utils.decode(p_msg_text, 'INTERVAL', l_interval_txt) ;
206:
207: END IF ;
208:
209: l_interval := TO_NUMBER(l_interval_txt) ;