DBA Data[Home] [Help]

APPS.POA_LOG dependencies on FND_DATE

Line 83: fnd_date.date_to_charDT(sysdate));

79:
80: poa_log.put_names(filename ||'.log',filename||'.out',
81: '/sqlcom/log');
82: poa_log.put_line('System time at the start of the process is: ' ||
83: fnd_date.date_to_charDT(sysdate));
84: poa_log.put_line( ' ');
85:
86: END setup;
87:

Line 94: fnd_date.date_to_charDT(sysdate));

90:
91: BEGIN
92: IF (status = 'SUCCESS') THEN
93: poa_log.put_line('Process completed at: ' ||
94: fnd_date.date_to_charDT(sysdate));
95: ELSIF (status = 'ERROR') THEN
96: poa_log.put_line('Process terminated with error at: ' ||
97: fnd_date.date_to_charDT(sysdate));
98: END IF;

Line 97: fnd_date.date_to_charDT(sysdate));

93: poa_log.put_line('Process completed at: ' ||
94: fnd_date.date_to_charDT(sysdate));
95: ELSIF (status = 'ERROR') THEN
96: poa_log.put_line('Process terminated with error at: ' ||
97: fnd_date.date_to_charDT(sysdate));
98: END IF;
99:
100: poa_log.put_line(' ');
101: END wrapup;