DBA Data[Home] [Help]

APPS.HZ_BES_BO_GEN_PKG dependencies on FND_FILE

Line 45: FND_FILE.put_line(fnd_file.output,message);

41: message IN VARCHAR2,
42: newline IN BOOLEAN DEFAULT TRUE) IS
43: BEGIN
44: IF (newline) THEN
45: FND_FILE.put_line(fnd_file.output,message);
46: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
47: ELSE
48: FND_FILE.put(fnd_file.output,message);
49: END IF;

Line 46: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);

42: newline IN BOOLEAN DEFAULT TRUE) IS
43: BEGIN
44: IF (newline) THEN
45: FND_FILE.put_line(fnd_file.output,message);
46: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
47: ELSE
48: FND_FILE.put(fnd_file.output,message);
49: END IF;
50: END out;

Line 48: FND_FILE.put(fnd_file.output,message);

44: IF (newline) THEN
45: FND_FILE.put_line(fnd_file.output,message);
46: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
47: ELSE
48: FND_FILE.put(fnd_file.output,message);
49: END IF;
50: END out;
51: ----------------------------------------------
52: ----------------------------------------------

Line 63: FND_FILE.LOG = 1 - means log file

59: newline IN BOOLEAN DEFAULT TRUE) IS
60: l_prefix VARCHAR2(20) := 'BES_BO_RAISE';
61: BEGIN
62: /*
63: FND_FILE.LOG = 1 - means log file
64: FND_FILE.LOG = 2 - means out file
65: */
66: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
67: hz_utility_v2pub.DEBUG (

Line 64: FND_FILE.LOG = 2 - means out file

60: l_prefix VARCHAR2(20) := 'BES_BO_RAISE';
61: BEGIN
62: /*
63: FND_FILE.LOG = 1 - means log file
64: FND_FILE.LOG = 2 - means out file
65: */
66: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
67: hz_utility_v2pub.DEBUG (
68: p_message=>message,

Line 74: FND_FILE.put_line(FND_FILE.LOG,message);

70: p_msg_level=>fnd_log.level_procedure);
71: END IF ;
72:
73: IF newline THEN
74: FND_FILE.put_line(FND_FILE.LOG,message);
75: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
76: ELSE
77: FND_FILE.put_line(FND_FILE.LOG,message);
78: END IF;

Line 75: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);

71: END IF ;
72:
73: IF newline THEN
74: FND_FILE.put_line(FND_FILE.LOG,message);
75: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
76: ELSE
77: FND_FILE.put_line(FND_FILE.LOG,message);
78: END IF;
79: END log;

Line 77: FND_FILE.put_line(FND_FILE.LOG,message);

73: IF newline THEN
74: FND_FILE.put_line(FND_FILE.LOG,message);
75: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
76: ELSE
77: FND_FILE.put_line(FND_FILE.LOG,message);
78: END IF;
79: END log;
80: ----------------------------------------------
81: /**

Line 2878: FND_FILE.close;

2874: WHEN FND_API.G_EXC_ERROR THEN
2875: outandlog('Error: Aborting concurrent program');
2876: retcode := 2;
2877: errbuf := errbuf || logerror;
2878: FND_FILE.close;
2879: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2880: outandlog('Error: Aborting concurrent program');
2881: retcode := 2;
2882: errbuf := errbuf || logerror;

Line 2883: FND_FILE.close;

2879: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2880: outandlog('Error: Aborting concurrent program');
2881: retcode := 2;
2882: errbuf := errbuf || logerror;
2883: FND_FILE.close;
2884: WHEN OTHERS THEN
2885: outandlog('Error: Aborting concurrent program');
2886: retcode := 2;
2887: errbuf := errbuf || logerror;

Line 2888: FND_FILE.close;

2884: WHEN OTHERS THEN
2885: outandlog('Error: Aborting concurrent program');
2886: retcode := 2;
2887: errbuf := errbuf || logerror;
2888: FND_FILE.close;
2889: END gen_pkg_main;
2890:
2891: END HZ_BES_BO_GEN_PKG; -- end of pkg body