DBA Data[Home] [Help]

APPS.AR_UPGHARNESS_PKG dependencies on FND_FILE

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

30: message IN VARCHAR2,
31: newline IN BOOLEAN DEFAULT TRUE) IS
32: BEGIN
33: IF message = 'NEWLINE' THEN
34: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
35: ELSIF (newline) THEN
36: FND_FILE.put_line(fnd_file.log,message);
37: ELSE
38: FND_FILE.put(fnd_file.log,message);

Line 36: FND_FILE.put_line(fnd_file.log,message);

32: BEGIN
33: IF message = 'NEWLINE' THEN
34: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
35: ELSIF (newline) THEN
36: FND_FILE.put_line(fnd_file.log,message);
37: ELSE
38: FND_FILE.put(fnd_file.log,message);
39: END IF;
40: END log;

Line 38: FND_FILE.put(fnd_file.log,message);

34: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
35: ELSIF (newline) THEN
36: FND_FILE.put_line(fnd_file.log,message);
37: ELSE
38: FND_FILE.put(fnd_file.log,message);
39: END IF;
40: END log;
41:
42: PROCEDURE out(

Line 47: FND_FILE.NEW_LINE(FND_FILE.output, 1);

43: message IN VARCHAR2,
44: newline IN BOOLEAN DEFAULT TRUE) IS
45: BEGIN
46: IF message = 'NEWLINE' THEN
47: FND_FILE.NEW_LINE(FND_FILE.output, 1);
48: ELSIF (newline) THEN
49: FND_FILE.put_line(fnd_file.output,message);
50: ELSE
51: FND_FILE.put(fnd_file.output,message);

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

45: BEGIN
46: IF message = 'NEWLINE' THEN
47: FND_FILE.NEW_LINE(FND_FILE.output, 1);
48: ELSIF (newline) THEN
49: FND_FILE.put_line(fnd_file.output,message);
50: ELSE
51: FND_FILE.put(fnd_file.output,message);
52: END IF;
53: END out;

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

47: FND_FILE.NEW_LINE(FND_FILE.output, 1);
48: ELSIF (newline) THEN
49: FND_FILE.put_line(fnd_file.output,message);
50: ELSE
51: FND_FILE.put(fnd_file.output,message);
52: END IF;
53: END out;
54:
55: PROCEDURE outandlog(

Line 929: -- FND_FILE.close;

925: outandlog('Error: ' || FND_MESSAGE.GET);
926: retcode := 1;
927: errbuf := errbuf || logerror;
928: outandlog('Aborting concurrent program execution');
929: -- FND_FILE.close;
930:
931: WHEN FND_API.G_EXC_ERROR THEN
932: ROLLBACK TO upgrade_by_request;
933: outandlog('Error: ' || FND_MESSAGE.GET);

Line 937: -- FND_FILE.close;

933: outandlog('Error: ' || FND_MESSAGE.GET);
934: retcode := 1;
935: errbuf := errbuf || logerror;
936: outandlog('Aborting concurrent program execution');
937: -- FND_FILE.close;
938:
939:
940: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
941: --JL raises FND api error

Line 947: -- FND_FILE.close;

943: outandlog('Error: ' || FND_MESSAGE.GET);
944: retcode := 1;
945: errbuf := errbuf || logerror;
946: outandlog('Aborting concurrent program execution');
947: -- FND_FILE.close;
948:
949: WHEN OTHERS THEN
950: --AR and MRC and PSA raises when others
951: outandlog('Error: ' || FND_MESSAGE.GET);

Line 957: -- FND_FILE.close;

953: retcode := 1;
954: errbuf := errbuf || logerror || SQLERRM;
955: outandlog('Aborting concurrent program execution');
956: ROLLBACK TO upgrade_by_request;
957: -- FND_FILE.close;
958:
959: END;
960:
961: