DBA Data[Home] [Help]

APPS.HZ_BES_BO_RAISE_PKG dependencies on FND_FILE

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

25: message IN VARCHAR2,
26: newline IN BOOLEAN DEFAULT TRUE) IS
27: BEGIN
28: IF (newline) THEN
29: FND_FILE.put_line(fnd_file.output,message);
30: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);
33: END IF;

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

26: newline IN BOOLEAN DEFAULT TRUE) IS
27: BEGIN
28: IF (newline) THEN
29: FND_FILE.put_line(fnd_file.output,message);
30: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);
33: END IF;
34: END out;

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

28: IF (newline) THEN
29: FND_FILE.put_line(fnd_file.output,message);
30: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);
33: END IF;
34: END out;
35: ----------------------------------------------
36: /**

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

42: newline IN BOOLEAN DEFAULT TRUE) IS
43: l_prefix VARCHAR2(20) := 'BES_BO_RAISE';
44: BEGIN
45: /*
46: FND_FILE.LOG = 1 - means log file
47: FND_FILE.LOG = 2 - means out file
48: */
49: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
50: hz_utility_v2pub.DEBUG (

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

43: l_prefix VARCHAR2(20) := 'BES_BO_RAISE';
44: BEGIN
45: /*
46: FND_FILE.LOG = 1 - means log file
47: FND_FILE.LOG = 2 - means out file
48: */
49: IF fnd_log.level_procedure>=fnd_log.g_current_runtime_level THEN
50: hz_utility_v2pub.DEBUG (
51: p_message=>message,

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

53: p_msg_level=>fnd_log.level_procedure);
54: END IF ;
55:
56: IF newline THEN
57: FND_FILE.put_line(FND_FILE.LOG,message);
58: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
59: ELSE
60: FND_FILE.put_line(FND_FILE.LOG,message);
61: END IF;

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

54: END IF ;
55:
56: IF newline THEN
57: FND_FILE.put_line(FND_FILE.LOG,message);
58: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
59: ELSE
60: FND_FILE.put_line(FND_FILE.LOG,message);
61: END IF;
62: END log;

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

56: IF newline THEN
57: FND_FILE.put_line(FND_FILE.LOG,message);
58: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
59: ELSE
60: FND_FILE.put_line(FND_FILE.LOG,message);
61: END IF;
62: END log;
63: ----------------------------------------------
64: /**

Line 1425: FND_FILE.close;

1421: WHEN FND_API.G_EXC_ERROR THEN
1422: outandlog('Error: Aborting concurrent program');
1423: retcode := 2;
1424: errbuf := errbuf || logerror;
1425: FND_FILE.close;
1426: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1427: outandlog(SQLERRM);
1428: outandlog('Error: Aborting concurrent program');
1429: retcode := 2;

Line 1431: FND_FILE.close;

1427: outandlog(SQLERRM);
1428: outandlog('Error: Aborting concurrent program');
1429: retcode := 2;
1430: errbuf := errbuf || logerror;
1431: FND_FILE.close;
1432: WHEN OTHERS THEN
1433: outandlog(SQLERRM);
1434: outandlog('Error: Aborting concurrent program');
1435: retcode := 2;

Line 1437: FND_FILE.close;

1433: outandlog(SQLERRM);
1434: outandlog('Error: Aborting concurrent program');
1435: retcode := 2;
1436: errbuf := errbuf || logerror;
1437: FND_FILE.close;
1438: END; -- bes_main
1439:
1440: -------------------------------------------------------------------------
1441: -------------------------------------------------------------------------