DBA Data[Home] [Help]

APPS.GL_COA_SVIM_CONC_PKG dependencies on FND_FILE

Line 109: /* different types are P -> fnd_file.put, L-> fnd_file.put_line,N -> fnd_file.new_line */

105: END get_message;
106:
107: /* Procedure to write log file */
108: PROCEDURE log_file(p_c_text VARCHAR2,p_c_type VARCHAR2) AS
109: /* different types are P -> fnd_file.put, L-> fnd_file.put_line,N -> fnd_file.new_line */
110: BEGIN
111:
112: IF p_c_type = 'P' THEN
113: fnd_file.put(fnd_file.log,p_c_text);

Line 113: fnd_file.put(fnd_file.log,p_c_text);

109: /* different types are P -> fnd_file.put, L-> fnd_file.put_line,N -> fnd_file.new_line */
110: BEGIN
111:
112: IF p_c_type = 'P' THEN
113: fnd_file.put(fnd_file.log,p_c_text);
114: ELSIF p_c_type = 'L' THEN
115: fnd_file.put_line(fnd_file.log,p_c_text);
116: ELSIF p_c_type = 'N' THEN
117: fnd_file.new_line(fnd_file.log);

Line 115: fnd_file.put_line(fnd_file.log,p_c_text);

111:
112: IF p_c_type = 'P' THEN
113: fnd_file.put(fnd_file.log,p_c_text);
114: ELSIF p_c_type = 'L' THEN
115: fnd_file.put_line(fnd_file.log,p_c_text);
116: ELSIF p_c_type = 'N' THEN
117: fnd_file.new_line(fnd_file.log);
118: END IF;
119: END log_file;

Line 117: fnd_file.new_line(fnd_file.log);

113: fnd_file.put(fnd_file.log,p_c_text);
114: ELSIF p_c_type = 'L' THEN
115: fnd_file.put_line(fnd_file.log,p_c_text);
116: ELSIF p_c_type = 'N' THEN
117: fnd_file.new_line(fnd_file.log);
118: END IF;
119: END log_file;
120:
121: /* Procedure to char - n times */

Line 458: fnd_file.put_line(fnd_file.log,sqlerrm);

454: EXCEPTION
455: WHEN OTHERS THEN
456: ROLLBACK;
457: retcode:=2;
458: fnd_file.put_line(fnd_file.log,sqlerrm);
459: errbuf := fnd_message.get_string('SQLGL','GL_COA_SVI_UNH_EXCEPTION') ;
460: gl_business_events.raise(
461: p_event_name =>'oracle.apps.gl.ChartOfAccounts.SegmentValues.completeImport',
462: p_event_key => 'The Chart of Accounts Segment Values Import Program is completed',