DBA Data[Home] [Help]

APPS.FND_MLS_REQUEST dependencies on FND_FILE

Line 228: fnd_file.put_line(fnd_file.log,

224: /* Initialize the request information to access by the language function
225: */
226: fnd_request_info.initialize;
227:
228: fnd_file.put_line(fnd_file.log,
229: '+---------------------------------------------------------------------------+');
230: fnd_message.set_name('FND', 'CONC-Before lang function');
231: fnd_message.set_token('FUNCTION', funct);
232: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||

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

228: fnd_file.put_line(fnd_file.log,
229: '+---------------------------------------------------------------------------+');
230: fnd_message.set_name('FND', 'CONC-Before lang function');
231: fnd_message.set_token('FUNCTION', funct);
232: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
233: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
234:
235: fcursor := 'begin :r := '||funct||'; end;';
236: begin

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

249:
250: fnd_message.set_name('FND', 'CONC-After lang function');
251: fnd_message.set_token('VALUE', func_outcome );
252:
253: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
254: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
255: fnd_file.put_line(fnd_file.log,
256: '+---------------------------------------------------------------------------+');
257:

Line 255: fnd_file.put_line(fnd_file.log,

251: fnd_message.set_token('VALUE', func_outcome );
252:
253: fnd_file.put_line(fnd_file.log, fnd_message.get || ' : ' ||
254: to_char(sysdate,'DD-MON-YYYY HH24:MI:SS'));
255: fnd_file.put_line(fnd_file.log,
256: '+---------------------------------------------------------------------------+');
257:
258: /* Parse func_outcome to get nls_languages */
259: startloc := 1;

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

264: -- Language function associated with [PROGRAM] determined no data exists
265: -- for the given set of parameters
266:
267: if (func_outcome is null ) then
268: fnd_file.put_line(fnd_file.log, fnd_message.get);
269: fnd_message.set_name('FND', 'CONC-MLS no data');
270: fnd_message.set_token('PROGRAM', UserProgramName);
271: errbuf := substr(fnd_message.get, 1, 240);
272: retcode := 1;

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

498: fnd_message.set_name('FND', 'CONC-About submitted requests');
499: else
500: fnd_message.set_name('FND', 'CONC-About submitted req full');
501: end if;
502: fnd_file.put_line(fnd_file.log, fnd_message.get);
503:
504: /* process all the requests */
505: begin
506: /* using cursor for loop for easy coding. run_req_info will return

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

736: req_info_line := ' ' || RPAD(to_char(req_id),15) || P_LANG(ind).nls_language;
737: else
738: 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;
739: end if;
740: fnd_file.put_line(fnd_file.log, req_info_line);
741: end loop;
742:
743: end loop; /* run_req_info */
744:

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

785: end loop;
786:
787: /* print the header for completed request status */
788: fnd_message.set_name('FND', 'CONC-About completed requests');
789: fnd_file.put_line(fnd_file.log, fnd_message.get);
790:
791: for ind in 1..P_LCOUNT loop
792: begin
793: select decode(status_code, 'C', 'S', 'G', 'W', 'E')

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

817: where lookup_type = 'CP_SET_OUTCOME'
818: and lookup_code = current_outcome;
819:
820: req_info_line := ' '||RPAD(to_char(P_REQ(ind).req_id),15) || outcome_meaning;
821: fnd_file.put_line(fnd_file.log, req_info_line);
822:
823: end loop;
824:
825: if ( request_error ) then