DBA Data[Home] [Help]

APPS.HZ_PARTY_STAGE_SHADOW dependencies on FND_FILE

Line 1388: FND_FILE.close;

1384: WHEN FND_API.G_EXC_ERROR THEN
1385: outandlog('Error: Aborting staging');
1386: retcode := 2;
1387: errbuf := errbuf || logerror || SQLERRM;
1388: FND_FILE.close;
1389: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1390: outandlog('Error: Aborting staging');
1391: retcode := 2;
1392: errbuf := errbuf || logerror || SQLERRM;

Line 1393: FND_FILE.close;

1389: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1390: outandlog('Error: Aborting staging');
1391: retcode := 2;
1392: errbuf := errbuf || logerror || SQLERRM;
1393: FND_FILE.close;
1394: WHEN OTHERS THEN
1395: log(fnd_message.get);
1396: outandlog('Error: Aborting staging');
1397: outandlog(SQLERRM);

Line 1400: FND_FILE.close;

1396: outandlog('Error: Aborting staging');
1397: outandlog(SQLERRM);
1398: retcode := 2;
1399: errbuf := errbuf || logerror || SQLERRM;
1400: FND_FILE.close;
1401: END;
1402:
1403:
1404: PROCEDURE Stage_worker(

Line 1616: FND_FILE.close;

1612: WHEN FND_API.G_EXC_ERROR THEN
1613: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
1614: retcode := 2;
1615: errbuf := errbuf || logerror;
1616: FND_FILE.close;
1617: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1618: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
1619: retcode := 2;
1620: errbuf := errbuf || logerror;

Line 1621: FND_FILE.close;

1617: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1618: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
1619: retcode := 2;
1620: errbuf := errbuf || logerror;
1621: FND_FILE.close;
1622: WHEN OTHERS THEN
1623: outandlog('Error: Aborting staging '|| SQLERRM);
1624: retcode := 2;
1625: errbuf := errbuf || logerror;

Line 1626: FND_FILE.close;

1622: WHEN OTHERS THEN
1623: outandlog('Error: Aborting staging '|| SQLERRM);
1624: retcode := 2;
1625: errbuf := errbuf || logerror;
1626: FND_FILE.close;
1627: END;
1628:
1629: FUNCTION new_primary_trans(p_entity VARCHAR2
1630: ) RETURN BOOLEAN IS

Line 2079: FND_FILE.close;

2075: log('Error ' || SQLERRM);
2076: retcode := 2;
2077: errbuf := errbuf || logerror;
2078: outandlog('Aborting concurrent program execution');
2079: FND_FILE.close;
2080: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2081: outandlog('Error: ' || FND_MESSAGE.GET);
2082: log('Error ' || SQLERRM);
2083: retcode := 2;

Line 2086: FND_FILE.close;

2082: log('Error ' || SQLERRM);
2083: retcode := 2;
2084: errbuf := errbuf || logerror;
2085: outandlog('Aborting concurrent program execution');
2086: FND_FILE.close;
2087: WHEN OTHERS THEN
2088: outandlog('Error: ' || FND_MESSAGE.GET);
2089: log('SQL Error ' || SQLERRM);
2090: retcode := 2;

Line 2093: FND_FILE.close;

2089: log('SQL Error ' || SQLERRM);
2090: retcode := 2;
2091: errbuf := errbuf || logerror || SQLERRM;
2092: outandlog('Aborting concurrent program execution');
2093: FND_FILE.close;
2094: END;
2095:
2096: PROCEDURE generate_map_proc (
2097: p_entity IN VARCHAR2,

Line 2812: l(' FND_FILE.put_line(FND_FILE.log,''Aborted by User'');');

2808: l(' LOOP');
2809: l(' call_status := FND_CONCURRENT.GET_REQUEST_STATUS(');
2810: l(' req_id, null,null,rphase,rstatus,dphase,dstatus,message);');
2811: l(' IF dstatus = ''TERMINATING'' THEN');
2812: l(' FND_FILE.put_line(FND_FILE.log,''Aborted by User'');');
2813: l(' RAISE USER_TERMINATE;');
2814: l(' END IF;');
2815: l(' FETCH p_party_cur BULK COLLECT INTO');
2816: l(' H_P_PARTY_ID');

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

4562: message IN VARCHAR2,
4563: newline IN BOOLEAN DEFAULT TRUE) IS
4564: BEGIN
4565: IF message = 'NEWLINE' THEN
4566: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
4567: ELSIF (newline) THEN
4568: FND_FILE.put_line(fnd_file.output,message);
4569: ELSE
4570: FND_FILE.put(fnd_file.output,message);

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

4564: BEGIN
4565: IF message = 'NEWLINE' THEN
4566: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
4567: ELSIF (newline) THEN
4568: FND_FILE.put_line(fnd_file.output,message);
4569: ELSE
4570: FND_FILE.put(fnd_file.output,message);
4571: END IF;
4572: END out;

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

4566: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
4567: ELSIF (newline) THEN
4568: FND_FILE.put_line(fnd_file.output,message);
4569: ELSE
4570: FND_FILE.put(fnd_file.output,message);
4571: END IF;
4572: END out;
4573:
4574: /**

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

4579: newline IN BOOLEAN DEFAULT TRUE) IS
4580: BEGIN
4581:
4582: IF message = 'NEWLINE' THEN
4583: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
4584: ELSIF (newline) THEN
4585: FND_FILE.put_line(fnd_file.log,message);
4586: ELSE
4587: FND_FILE.put(fnd_file.log,message);

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

4581:
4582: IF message = 'NEWLINE' THEN
4583: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
4584: ELSIF (newline) THEN
4585: FND_FILE.put_line(fnd_file.log,message);
4586: ELSE
4587: FND_FILE.put(fnd_file.log,message);
4588: END IF;
4589: END log;

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

4583: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
4584: ELSIF (newline) THEN
4585: FND_FILE.put_line(fnd_file.log,message);
4586: ELSE
4587: FND_FILE.put(fnd_file.log,message);
4588: END IF;
4589: END log;
4590:
4591: /**