750: end;
751:
752:
753: if (P_PRINT_TOGETHER is NULL) then
754: FND_PROFILE.GET ('CONC_PRINT_TOGETHER', profile_buffer);
755: if (substr (profile_buffer, 1, 1) = 'Y') then
756: P_PRINT_TOGETHER := 'Y';
757: else
758: P_PRINT_TOGETHER := 'N';
831: if (rsp_save_output in ('Y', 'N')) then
832: saveout := rsp_save_output;
833: else
834: if ( not saveout in ('Y', 'N')) then
835: FND_PROFILE.GET ('CONC_SAVE_OUTPUT', profile_buffer);
836: if (not profile_buffer in ('Y', 'N')) then
837: saveout := 'Y';
838: else
839: saveout := profile_buffer;
845:
846: -- Printer logic
847:
848: -- Get default for # of copies
849: FND_PROFILE.GET ('CONC_COPIES', profile_buffer);
850: if (profile_buffer is not null) then
851: default_copies := To_Number (profile_buffer);
852: if (default_copies < 0) then
853: default_copies := 0;
857: end if;
858:
859: -- Is printer specified in FCP?
860: if (fcp_printer is null) then
861: FND_PROFILE.GET ('PRINTER', default_printer);
862: else
863: default_printer := fcp_printer;
864: end if;
865:
1295:
1296: par_request_id := FND_GLOBAL.conc_request_id;
1297:
1298: profile_buffer := NULL;
1299: FND_PROFILE.GET('CONC_MULTI_TZ', profile_buffer);
1300:
1301: if (profile_buffer in ('Y', 'y')) then
1302: tz_offset := 1;
1303: else
1305: end if;
1306:
1307: profile_buffer := NULL;
1308: if (start_time is null) then
1309: FND_PROFILE.GET ('CONC_REQ_START', profile_buffer);
1310: else
1311: profile_buffer := start_time;
1312: end if;
1313: