DBA Data[Home] [Help]

APPS.OKC_XPRT_IMPORT_PVT dependencies on FND_CONC_GLOBAL

Line 130: req_data := fnd_conc_global.request_data;

126:
127: BEGIN
128:
129: -- Check if the concurrent program is being restarted due to completion of child request
130: req_data := fnd_conc_global.request_data;
131:
132: IF req_data IS NULL THEN
133: -- Calling the parent concurrent prorgam for the first time
134: -- Execute Steps 1 to 7

Line 640: fnd_conc_global.set_req_globals

636:
637: RAISE FND_API.G_EXC_ERROR;
638: ELSE
639: -- child submission successful, pause the parent program
640: fnd_conc_global.set_req_globals
641: ( conc_status => 'PAUSED',
642: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
643: );
644: END IF; -- child submitted successfully

Line 1004: req_data := fnd_conc_global.request_data;

1000:
1001: BEGIN
1002:
1003: -- Check if the concurrent program is being restarted due to completion of child request
1004: req_data := fnd_conc_global.request_data;
1005:
1006: IF req_data IS NULL THEN
1007: -- Calling the parent concurrent prorgam for the first time
1008: -- Execute Steps 1 to 4

Line 1301: fnd_conc_global.set_req_globals

1297: -- Added for Bug 4757731
1298: RAISE FND_API.G_EXC_ERROR;
1299: ELSE
1300: -- child submission successful, pause the parent program
1301: fnd_conc_global.set_req_globals
1302: ( conc_status => 'PAUSED',
1303: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
1304: );
1305: END IF; -- child submitted successfully

Line 1906: req_data := fnd_conc_global.request_data;

1902:
1903: BEGIN
1904:
1905: -- Check if the concurrent program is being restarted due to completion of child request
1906: req_data := fnd_conc_global.request_data;
1907:
1908: IF req_data IS NULL THEN
1909: -- Calling the parent concurrent prorgam for the first time
1910: -- Execute Steps 1 to 3

Line 2142: fnd_conc_global.set_req_globals

2138: fnd_file.put_line(FND_FILE.LOG,'Could NOT submit CZ Concurrent Program');
2139: RAISE FND_API.G_EXC_ERROR;
2140: ELSE
2141: -- child submission successful, pause the parent program
2142: fnd_conc_global.set_req_globals
2143: ( conc_status => 'PAUSED',
2144: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
2145: );
2146: END IF; -- child submitted successfully