DBA Data[Home] [Help]

APPS.OKS_BILLING_PUB dependencies on FND_CONC_GLOBAL

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

3031: p_date := nvl(fnd_date.canonical_to_date(p_default_date), trunc(sysdate));
3032:
3033: --Added this If condition so that the table does not get
3034: --truncated during the restart of the parent
3035: If(FND_CONC_GLOBAL.request_data is null) THEN
3036:
3037: If l_write_log then
3038: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Truncating oks_process_billing');
3039: End If;

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

3055: run of billing program , this api may not get executed if placed at the
3056: end of api. This is because there is return statement in parallel worker
3057: code. This is fix for bug # 2963174
3058: */
3059: IF (FND_CONC_GLOBAL.request_data is null) THEN -- not a restart of parent
3060:
3061: If l_write_log then
3062: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Call to OKS_ARFEEDER_PUB.Get_REC_FEEDER to interface termination records');
3063: End If;

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

3321: END IF;
3322:
3323:
3324: IF (p_contract_hdr_id is null) AND -- not a specific contract
3325: (FND_CONC_GLOBAL.request_data is null) AND -- not a restart of parent
3326: (nvl(FND_PROFILE.VALUE('OKS_PARALLEL_WORKER'),'NO') = 'YES') THEN
3327:
3328: -- l_line_no represent total records to be processed here
3329: If l_write_log then

Line 3376: FND_CONC_GLOBAL.set_req_globals

3372: l_max_boundary := l_max_boundary + l_slot_size;
3373: END LOOP;
3374: -- after submitting sub-requests, set the parent status to PAUSED
3375: -- and set the request_data to a non-null value to detect restart
3376: FND_CONC_GLOBAL.set_req_globals
3377: (conc_status => 'PAUSED',
3378: request_data => to_char(l_subrequests));
3379: errbuf := to_char(l_subrequests) || ' sub-requests submitted';
3380: retcode := 0;

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

3380: retcode := 0;
3381: return; -- parent exits and waits for children to finish before restart
3382: END IF; -- l_agg_rec.total
3383:
3384: ELSIF ((FND_CONC_GLOBAL.request_data is not null ) AND
3385: (nvl(FND_PROFILE.VALUE('OKS_PARALLEL_WORKER'),'NO') = 'YES')) THEN
3386: -- restart detected (sub-requests finished)...cleanup and exit.
3387: FND_FILE.PUT_LINE(FND_FILE.LOG, 'OKS_BILLING_PUB.Billing_Main => Commiting here');
3388: COMMIT;