DBA Data[Home] [Help]

APPS.OKS_BILLING_PUB dependencies on FND_CONC_GLOBAL

Line 6188: If(FND_CONC_GLOBAL.request_data is null) THEN

6184: p_date := nvl(fnd_date.canonical_to_date(p_default_date), trunc(sysdate));
6185:
6186: --Added this If condition so that the table does not get
6187: --truncated during the restart of the parent
6188: If(FND_CONC_GLOBAL.request_data is null) THEN
6189:
6190: If l_write_log then
6191: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Truncating oks_process_billing');
6192: End If;

Line 6212: IF (FND_CONC_GLOBAL.request_data is null) THEN -- not a restart of parent

6208: run of billing program , this api may not get executed if placed at the
6209: end of api. This is because there is return statement in parallel worker
6210: code. This is fix for bug # 2963174
6211: */
6212: IF (FND_CONC_GLOBAL.request_data is null) THEN -- not a restart of parent
6213:
6214: If l_write_log then
6215: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Call to OKS_ARFEEDER_PUB.Get_REC_FEEDER to interface termination records');
6216: End If;

Line 6825: (FND_CONC_GLOBAL.request_data is null) AND -- not a restart of parent

6821: End If;
6822:
6823:
6824: IF (p_contract_hdr_id is null) AND -- not a specific contract
6825: (FND_CONC_GLOBAL.request_data is null) AND -- not a restart of parent
6826: (nvl(FND_PROFILE.VALUE('OKS_PARALLEL_WORKER'),'NO') = 'YES') THEN
6827:
6828: -- l_line_no represent total records to be processed here
6829: If l_write_log then

Line 6878: FND_CONC_GLOBAL.set_req_globals

6874: l_max_boundary := l_max_boundary + l_slot_size;
6875: END LOOP;
6876: -- after submitting sub-requests, set the parent status to PAUSED
6877: -- and set the request_data to a non-null value to detect restart
6878: FND_CONC_GLOBAL.set_req_globals
6879: (conc_status => 'PAUSED',
6880: request_data => to_char(l_subrequests));
6881: errbuf := to_char(l_subrequests) || ' sub-requests submitted';
6882: retcode := 0;

Line 6886: ELSIF ((FND_CONC_GLOBAL.request_data is not null ) AND

6882: retcode := 0;
6883: return; -- parent exits and waits for children to finish before restart
6884: END IF; -- l_agg_rec.total
6885:
6886: ELSIF ((FND_CONC_GLOBAL.request_data is not null ) AND
6887: (nvl(FND_PROFILE.VALUE('OKS_PARALLEL_WORKER'),'NO') = 'YES')) THEN
6888: -- restart detected (sub-requests finished)...cleanup and exit.
6889: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Commiting here');
6890: COMMIT;