DBA Data[Home] [Help]

APPS.INVPUTLI dependencies on DBMS_PIPE

Line 29: dbms_pipe.pack_message(

25: IS
26: id NUMBER;
27: BEGIN
28: IF indent < 1 or indent > 60 THEN
29: dbms_pipe.pack_message(
30: ' Indent: ' || to_char(indent) || ' is invalid ' ||
31: p_message );
32: ELSE
33: IF p_message LIKE '%Stop Server' THEN

Line 34: dbms_pipe.pack_message('Abort');

30: ' Indent: ' || to_char(indent) || ' is invalid ' ||
31: p_message );
32: ELSE
33: IF p_message LIKE '%Stop Server' THEN
34: dbms_pipe.pack_message('Abort');
35: ELSE
36: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);
37: END IF;
38: END IF;

Line 36: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);

32: ELSE
33: IF p_message LIKE '%Stop Server' THEN
34: dbms_pipe.pack_message('Abort');
35: ELSE
36: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);
37: END IF;
38: END IF;
39: id := dbms_pipe.send_message('INVDEBUG', 1);
40: IF id <> 0 THEN

Line 39: id := dbms_pipe.send_message('INVDEBUG', 1);

35: ELSE
36: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);
37: END IF;
38: END IF;
39: id := dbms_pipe.send_message('INVDEBUG', 1);
40: IF id <> 0 THEN
41: null; -- could not arcs in with a call to dbms_output.put
42: -- dbms_output.Put('Could not send through pipe status: ' || to_char(id));
43: END IF;