DBA Data[Home] [Help]

APPS.CZ_ORAAPPS_INTEGRATE dependencies on FND_CONCURRENT

Line 1149: 'SPOEEXP', -- Application Concurrent Prgm from FND_CONCURRENT_PROGRAMS

1145: BEGIN
1146:
1147: oe_request_id := fnd_request.submit_request(
1148: 'OE', -- APPlication Name from FND_APPLICATION
1149: 'SPOEEXP', -- Application Concurrent Prgm from FND_CONCURRENT_PROGRAMS
1150: 'Export Orders from SellingPoint to OE', -- Description from FND_CONCURRENT_PROGRAMS
1151: NULL, -- Start Date
1152: FALSE -- Is called from another concurrent request?
1153: );

Line 1150: 'Export Orders from SellingPoint to OE', -- Description from FND_CONCURRENT_PROGRAMS

1146:
1147: oe_request_id := fnd_request.submit_request(
1148: 'OE', -- APPlication Name from FND_APPLICATION
1149: 'SPOEEXP', -- Application Concurrent Prgm from FND_CONCURRENT_PROGRAMS
1150: 'Export Orders from SellingPoint to OE', -- Description from FND_CONCURRENT_PROGRAMS
1151: NULL, -- Start Date
1152: FALSE -- Is called from another concurrent request?
1153: );
1154: COMMIT;

Line 1157: oe_request_result :=fnd_concurrent.wait_for_request(oe_request_id,

1153: );
1154: COMMIT;
1155: LOG_REPORT('Request ID : ' || to_char(oe_request_id));
1156: IF oe_request_id <> 0 THEN
1157: oe_request_result :=fnd_concurrent.wait_for_request(oe_request_id,
1158: p_interval,
1159: p_max_wait,
1160: oe_phase,
1161: oe_status,