DBA Data[Home] [Help]

APPS.FND_MLS_REQUEST dependencies on FND_REQUEST

Line 226: fnd_request_info.initialize;

222:
223:
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');

Line 434: P_LANG(i).nls_territory := fnd_request_info.get_territory;

430: return;
431: end;
432:
433: if ( chkstrloc = 0 ) then
434: P_LANG(i).nls_territory := fnd_request_info.get_territory;
435: else
436:
437: if ( P_LANG(i).terr_code is NULL ) then
438: P_LANG(i).nls_territory := fnd_request_info.get_territory;

Line 438: P_LANG(i).nls_territory := fnd_request_info.get_territory;

434: P_LANG(i).nls_territory := fnd_request_info.get_territory;
435: else
436:
437: if ( P_LANG(i).terr_code is NULL ) then
438: P_LANG(i).nls_territory := fnd_request_info.get_territory;
439: else
440: begin
441: select nls_territory
442: into P_LANG(i).nls_territory

Line 515: if ( not fnd_request.set_options(

511:
512: /* set the language and territory and numeric characters for this request
513: all individual requests are protected against updates */
514: /* NLS Project - added numeric character */
515: if ( not fnd_request.set_options(
516: implicit => 'NO',
517: protected => 'YES',
518: language => P_LANG(ind).nls_language,
519: territory => P_LANG(ind).nls_territory,

Line 534: if (not fnd_request.set_print_options(

530:
531: fetch mls_req_printers into printer, copies;
532:
533: if (mls_req_printers%found) then
534: if (not fnd_request.set_print_options(
535: printer => printer,
536: style => req.print_style,
537: copies => copies,
538: save_output => (req.save_output_flag = 'Y'),

Line 550: if (not fnd_request.add_printer(

546: end if;
547:
548: fetch mls_req_printers into printer, copies;
549: while (mls_req_printers%found) loop
550: if (not fnd_request.add_printer(
551: printer => printer,
552: copies => copies)) then
553: errbuf := substr(fnd_message.get, 1, 240);
554: retcode := 2;

Line 562: if (not fnd_request.set_print_options(

558: end if;
559: fetch mls_req_printers into printer, copies;
560: end loop;
561: else
562: if (not fnd_request.set_print_options(
563: printer => null,
564: style => req.print_style,
565: copies => 0,
566: save_output => (req.save_output_flag = 'Y'),

Line 582: if (not fnd_request.add_notification(

578: /* set notification pp actions for this request */
579: for notify_rec in mls_req_notifications
580: (parent_id, req.request_set_program_id,
581: P_LANG(ind).nls_language) loop
582: if (not fnd_request.add_notification(
583: user=>notify_rec.notify)) then
584: errbuf := substr(fnd_message.get, 1, 240);
585: retcode := 2;
586: rollback;

Line 629: if (not fnd_request.add_layout(

625:
626: t_language := lower(t_language);
627:
628: while (mls_function_req_layouts%found) loop
629: if (not fnd_request.add_layout(
630: t_app_name,
631: t_code,
632: t_language,
633: t_territory,

Line 657: if (not fnd_request.add_layout(

653: t_territory,
654: t_format;
655:
656: while (mls_req_layouts%found) loop
657: if (not fnd_request.add_layout(
658: t_app_name,
659: t_code,
660: t_language,
661: t_territory,

Line 678: fnd_request.internal(critical => null, type=>'C');

674: end loop;
675: close mls_req_layouts;
676: end if;
677:
678: fnd_request.internal(critical => null, type=>'C');
679:
680: fnd_request.set_org_id(req.org_id);
681:
682: req_id := fnd_request.submit_request(

Line 680: fnd_request.set_org_id(req.org_id);

676: end if;
677:
678: fnd_request.internal(critical => null, type=>'C');
679:
680: fnd_request.set_org_id(req.org_id);
681:
682: req_id := fnd_request.submit_request(
683: req.application_short_name, req.concurrent_program_name,
684: Null, NULL, TRUE,

Line 682: req_id := fnd_request.submit_request(

678: fnd_request.internal(critical => null, type=>'C');
679:
680: fnd_request.set_org_id(req.org_id);
681:
682: req_id := fnd_request.submit_request(
683: req.application_short_name, req.concurrent_program_name,
684: Null, NULL, TRUE,
685: req.argument1, req.argument2, req.argument3,
686: req.argument4, req.argument5, req.argument6,