DBA Data[Home] [Help]

APPS.XLA_CONTEXT_PKG dependencies on DBMS_SESSION

Line 75: dbms_session.set_context

71: ----------------------------------------------------------------------------
72: -- Following sets the value for the attribute 'SECURITY_GROUP' for the
73: -- application context namespace 'XLA'
74: ----------------------------------------------------------------------------
75: dbms_session.set_context
76: ('XLA','SECURITY_GROUP',p_security_group);
77: EXCEPTION
78: WHEN xla_exceptions_pkg.application_exception THEN
79: RAISE;

Line 98: dbms_session.set_context

94: ----------------------------------------------------------------------------
95: -- Following sets the value for the attribute 'ACCOUNTING_ERRORS_COUNT' for the
96: -- application context namespace 'XLA_GLOBAL'
97: ----------------------------------------------------------------------------
98: dbms_session.set_context
99: (namespace => 'XLA_GLOBAL'
100: ,attribute => 'ACCOUNTING_ERRORS_COUNT'
101: ,value => TO_CHAR(p_error_count)
102: ,username => NULL

Line 163: dbms_session.clear_context

159: ----------------------------------------------------------------------------
160: -- Following sets the value for the attribute 'ACCOUNTING_ERRORS_COUNT' for the
161: -- application context namespace 'XLA_GLOBAL'
162: ----------------------------------------------------------------------------
163: dbms_session.clear_context
164: (namespace => 'XLA_GLOBAL'
165: ,attribute => 'ACCOUNTING_ERRORS_COUNT'
166: ,client_id => p_client_id);
167:

Line 188: dbms_session.set_context

184: ----------------------------------------------------------------------------
185: -- Following sets the value for the attribute 'MPA_ACCRUAL_EXISTS' for the
186: -- application context namespace 'XLA_GLOBAL'
187: ----------------------------------------------------------------------------
188: dbms_session.set_context
189: (namespace => 'XLA_GLOBAL'
190: ,attribute => 'MPA_ACCRUAL_EXISTS'
191: ,value => p_mpa_accrual_exists
192: ,username => NULL

Line 228: dbms_session.clear_context

224: ----------------------------------------------------------------------------
225: -- Following sets the value for the attribute 'MPA_ACCRUAL_EXISTS' for the
226: -- application context namespace 'XLA_GLOBAL'
227: ----------------------------------------------------------------------------
228: dbms_session.clear_context
229: (namespace => 'XLA_GLOBAL'
230: ,attribute => 'MPA_ACCRUAL_EXISTS'
231: ,client_id => p_client_id);
232: EXCEPTION

Line 255: dbms_session.set_context

251: ----------------------------------------------------------------------------
252:
253: --changed namespace parameter from global to local bug8744290
254:
255: dbms_session.set_context
256: (namespace => 'XLA'
257: ,attribute => 'EVENT_COUNT'
258: ,value => TO_CHAR(p_event_count)
259: ,username => NULL

Line 286: dbms_session.set_context

282: ----------------------------------------------------------------------------
283: -- Following sets the value for the attribute 'NO_HDR_EXTRACT_FLAG' for
284: -- the application context namespace 'XLA_GLOBAL'
285: ----------------------------------------------------------------------------
286: dbms_session.set_context
287: (namespace => 'XLA_GLOBAL'
288: ,attribute => 'NO_HDR_EXTRACT_FLAG'
289: ,value => p_nohdr_extract_flag
290: ,username => NULL

Line 324: dbms_session.clear_context

320: -- application context namespace 'XLA' and
321: -- 'NO_HDR_EXTRACT_FLAG' for the application context namespace
322: -- 'XLA_GLOBAL'
323: ---------------------------------------------------------------------------
324: dbms_session.clear_context
325: (namespace => 'XLA'
326: ,attribute => 'EVENT_COUNT'
327: ,client_id => p_client_id);
328:

Line 329: dbms_session.clear_context

325: (namespace => 'XLA'
326: ,attribute => 'EVENT_COUNT'
327: ,client_id => p_client_id);
328:
329: dbms_session.clear_context
330: (namespace => 'XLA_GLOBAL'
331: ,attribute => 'NO_HDR_EXTRACT_FLAG'
332: ,client_id => p_client_id);
333:

Line 354: dbms_session.set_context

350: ----------------------------------------------------------------------------
351: -- Following sets the value for the attribute 'EVENT_SET_ID' for the
352: -- application context namespace 'XLA'
353: ----------------------------------------------------------------------------
354: dbms_session.set_context
355: ('XLA','EVENT_SET_ID',to_char(p_event_set_id));
356: EXCEPTION
357: WHEN xla_exceptions_pkg.application_exception THEN
358: RAISE;

Line 376: dbms_session.set_context

372: ----------------------------------------------------------------------------
373: -- Following sets the value for the attribute 'REQUEST_ID' for the
374: -- application context namespace 'XLA'
375: ----------------------------------------------------------------------------
376: dbms_session.set_context
377: ('XLA','REQUEST_ID',to_char(p_request_id));
378: EXCEPTION
379: WHEN xla_exceptions_pkg.application_exception THEN
380: RAISE;

Line 398: dbms_session.set_context

394: ----------------------------------------------------------------------------
395: -- Following sets the value for the attribute 'REPORT_REQUEST_ID' for the
396: -- application context namespace 'XLA'
397: ----------------------------------------------------------------------------
398: dbms_session.set_context
399: ('XLA','REPORT_REQUEST_ID',to_char(p_request_id));
400: EXCEPTION
401: WHEN xla_exceptions_pkg.application_exception THEN
402: RAISE;

Line 420: dbms_session.set_context

416: ----------------------------------------------------------------------------
417: -- Following sets the value for the attribute 'PROCESSING_ORDER' for the
418: -- application context namespace 'XLA'
419: ----------------------------------------------------------------------------
420: dbms_session.set_context
421: ('XLA','PROCESSING_ORDER',to_char(p_processing_order));
422: EXCEPTION
423: WHEN xla_exceptions_pkg.application_exception THEN
424: RAISE;

Line 442: dbms_session.set_context

438: ----------------------------------------------------------------------------
439: -- Following sets the value for the attribute 'GENERATE_BALANCES' for the
440: -- application context namespace 'XLA_GLOBAL'
441: ----------------------------------------------------------------------------
442: dbms_session.set_context
443: (namespace => 'XLA_GLOBAL'
444: ,attribute => 'GENERATE_BALANCES'
445: ,value => TO_CHAR(p_generate_balances)
446: ,username => NULL

Line 467: dbms_session.clear_context

463:
464: PROCEDURE clear_gen_bal_context
465: (p_client_id IN VARCHAR2) IS
466: BEGIN
467: dbms_session.clear_context
468: (namespace => 'XLA_GLOBAL'
469: ,attribute => 'GENERATE_BALANCES'
470: ,client_id => p_client_id);
471:

Line 493: dbms_session.set_context

489: ----------------------------------------------------------------------------
490: -- Following sets the value for the attribute 'ENTITY_MESSAGES_COUNT' for the
491: -- application context namespace 'XLA_GLOBAL'
492: ----------------------------------------------------------------------------
493: dbms_session.set_context
494: (namespace => 'XLA_GLOBAL'
495: ,attribute => 'ENTITY_MESSAGES_COUNT'
496: ,value => TO_CHAR(p_msg_count)
497: ,username => NULL

Line 590: dbms_session.clear_context

586: ----------------------------------------------------------------------------
587: -- Following sets the value for the attribute 'SECURITY_GROUP' for the
588: -- application context namespace 'XLA'
589: ----------------------------------------------------------------------------
590: dbms_session.clear_context
591: (namespace => 'XLA_GLOBAL'
592: ,attribute => 'ENTITY_MESSAGES_COUNT'
593: ,client_id => p_client_id);
594: