DBA Data[Home] [Help]

APPS.INVPUTLI dependencies on DBMS_OUTPUT

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

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

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

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;
44:
45: END send;

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

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;
44:
45: END send;
46: