DBA Data[Home] [Help]

APPS.FND_MLS_REQUEST dependencies on FND_REQUEST

Line 247: fnd_request_info.initialize;

243:
244:
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');

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

451: return;
452: end;
453:
454: if ( chkstrloc = 0 ) then
455: P_LANG(i).nls_territory := fnd_request_info.get_territory;
456: else
457:
458: if ( P_LANG(i).terr_code is NULL ) then
459: P_LANG(i).nls_territory := fnd_request_info.get_territory;

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

455: P_LANG(i).nls_territory := fnd_request_info.get_territory;
456: else
457:
458: if ( P_LANG(i).terr_code is NULL ) then
459: P_LANG(i).nls_territory := fnd_request_info.get_territory;
460: else
461: begin
462: select nls_territory
463: into P_LANG(i).nls_territory

Line 544: if ( not fnd_request.set_options(

540: else
541: nls_char_spaces := P_LANG(ind).numeric_characters;
542: end if;
543:
544: if ( not fnd_request.set_options(
545: implicit => 'NO',
546: protected => 'YES',
547: language => P_LANG(ind).nls_language,
548: territory => P_LANG(ind).nls_territory,

Line 563: if (not fnd_request.set_print_options(

559:
560: fetch mls_req_printers into printer, copies;
561:
562: if (mls_req_printers%found) then
563: if (not fnd_request.set_print_options(
564: printer => printer,
565: style => req.print_style,
566: copies => copies,
567: save_output => (req.save_output_flag = 'Y'),

Line 579: if (not fnd_request.add_printer(

575: end if;
576:
577: fetch mls_req_printers into printer, copies;
578: while (mls_req_printers%found) loop
579: if (not fnd_request.add_printer(
580: printer => printer,
581: copies => copies)) then
582: errbuf := substr(fnd_message.get, 1, 240);
583: retcode := 2;

Line 591: if (not fnd_request.set_print_options(

587: end if;
588: fetch mls_req_printers into printer, copies;
589: end loop;
590: else
591: if (not fnd_request.set_print_options(
592: printer => null,
593: style => req.print_style,
594: copies => 0,
595: save_output => (req.save_output_flag = 'Y'),

Line 611: if (not fnd_request.add_notification(

607: /* set notification pp actions for this request */
608: for notify_rec in mls_req_notifications
609: (parent_id, req.request_set_program_id,
610: P_LANG(ind).nls_language) loop
611: if (not fnd_request.add_notification(
612: user=>notify_rec.notify)) then
613: errbuf := substr(fnd_message.get, 1, 240);
614: retcode := 2;
615: rollback;

Line 658: if (not fnd_request.add_layout(

654:
655: t_language := lower(t_language);
656:
657: while (mls_function_req_layouts%found) loop
658: if (not fnd_request.add_layout(
659: t_app_name,
660: t_code,
661: t_language,
662: t_territory,

Line 686: if (not fnd_request.add_layout(

682: t_territory,
683: t_format;
684:
685: while (mls_req_layouts%found) loop
686: if (not fnd_request.add_layout(
687: t_app_name,
688: t_code,
689: t_language,
690: t_territory,

Line 712: if (not fnd_request.add_delivery_option(

708: /* set delivery pp actions for this request */
709: for delivery_rec in mls_req_delivery
710: (parent_id, req.request_set_program_id,
711: P_LANG(ind).nls_language) loop
712: if (not fnd_request.add_delivery_option(
713: delivery_rec.argument1,
714: delivery_rec.argument2,
715: delivery_rec.argument3,
716: delivery_rec.argument4,

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

728: end if;
729: end loop;
730:
731:
732: fnd_request.internal(critical => null, type=>'C');
733:
734: fnd_request.set_org_id(req.org_id);
735:
736:

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

730:
731:
732: fnd_request.internal(critical => null, type=>'C');
733:
734: fnd_request.set_org_id(req.org_id);
735:
736:
737:
738: -- Prepend the ISO language and territory to the request description

Line 763: req_id := fnd_request.submit_request(

759: l_description := substr(iso_lang || '-' || iso_terr || ': ' || req.description, 1, 240);
760: end if;
761:
762:
763: req_id := fnd_request.submit_request(
764: req.application_short_name, req.concurrent_program_name,
765: l_description, NULL, TRUE,
766: req.argument1, req.argument2, req.argument3,
767: req.argument4, req.argument5, req.argument6,