DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on FND_LOG

Line 1110: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then

1106: g_resp_appl_id := fnd_global.resp_appl_id;
1107: g_security_group_id := fnd_global.security_group_id;
1108: g_server_id := fnd_global.server_id;
1109:
1110: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
1111: l_msg := 'Cached - '||g_user_id||':'||g_resp_id||':'||g_resp_appl_id||':'
1112: ||g_security_group_id||':'||g_server_id||'->'||g_session_ctx;
1113: wf_log_pkg.string(wf_log_pkg.level_statement,
1114: 'wf.plsql.wfa_sec.cache_ctx.cached', l_msg);

Line 1121: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then

1117: g_cached := true;
1118:
1119: exception
1120: when others then
1121: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1122: wf_log_pkg.string(wf_log_pkg.level_error,
1123: 'wf.plsql.wfa_sec.cache_ctx.exception', sqlerrm);
1124: end if;
1125: end Cache_Ctx;

Line 1135: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then

1131: procedure Restore_Ctx is
1132: l_msg varchar2(500);
1133: begin
1134:
1135: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
1136: wf_log_pkg.string(wf_log_pkg.level_statement,
1137: 'wf.plsql.wfa_sec.restore_ctx.restored', 'BEGIN');
1138: end if;
1139:

Line 1168: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then

1164: --
1165: wf_engine.setctx_itemtype := null;
1166: wf_engine.setctx_itemkey := null;
1167:
1168: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
1169: l_msg := 'Restored to - '||g_user_id||':'||g_resp_id||':'||g_resp_appl_id||':'
1170: ||g_security_group_id||':'||g_server_id||'->'||g_session_ctx;
1171:
1172: wf_log_pkg.string(wf_log_pkg.level_statement,

Line 1177: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then

1173: 'wf.plsql.wfa_sec.restore_ctx.restored', l_msg);
1174: end if;
1175: end if;
1176:
1177: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
1178: wf_log_pkg.string(wf_log_pkg.level_statement,
1179: 'wf.plsql.wfa_sec.restore_ctx.restored', 'END');
1180: end if;
1181:

Line 1184: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then

1180: end if;
1181:
1182: exception
1183: when others then
1184: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then
1185: wf_log_pkg.string(wf_log_pkg.level_error,
1186: 'wf.plsql.wfa_sec.restore_ctx.exception', sqlerrm);
1187: end if;
1188: end Restore_Ctx;