DBA Data[Home] [Help]

APPS.HZ_PARTY_STAGE dependencies on FND_FILE

Line 2465: FND_FILE.close;

2461: WHEN FND_API.G_EXC_ERROR THEN
2462: outandlog('Error: Aborting staging');
2463: retcode := 2;
2464: errbuf := errbuf || logerror || SQLERRM;
2465: FND_FILE.close;
2466: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2467: outandlog('Error: Aborting staging');
2468: retcode := 2;
2469: errbuf := errbuf || logerror || SQLERRM;

Line 2470: FND_FILE.close;

2466: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2467: outandlog('Error: Aborting staging');
2468: retcode := 2;
2469: errbuf := errbuf || logerror || SQLERRM;
2470: FND_FILE.close;
2471: WHEN OTHERS THEN
2472: log(fnd_message.get);
2473: outandlog('Error: Aborting staging');
2474: retcode := 2;

Line 2476: FND_FILE.close;

2472: log(fnd_message.get);
2473: outandlog('Error: Aborting staging');
2474: retcode := 2;
2475: errbuf := errbuf || logerror || SQLERRM;
2476: FND_FILE.close;
2477: END;
2478:
2479:
2480: PROCEDURE gather_stats(

Line 2597: fnd_file.put_line(FND_FILE.LOG, ' X_Worker_Id : '||l_worker_number);

2593: raise_application_error(-20001,
2594: 'Cannot get schema name for product : '||l_product);
2595: end if;
2596:
2597: fnd_file.put_line(FND_FILE.LOG, ' X_Worker_Id : '||l_worker_number);
2598: fnd_file.put_line(FND_FILE.LOG, 'X_Num_Workers : '||l_num_workers);
2599:
2600: --
2601: -- Worker processing

Line 2598: fnd_file.put_line(FND_FILE.LOG, 'X_Num_Workers : '||l_num_workers);

2594: 'Cannot get schema name for product : '||l_product);
2595: end if;
2596:
2597: fnd_file.put_line(FND_FILE.LOG, ' X_Worker_Id : '||l_worker_number);
2598: fnd_file.put_line(FND_FILE.LOG, 'X_Num_Workers : '||l_num_workers);
2599:
2600: --
2601: -- Worker processing
2602: --

Line 2989: FND_FILE.close;

2985: WHEN FND_API.G_EXC_ERROR THEN
2986: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
2987: retcode := 2;
2988: errbuf := errbuf || logerror;
2989: FND_FILE.close;
2990: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2991: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
2992: retcode := 2;
2993: errbuf := errbuf || logerror;

Line 2994: FND_FILE.close;

2990: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2991: outandlog('Error: Aborting staging ' || FND_MESSAGE.GET);
2992: retcode := 2;
2993: errbuf := errbuf || logerror;
2994: FND_FILE.close;
2995: WHEN OTHERS THEN
2996: outandlog('Error: Aborting staging '|| SQLERRM);
2997: retcode := 2;
2998: errbuf := errbuf || logerror;

Line 2999: FND_FILE.close;

2995: WHEN OTHERS THEN
2996: outandlog('Error: Aborting staging '|| SQLERRM);
2997: retcode := 2;
2998: errbuf := errbuf || logerror;
2999: FND_FILE.close;
3000: END;
3001:
3002:
3003: FUNCTION new_primary_trans(p_entity VARCHAR2

Line 3435: FND_FILE.put_line(FND_FILE.log, 'Error during DENORM PARTY Index Synchronization SQLEERM=' ||SQLERRM);

3431: where party_id between l_min_id and l_max_id ;
3432: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_parties_t1');
3433: FND_Concurrent.af_commit;
3434: WHEN OTHERS THEN
3435: FND_FILE.put_line(FND_FILE.log, 'Error during DENORM PARTY Index Synchronization SQLEERM=' ||SQLERRM);
3436: retcode := 2;
3437: errbuf := SQLERRM;
3438: END;
3439:

Line 3461: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');

3457: and rownum<1001 ) a )
3458: where rnum = 1000;
3459: update hz_staged_parties set concat_col = concat_col
3460: where party_id between l_min_id and tmp;
3461: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');
3462: AD_CTX_DDL.sync_index(l_index_owner|| '.hz_stage_parties_t1');
3463: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');
3464: FND_Concurrent.af_commit;
3465: l_min_id:=tmp+1;

Line 3463: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');

3459: update hz_staged_parties set concat_col = concat_col
3460: where party_id between l_min_id and tmp;
3461: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');
3462: AD_CTX_DDL.sync_index(l_index_owner|| '.hz_stage_parties_t1');
3463: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');
3464: FND_Concurrent.af_commit;
3465: l_min_id:=tmp+1;
3466: END LOOP;
3467: EXCEPTION

Line 3471: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');

3467: EXCEPTION
3468: WHEN NO_DATA_FOUND THEN
3469: update hz_staged_parties set concat_col = concat_col
3470: where party_id between l_min_id and l_max_id ;
3471: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');
3472: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_parties_t1');
3473: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');
3474: FND_Concurrent.af_commit;
3475: WHEN OTHERS THEN

Line 3473: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');

3469: update hz_staged_parties set concat_col = concat_col
3470: where party_id between l_min_id and l_max_id ;
3471: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_parties_t1 index');
3472: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_parties_t1');
3473: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');
3474: FND_Concurrent.af_commit;
3475: WHEN OTHERS THEN
3476: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY Index Synchronization SQLEERM=' ||SQLERRM);
3477: retcode := 2;

Line 3476: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY Index Synchronization SQLEERM=' ||SQLERRM);

3472: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_parties_t1');
3473: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_parties_t1 index successful');
3474: FND_Concurrent.af_commit;
3475: WHEN OTHERS THEN
3476: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY Index Synchronization SQLEERM=' ||SQLERRM);
3477: retcode := 2;
3478: errbuf := SQLERRM;
3479: END;
3480:

Line 3508: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');

3504: and rownum<1001 ) a )
3505: where rnum = 1000;
3506: update hz_staged_party_sites set concat_col = concat_col
3507: where party_id between l_min_id and tmp;
3508: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');
3509: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_party_sites_t1');
3510: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');
3511: FND_Concurrent.af_commit;
3512: l_min_id:=tmp+1;

Line 3510: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');

3506: update hz_staged_party_sites set concat_col = concat_col
3507: where party_id between l_min_id and tmp;
3508: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');
3509: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_party_sites_t1');
3510: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');
3511: FND_Concurrent.af_commit;
3512: l_min_id:=tmp+1;
3513: END LOOP;
3514: EXCEPTION

Line 3518: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');

3514: EXCEPTION
3515: WHEN NO_DATA_FOUND THEN
3516: update hz_staged_party_sites set concat_col = concat_col
3517: where party_site_id between l_min_id and l_max_id ;
3518: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');
3519: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_party_sites_t1');
3520: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');
3521: FND_Concurrent.af_commit;
3522: WHEN OTHERS THEN

Line 3520: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');

3516: update hz_staged_party_sites set concat_col = concat_col
3517: where party_site_id between l_min_id and l_max_id ;
3518: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_party_sites_t1 index');
3519: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_party_sites_t1');
3520: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');
3521: FND_Concurrent.af_commit;
3522: WHEN OTHERS THEN
3523: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY SITES Index Synchronization SQLEERM=' ||SQLERRM);
3524: retcode := 2;

Line 3523: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY SITES Index Synchronization SQLEERM=' ||SQLERRM);

3519: AD_CTX_DDL.sync_index(l_index_owner ||'.hz_stage_party_sites_t1');
3520: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_party_sites_t1 index successful');
3521: FND_Concurrent.af_commit;
3522: WHEN OTHERS THEN
3523: FND_FILE.put_line(FND_FILE.log, 'Error during PARTY SITES Index Synchronization SQLEERM=' ||SQLERRM);
3524: retcode := 2;
3525: errbuf := SQLERRM;
3526: END;
3527: END IF;

Line 3556: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');

3552: and rownum<1001 ) a )
3553: where rnum = 1000;
3554: update hz_staged_contacts set concat_col = concat_col
3555: where org_contact_id between l_min_id and tmp;
3556: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');
3557: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_contact_t1');
3558: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');
3559: FND_Concurrent.af_commit;
3560: l_min_id:=tmp+1;

Line 3558: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');

3554: update hz_staged_contacts set concat_col = concat_col
3555: where org_contact_id between l_min_id and tmp;
3556: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');
3557: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_contact_t1');
3558: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');
3559: FND_Concurrent.af_commit;
3560: l_min_id:=tmp+1;
3561: END LOOP;
3562: EXCEPTION

Line 3566: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');

3562: EXCEPTION
3563: WHEN NO_DATA_FOUND THEN
3564: update hz_staged_contacts set concat_col = concat_col
3565: where org_contact_id between l_min_id and l_max_id ;
3566: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');
3567: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_contact_t1');
3568: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');
3569: FND_Concurrent.af_commit;
3570: WHEN OTHERS THEN

Line 3568: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');

3564: update hz_staged_contacts set concat_col = concat_col
3565: where org_contact_id between l_min_id and l_max_id ;
3566: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_contact_t1 index');
3567: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_contact_t1');
3568: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');
3569: FND_Concurrent.af_commit;
3570: WHEN OTHERS THEN
3571: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACTS Index Synchronization SQLEERM=' ||SQLERRM);
3572: retcode := 2;

Line 3571: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACTS Index Synchronization SQLEERM=' ||SQLERRM);

3567: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_contact_t1');
3568: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_contact_t1 index successful');
3569: FND_Concurrent.af_commit;
3570: WHEN OTHERS THEN
3571: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACTS Index Synchronization SQLEERM=' ||SQLERRM);
3572: retcode := 2;
3573: errbuf := SQLERRM;
3574: END;
3575:

Line 3604: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');

3600: and rownum<1001 ) a )
3601: where rnum = 1000;
3602: update hz_staged_contact_points set concat_col = concat_col
3603: where contact_point_id between l_min_id and tmp;
3604: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');
3605: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_cpt_t1');
3606: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');
3607: FND_Concurrent.af_commit;
3608: l_min_id:=tmp+1;

Line 3606: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');

3602: update hz_staged_contact_points set concat_col = concat_col
3603: where contact_point_id between l_min_id and tmp;
3604: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');
3605: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_cpt_t1');
3606: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');
3607: FND_Concurrent.af_commit;
3608: l_min_id:=tmp+1;
3609: END LOOP;
3610: EXCEPTION

Line 3614: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');

3610: EXCEPTION
3611: WHEN NO_DATA_FOUND THEN
3612: update hz_staged_contact_points set concat_col = concat_col
3613: where contact_point_id between l_min_id and l_max_id ;
3614: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');
3615: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_cpt_t1');
3616: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');
3617: FND_Concurrent.af_commit;
3618: WHEN OTHERS THEN

Line 3616: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');

3612: update hz_staged_contact_points set concat_col = concat_col
3613: where contact_point_id between l_min_id and l_max_id ;
3614: FND_FILE.put_line(FND_FILE.log, 'Attempting to SYNC the hz_stage_cpt_t1 index');
3615: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_cpt_t1');
3616: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');
3617: FND_Concurrent.af_commit;
3618: WHEN OTHERS THEN
3619: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACT POINTS Index Synchronization SQLEERM=' ||SQLERRM);
3620: retcode := 2;

Line 3619: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACT POINTS Index Synchronization SQLEERM=' ||SQLERRM);

3615: AD_CTX_DDL.sync_index(l_index_owner||'.hz_stage_cpt_t1');
3616: FND_FILE.put_line(FND_FILE.log, 'SYNC of the hz_stage_cpt_t1 index successful');
3617: FND_Concurrent.af_commit;
3618: WHEN OTHERS THEN
3619: FND_FILE.put_line(FND_FILE.log, 'Error during CONTACT POINTS Index Synchronization SQLEERM=' ||SQLERRM);
3620: retcode := 2;
3621: errbuf := SQLERRM;
3622: END;
3623:

Line 4084: FND_FILE.close;

4080: log('Error ' || SQLERRM);
4081: retcode := 2;
4082: errbuf := errbuf || logerror;
4083: outandlog('Aborting concurrent program execution');
4084: FND_FILE.close;
4085: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
4086: outandlog('Error: ' || FND_MESSAGE.GET);
4087: log('Error ' || SQLERRM);
4088: retcode := 2;

Line 4091: FND_FILE.close;

4087: log('Error ' || SQLERRM);
4088: retcode := 2;
4089: errbuf := errbuf || logerror;
4090: outandlog('Aborting concurrent program execution');
4091: FND_FILE.close;
4092: WHEN OTHERS THEN
4093: outandlog('Error: ' || FND_MESSAGE.GET);
4094: log('SQL Error ' || SQLERRM);
4095: retcode := 2;

Line 4098: FND_FILE.close;

4094: log('SQL Error ' || SQLERRM);
4095: retcode := 2;
4096: errbuf := errbuf || logerror || SQLERRM;
4097: outandlog('Aborting concurrent program execution');
4098: FND_FILE.close;
4099: END;
4100:
4101: PROCEDURE generate_map_proc (
4102: p_entity IN VARCHAR2,

Line 4755: l(' FND_FILE.NEW_LINE(FND_FILE.LOG, 1); ');

4751: l(' message IN VARCHAR2, ');
4752: l(' newline IN BOOLEAN DEFAULT TRUE) IS ');
4753: l(' BEGIN ');
4754: l(' IF message = ''NEWLINE'' THEN ');
4755: l(' FND_FILE.NEW_LINE(FND_FILE.LOG, 1); ');
4756: l(' ELSIF (newline) THEN ');
4757: l(' FND_FILE.put_line(fnd_file.log,message); ');
4758: l(' ELSE ');
4759: l(' FND_FILE.put(fnd_file.log,message); ');

Line 4757: l(' FND_FILE.put_line(fnd_file.log,message); ');

4753: l(' BEGIN ');
4754: l(' IF message = ''NEWLINE'' THEN ');
4755: l(' FND_FILE.NEW_LINE(FND_FILE.LOG, 1); ');
4756: l(' ELSIF (newline) THEN ');
4757: l(' FND_FILE.put_line(fnd_file.log,message); ');
4758: l(' ELSE ');
4759: l(' FND_FILE.put(fnd_file.log,message); ');
4760: l(' END IF; ');
4761: l(' END log; ');

Line 4759: l(' FND_FILE.put(fnd_file.log,message); ');

4755: l(' FND_FILE.NEW_LINE(FND_FILE.LOG, 1); ');
4756: l(' ELSIF (newline) THEN ');
4757: l(' FND_FILE.put_line(fnd_file.log,message); ');
4758: l(' ELSE ');
4759: l(' FND_FILE.put(fnd_file.log,message); ');
4760: l(' END IF; ');
4761: l(' END log; ');
4762: l('');
4763:

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

5810: l(' LOOP');
5811: l(' call_status := FND_CONCURRENT.GET_REQUEST_STATUS(');
5812: l(' req_id, null,null,rphase,rstatus,dphase,dstatus,message);');
5813: l(' IF dstatus = ''TERMINATING'' THEN');
5814: l(' FND_FILE.put_line(FND_FILE.log,''Aborted by User'');');
5815: l(' RAISE USER_TERMINATE;');
5816: l(' END IF;');
5817: l(' FETCH p_party_cur BULK COLLECT INTO');
5818: l(' H_P_PARTY_ID');

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

11671: message IN VARCHAR2,
11672: newline IN BOOLEAN DEFAULT TRUE) IS
11673: BEGIN
11674: IF message = 'NEWLINE' THEN
11675: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
11676: ELSIF (newline) THEN
11677: FND_FILE.put_line(fnd_file.output,message);
11678: ELSE
11679: FND_FILE.put(fnd_file.output,message);

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

11673: BEGIN
11674: IF message = 'NEWLINE' THEN
11675: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
11676: ELSIF (newline) THEN
11677: FND_FILE.put_line(fnd_file.output,message);
11678: ELSE
11679: FND_FILE.put(fnd_file.output,message);
11680: END IF;
11681: END out;

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

11675: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
11676: ELSIF (newline) THEN
11677: FND_FILE.put_line(fnd_file.output,message);
11678: ELSE
11679: FND_FILE.put(fnd_file.output,message);
11680: END IF;
11681: END out;
11682:
11683: /**

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

11688: newline IN BOOLEAN DEFAULT TRUE) IS
11689: BEGIN
11690:
11691: IF message = 'NEWLINE' THEN
11692: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
11693: ELSIF (newline) THEN
11694: FND_FILE.put_line(fnd_file.log,message);
11695: ELSE
11696: FND_FILE.put(fnd_file.log,message);

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

11690:
11691: IF message = 'NEWLINE' THEN
11692: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
11693: ELSIF (newline) THEN
11694: FND_FILE.put_line(fnd_file.log,message);
11695: ELSE
11696: FND_FILE.put(fnd_file.log,message);
11697: END IF;
11698: END log;

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

11692: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
11693: ELSIF (newline) THEN
11694: FND_FILE.put_line(fnd_file.log,message);
11695: ELSE
11696: FND_FILE.put(fnd_file.log,message);
11697: END IF;
11698: END log;
11699:
11700: /**