DBA Data[Home] [Help]

APPS.OKC_XPRT_IMPORT_PVT dependencies on FND_CONC_GLOBAL

Line 543: req_data := fnd_conc_global.request_data;

539:
540: IF Nvl(l_okc_rules_engine,'N') = 'N' THEN
541:
542: -- Check if the concurrent program is being restarted due to completion of child request
543: req_data := fnd_conc_global.request_data;
544:
545: IF req_data IS NULL THEN
546: -- Calling the parent concurrent prorgam for the first time
547: -- Execute Steps 1 to 7

Line 1053: fnd_conc_global.set_req_globals

1049:
1050: RAISE FND_API.G_EXC_ERROR;
1051: ELSE
1052: -- child submission successful, pause the parent program
1053: fnd_conc_global.set_req_globals
1054: ( conc_status => 'PAUSED',
1055: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
1056: );
1057: END IF; -- child submitted successfully

Line 1622: req_data := fnd_conc_global.request_data;

1618:
1619: IF Nvl(l_okc_rules_engine,'N') = 'N' THEN
1620:
1621: -- Check if the concurrent program is being restarted due to completion of child request
1622: req_data := fnd_conc_global.request_data;
1623:
1624: IF req_data IS NULL THEN
1625: -- Calling the parent concurrent prorgam for the first time
1626: -- Execute Steps 1 to 4

Line 1919: fnd_conc_global.set_req_globals

1915: -- Added for Bug 4757731
1916: RAISE FND_API.G_EXC_ERROR;
1917: ELSE
1918: -- child submission successful, pause the parent program
1919: fnd_conc_global.set_req_globals
1920: ( conc_status => 'PAUSED',
1921: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
1922: );
1923: END IF; -- child submitted successfully

Line 2642: req_data := fnd_conc_global.request_data;

2638:
2639: IF Nvl(l_okc_rules_engine,'N') = 'N' THEN
2640:
2641: -- Check if the concurrent program is being restarted due to completion of child request
2642: req_data := fnd_conc_global.request_data;
2643:
2644: IF req_data IS NULL THEN
2645: -- Calling the parent concurrent prorgam for the first time
2646: -- Execute Steps 1 to 3

Line 2878: fnd_conc_global.set_req_globals

2874: fnd_file.put_line(FND_FILE.LOG,'Could NOT submit CZ Concurrent Program');
2875: RAISE FND_API.G_EXC_ERROR;
2876: ELSE
2877: -- child submission successful, pause the parent program
2878: fnd_conc_global.set_req_globals
2879: ( conc_status => 'PAUSED',
2880: request_data => to_char(G_REQUEST_ID)||':'||to_char(G_RUN_ID)
2881: );
2882: END IF; -- child submitted successfully