DBA Data[Home] [Help]

APPS.BIS_CONCURRENT_MANAGER_PVT dependencies on FND_REQUEST

Line 479: FND_REQUEST.SUBMIT_REQUEST

475: -- Setting unused columns to null
476: --
477: l_request_number :=
478:
479: FND_REQUEST.SUBMIT_REQUEST
480: ( p_concurrent_Request_rec.application_short_name
481: , p_concurrent_Request_rec.program
482: , p_concurrent_Request_rec.description
483: , to_char(to_date(p_concurrent_Request_rec.start_time , l_time_format),l_req_time_format )

Line 530: FND_REQUEST.SUBMIT_REQUEST

526: -- Setting unused columns to null
527: --
528: l_request_number :=
529:
530: FND_REQUEST.SUBMIT_REQUEST
531: ( p_concurrent_Request_rec.application_short_name
532: , p_concurrent_Request_rec.program
533: , p_concurrent_Request_rec.description
534: , p_concurrent_Request_rec.start_time

Line 599: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;

595: EXCEPTION
596: when FND_API.G_EXC_ERROR then
597: x_errbuf := 'Request: '||to_char(l_request_number)
598: ||', Error1: '||SQLERRM
599: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;
600: x_retcode := SQLCODE;
601:
602: RETURN;
603: when FND_API.G_EXC_UNEXPECTED_ERROR then

Line 606: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;

602: RETURN;
603: when FND_API.G_EXC_UNEXPECTED_ERROR then
604: x_errbuf := 'Request: '||to_char(l_request_number)
605: ||', Error2: '||SQLERRM
606: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;
607: x_retcode := SQLCODE;
608: RETURN;
609: when others then
610: x_errbuf := 'Request: '||to_char(l_request_number)

Line 612: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;

608: RETURN;
609: when others then
610: x_errbuf := 'Request: '||to_char(l_request_number)
611: ||', Error3: '||SQLERRM
612: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;
613: x_retcode := SQLCODE;
614: BIS_UTILITIES_PVT.Add_Error_Message
615: ( p_error_msg_id => SQLCODE
616: , p_error_description => SQLERRM

Line 1013: := fnd_request.set_repeat_options

1009: IF p_repeat_units <> 'ONCE' THEN
1010: l_start_time := to_char(l_start_date,l_date_fmt);
1011: l_end_time := to_char(l_End_date,l_date_fmt);
1012: l_result
1013: := fnd_request.set_repeat_options
1014: ( repeat_interval => l_repeat_interval
1015: , repeat_unit => p_repeat_Units
1016: , repeat_end_time => l_End_Time
1017: );