DBA Data[Home] [Help]

APPS.FND_MLS_SUBMIT dependencies on FND_PROFILE

Line 450: FND_PROFILE.GET ('CONC_OPS_REQ_MODE', OPS_REQ_MODE);

446: else
447: FUNC_EXISTS := 'N';
448: end if;
449:
450: FND_PROFILE.GET ('CONC_OPS_REQ_MODE', OPS_REQ_MODE);
451: if (ops_req_mode is null) then
452: OPS_REQ_MODE := 'EXPLICIT';
453: end if;
454:

Line 708: FND_PROFILE.GET ('PRINTER', default_printer);

704:
705: -- Insert Printers
706:
707: if (FCP_PRINTER is null) then
708: FND_PROFILE.GET ('PRINTER', default_printer);
709: else
710: default_printer := FCP_PRINTER;
711: end if;
712:

Line 713: FND_PROFILE.GET ('CONC_COPIES', profile_buffer);

709: else
710: default_printer := FCP_PRINTER;
711: end if;
712:
713: FND_PROFILE.GET ('CONC_COPIES', profile_buffer);
714: if (profile_buffer is not null) then
715: default_copies := To_Number (profile_buffer);
716: if (default_copies < 0) then
717: default_copies := 0;