DBA Data[Home] [Help]

APPS.CS_SR_SYNC_INDEX_PKG dependencies on FND_FILE

Line 119: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);

115: -- 'DR_Mode: Added Support for 'DR' mode
116: elsif( bmode not in ('DR','S','OFAST', 'OFULL')) then
117: errbuf := 'Invalid mode specified';
118: begin
119: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);
120: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
121: exception
122: when others then
123: null;

Line 120: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

116: elsif( bmode not in ('DR','S','OFAST', 'OFULL')) then
117: errbuf := 'Invalid mode specified';
118: begin
119: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);
120: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
121: exception
122: when others then
123: null;
124: end;

Line 171: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);

167: if(bmode is null or bmode not in ('DR', 'S', 'OFAST', 'OFULL')) then
168: errbuf := 'Invalid mode specified';
169:
170: begin
171: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);
172: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
173: exception
174: when others then
175: null;

Line 172: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

168: errbuf := 'Invalid mode specified';
169:
170: begin
171: --3..FND_FILE.PUT_LINE(3..FND_FILE.LOG, errbuf);
172: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
173: exception
174: when others then
175: null;
176: end;

Line 201: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

197:
198: errbuf := 'Index SUMMARY_CTX_INDEX is not found. Please create the domain index ' ||
199: 'before executing this concurrent program.';
200: begin
201: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
202: exception
203: when others then
204: null;
205: end;

Line 241: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

237: errbuf := 'Unexpected error while attempting to sync domain index SUMMARY_CTX_INDEX.'
238: || ' Error : '|| SQLERRM;
239:
240: begin
241: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
242: exception
243: when others then
244: null;
245: end;

Line 317: FND_FILE.PUT_LINE(FND_FILE.LOG,

313: ELSIF bmode = 'DR' THEN
314: -- logic to drop or create is taken in the individual api.
315: NULL;
316: ELSE
317: FND_FILE.PUT_LINE(FND_FILE.LOG,
318: fnd_message.get_string('CS', 'CS_KB_SYN_INDEX_INV_MODE'));
319: RAISE invalid_mode_error; -- let the exception populate back to the caller.
320: END IF;
321:

Line 604: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

600: errbuf := fnd_message.get_string('CS',
601: 'CS_KB_SYN_INDEX_INV_MODE');
602: WHEN drop_index_error THEN
603: BEGIN
604: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
605: EXCEPTION
606: WHEN others THEN
607: NULL;
608: END;

Line 611: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

607: NULL;
608: END;
609: WHEN create_index_error THEN
610: BEGIN
611: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
612: EXCEPTION
613: WHEN others THEN
614: NULL;
615: END;

Line 620: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);

616: WHEN others THEN
617: errbuf := 'Sync_Text_Index: '||
618: fnd_message.GET_STRING('CS','CS_KB_C_UNEXP_ERR')||' '|| SQLERRM;
619: BEGIN
620: FND_FILE.PUT_LINE(FND_FILE.LOG, errbuf);
621: EXCEPTION
622: WHEN others THEN
623: NULL;
624: END;