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 887: -- FND_FILE.close;

883: outandlog('Error: ' || FND_MESSAGE.GET);
884: retcode := 1;
885: errbuf := errbuf || logerror;
886: outandlog('Aborting concurrent program execution');
887: -- FND_FILE.close;
888:
889: WHEN FND_API.G_EXC_ERROR THEN
890: ROLLBACK TO upgrade_by_request;
891: outandlog('Error: ' || FND_MESSAGE.GET);

Line 895: -- FND_FILE.close;

891: outandlog('Error: ' || FND_MESSAGE.GET);
892: retcode := 1;
893: errbuf := errbuf || logerror;
894: outandlog('Aborting concurrent program execution');
895: -- FND_FILE.close;
896:
897:
898: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
899: --JL raises FND api error

Line 905: -- FND_FILE.close;

901: outandlog('Error: ' || FND_MESSAGE.GET);
902: retcode := 1;
903: errbuf := errbuf || logerror;
904: outandlog('Aborting concurrent program execution');
905: -- FND_FILE.close;
906:
907: WHEN OTHERS THEN
908: --AR and MRC and PSA raises when others
909: ROLLBACK TO upgrade_by_request;

Line 915: -- FND_FILE.close;

911: log('SQL Error ' || SQLERRM);
912: retcode := 1;
913: errbuf := errbuf || logerror || SQLERRM;
914: outandlog('Aborting concurrent program execution');
915: -- FND_FILE.close;
916:
917: END;
918:
919: