DBA Data[Home] [Help]

APPS.PAY_SLA_UPDATE_PKG dependencies on FND_GLOBAL

Line 97: gv_process_name||fnd_Global.Conc_Request_Id,

93: a.Ledger_Id,
94: a.Period_Name,
95: gv_process_name,
96: NULL,
97: gv_process_name||fnd_Global.Conc_Request_Id,
98: sysdate );
99: ELSIF lv_temp = 1 THEN
100: INSERT INTO Pay_Patch_Status
101: (Id,

Line 114: gv_process_name||fnd_Global.Conc_Request_Id,

110: a.Ledger_Id,
111: a.Period_Name,
112: gv_process_name,
113: 'U',
114: gv_process_name||fnd_Global.Conc_Request_Id,
115: 'Period already Upgraded',
116: sysdate);
117: END IF;
118: END LOOP;

Line 222: if (nvl(fnd_global.conc_request_id, -1) < 0) then

218: end if;
219:
220: if (submit_req = TRUE) then
221:
222: if (nvl(fnd_global.conc_request_id, -1) < 0) then
223: raise_application_error(-20001, 'SUBMIT_SUBREQUESTS() must be called from a concurrent request');
224: end if;
225:
226: -- Standard call to check for call compatibility

Line 299: X_Argument7 => fnd_global.conc_request_id,

295: X_Num_Workers=>lv_Num_Workers,
296: X_Argument4 => P_LEDGER_ID,
297: X_Argument5 => P_START_PERIOD,
298: X_Argument6 => nvl(P_END_PERIOD,'null'),
299: X_Argument7 => fnd_global.conc_request_id,
300: X_Argument8 => P_DEBUG_FLAG,
301: X_Argument9 => null,
302: X_Argument10 => null);
303:

Line 320: l_sub_reqtab := fnd_concurrent.get_sub_requests(fnd_global.conc_request_id);

316: end;
317: end if;
318: else
319:
320: l_sub_reqtab := fnd_concurrent.get_sub_requests(fnd_global.conc_request_id);
321:
322: x_retcode := FND_API.G_RET_STS_SUCCESS;
323:
324: for i IN 1..l_sub_reqtab.COUNT()

Line 347: For b in csr_pay_patch_status(fnd_global.conc_request_id)

343: fnd_file.put_line(FND_FILE.LOG,' No Period Name Status Message ');
344: fnd_file.put_line(FND_FILE.LOG,'--------------------------------------------------------------------------------------');
345:
346:
347: For b in csr_pay_patch_status(fnd_global.conc_request_id)
348: loop
349: fnd_file.put_line(FND_FILE.LOG,' '||substr(rpad(to_char(b.nu),3,' '),1,4)||' '||b.period_name||' '||b.status||' '||b.Description);
350: lv_no_periods := FALSE;
351: end loop;