DBA Data[Home] [Help]

APPS.FND_MLS_REQUEST dependencies on FND_FILE

Line 249: fnd_file.put_line(fnd_file.log,

245: /* Initialize the request information to access by the language function
246: */
247: fnd_request_info.initialize;
248:
249: fnd_file.put_line(fnd_file.log,
250: '+---------------------------------------------------------------------------+');
251: fnd_message.set_name('FND', 'CONC-Before lang function');
252: fnd_message.set_token('FUNCTION', funct);
253: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||

Line 253: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||

249: fnd_file.put_line(fnd_file.log,
250: '+---------------------------------------------------------------------------+');
251: fnd_message.set_name('FND', 'CONC-Before lang function');
252: fnd_message.set_token('FUNCTION', funct);
253: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
254: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
255:
256: fcursor := 'begin :r := '||funct||'; end;';
257: begin

Line 274: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||

270:
271: fnd_message.set_name('FND', 'CONC-After lang function');
272: fnd_message.set_token('VALUE', func_outcome );
273:
274: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
275: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
276: fnd_file.put_line(fnd_file.log,
277: '+---------------------------------------------------------------------------+');
278:

Line 276: fnd_file.put_line(fnd_file.log,

272: fnd_message.set_token('VALUE', func_outcome );
273:
274: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
275: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
276: fnd_file.put_line(fnd_file.log,
277: '+---------------------------------------------------------------------------+');
278:
279: /* Parse func_outcome to get nls_languages */
280: startloc := 1;

Line 289: fnd_file.put_line(fnd_file.log, fnd_message.get);

285: -- Language function associated with [PROGRAM] determined no data exists
286: -- for the given set of parameters
287:
288: if (func_outcome is null ) then
289: fnd_file.put_line(fnd_file.log, fnd_message.get);
290: fnd_message.set_name('FND', 'CONC-MLS no data');
291: fnd_message.set_token('PROGRAM', UserProgramName);
292: errbuf := substr(fnd_message.get, 1, 240);
293: retcode := 1;

Line 523: fnd_file.put_line(fnd_file.log, fnd_message.get);

519: fnd_message.set_name('FND', 'CONC-About submitted requests');
520: else
521: fnd_message.set_name('FND', 'CONC-About submitted req full');
522: end if;
523: fnd_file.put_line(fnd_file.log, fnd_message.get);
524:
525: /* process all the requests */
526: begin
527: /* using cursor for loop for easy coding. run_req_info will return

Line 821: fnd_file.put_line(fnd_file.log, req_info_line);

817: req_info_line := ' ' || RPAD(to_char(req_id),15) || P_LANG(ind).nls_language;
818: else
819: req_info_line := ' ' || RPAD(to_char(req_id),15) || RPAD(P_LANG(ind).nls_language,31)||RPAD(P_LANG(ind).nls_territory,31)||P_LANG(ind).nc_code;
820: end if;
821: fnd_file.put_line(fnd_file.log, req_info_line);
822: end loop;
823:
824: end loop; /* run_req_info */
825:

Line 870: fnd_file.put_line(fnd_file.log, fnd_message.get);

866: end loop;
867:
868: /* print the header for completed request status */
869: fnd_message.set_name('FND', 'CONC-About completed requests');
870: fnd_file.put_line(fnd_file.log, fnd_message.get);
871:
872: for ind in 1..P_LCOUNT loop
873: begin
874: select decode(status_code, 'C', 'S', 'G', 'W', 'E')

Line 902: fnd_file.put_line(fnd_file.log, req_info_line);

898: where lookup_type = 'CP_SET_OUTCOME'
899: and lookup_code = current_outcome;
900:
901: req_info_line := ' '||RPAD(to_char(P_REQ(ind).req_id),15) || outcome_meaning;
902: fnd_file.put_line(fnd_file.log, req_info_line);
903:
904: end loop;
905:
906: if ( request_error ) then