DBA Data[Home] [Help]

APPS.IGIPREC dependencies on FND_GLOBAL

Line 15: --Use function FND_GLOBAL.CONC_REQUEST_ID

11: gl_sets_of_books gl
12: WHERE ap.set_of_books_id = gl.set_of_books_id;
13: --------------------------------------------------------------------
14: --To fetch the Concurrent Request Id
15: --Use function FND_GLOBAL.CONC_REQUEST_ID
16: --------------------------------------------------------------------
17: --------------------------------------------------------------------
18: --To fetch the Source (Payables)
19: --------------------------------------------------------------------

Line 204: l_request_id := FND_GLOBAL.CONC_REQUEST_ID;

200: --------------------------------------------------------------------
201: --insert into IGI_RECOVERABLE_LINES
202: --------------------------------------------------------------------
203:
204: l_request_id := FND_GLOBAL.CONC_REQUEST_ID;
205:
206: insert into IGI_RECOVERABLE_LINES
207:
208: ( Invoice_id,

Line 447: where request_id =FND_GLOBAL.CONC_REQUEST_ID ;

443: --------------------------------------------------------------------
444: if l_import_request_id = 0 then
445: update IGI_RECOVERABLE_LINES
446: set je_created_flag = 'Y'
447: where request_id =FND_GLOBAL.CONC_REQUEST_ID ;
448: WriteLog( '>> IGI_RECOVERABLE_LINES updated ');
449: end if;
450:
451: end;