DBA Data[Home] [Help]

APPS.XLA_TB_REPORT_PVT dependencies on XLA_SECURITY_PKG

Line 3107: and the security context is set using xla_security_pkg.set_security_context(l_application_id).

3103:
3104: /*
3105: bug#8216458 commenting the check that is NVL(p_security_flag,'N') = 'Y'
3106: If security is defined the p_security_flag is passed default 'Y' by the concurrent program
3107: and the security context is set using xla_security_pkg.set_security_context(l_application_id).
3108: For payables and receivables the security context is always set from Accounting Setup -> Subledger Application
3109: Use Security Option checked and the policy function specified.
3110: For Cost Management application this setup is not done, p_security_flag is NULL,
3111: therefore context is not set and OABL report is not fetching any output.

Line 3128: xla_security_pkg.set_security_context(602);

3124:
3125: print_logfile('>> set_security_context');
3126:
3127: IF l_application_id IS NULL THEN
3128: xla_security_pkg.set_security_context(602);
3129: ELSE
3130: xla_security_pkg.set_security_context(l_application_id);
3131: END IF;
3132:

Line 3130: xla_security_pkg.set_security_context(l_application_id);

3126:
3127: IF l_application_id IS NULL THEN
3128: xla_security_pkg.set_security_context(602);
3129: ELSE
3130: xla_security_pkg.set_security_context(l_application_id);
3131: END IF;
3132:
3133: print_logfile('<< set_security_context');
3134: