DBA Data[Home] [Help]

APPS.INVPUTLI dependencies on DBMS_OUTPUT

Line 12: DBMS_Output.put_line('['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] **> ' || p_message);

8: PROCEDURE info (p_message VARCHAR2)
9: IS
10: BEGIN
11: IF ( g_Debug_Level = 101 ) THEN
12: DBMS_Output.put_line('['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] **> ' || p_message);
13: -- FND_FILE.put_line (FND_FILE.log, '['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] **> ' || p_message);
14: ELSIF ( g_Debug_Level = 102 ) THEN
15: FND_FILE.put_line (FND_FILE.log, '['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] **> ' || p_message);
16: END IF;

Line 36: null; -- could not arcs in with a call to dbms_output.put

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;
39:
40: END send;

Line 37: -- dbms_output.Put('Could not send through pipe status: ' || to_char(id));

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;
39:
40: END send;
41: