DBA Data[Home] [Help]

APPS.PA_INTERFACE_UTILS_PUB dependencies on FND_GLOBAL

Line 197: FND_GLOBAL.Apps_Initialize

193: the newly added parameter p_resp_appl_id is passed to Apps_initialize procedure */
194:
195: /* OPEN l_resp_appl_csr;
196: FETCH l_resp_appl_csr INTO l_resp_appl_csr_rec;
197: FND_GLOBAL.Apps_Initialize
198: ( user_id => p_user_id
199: , resp_id => p_responsibility_id
200: , resp_appl_id => l_resp_appl_csr_rec.application_id
201: );

Line 205: FND_GLOBAL.Apps_Initialize

201: );
202: CLOSE l_resp_appl_csr;
203: */
204:
205: FND_GLOBAL.Apps_Initialize
206: ( user_id => p_user_id
207: , resp_id => p_responsibility_id
208: , resp_appl_id => p_resp_appl_id
209: );

Line 235: FND_GLOBAL.Apps_Initialize

231:
232: /*
233: Changed the call to the procedure Apps_Initalize to get the application Id
234: according to the responsibility and to avoide the hardcoding of the application id
235: FND_GLOBAL.Apps_Initialize
236: (user_id => p_user_id
237: , resp_id => p_responsibility_id
238: , resp_appl_id => 275
239: );