DBA Data[Home] [Help]

APPS.INVPUTLI dependencies on DBMS_PIPE

Line 24: dbms_pipe.pack_message(

20: IS
21: id NUMBER;
22: BEGIN
23: IF indent < 1 or indent > 60 THEN
24: dbms_pipe.pack_message(
25: ' Indent: ' || to_char(indent) || ' is invalid ' ||
26: p_message );
27: ELSE
28: IF p_message LIKE '%Stop Server' THEN

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

25: ' Indent: ' || to_char(indent) || ' is invalid ' ||
26: p_message );
27: ELSE
28: IF p_message LIKE '%Stop Server' THEN
29: dbms_pipe.pack_message('Abort');
30: ELSE
31: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);
32: END IF;
33: END IF;

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

27: ELSE
28: IF p_message LIKE '%Stop Server' THEN
29: dbms_pipe.pack_message('Abort');
30: ELSE
31: dbms_pipe.pack_message(lpad(' ', Indent) || P_message);
32: END IF;
33: END IF;
34: id := dbms_pipe.send_message('INVDEBUG', 1);
35: IF id <> 0 THEN

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

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