DBA Data[Home] [Help]

APPS.IA_WF_UTIL_PKG dependencies on WF_ENGINE

Line 435: l_debug_info := WF_ENGINE.GetItemAttrText(itemtype => IA_WF_UTIL_PKG.WF_TransactionType,

431: if (IA_WF_UTIL_PKG.DebugModeEnabled) then
432:
433: fa_debug_pkg.add(p_calling_fn, p_parameter1, p_parameter2);
434:
435: l_debug_info := WF_ENGINE.GetItemAttrText(itemtype => IA_WF_UTIL_PKG.WF_TransactionType,
436: itemkey => p_request_id,
437: aname => 'DEBUG_INFO');
438:
439: l_debug_info := '[TIMESTAMP:'|| to_char(SYSDATE,'DD-MON-YYYY HH24:MI:SS') ||', FUNCTION: '|| p_calling_fn ||', DEBUG_INFO: '|| p_parameter1 || ', REQUEST_ID: ' || p_request_id ||'] <--' || l_debug_info;

Line 443: WF_ENGINE.SetItemAttrText(itemtype => IA_WF_UTIL_PKG.WF_TransactionType,

439: l_debug_info := '[TIMESTAMP:'|| to_char(SYSDATE,'DD-MON-YYYY HH24:MI:SS') ||', FUNCTION: '|| p_calling_fn ||', DEBUG_INFO: '|| p_parameter1 || ', REQUEST_ID: ' || p_request_id ||'] <--' || l_debug_info;
440:
441: l_debug_info := substr(l_debug_info, 1, 2000);
442:
443: WF_ENGINE.SetItemAttrText(itemtype => IA_WF_UTIL_PKG.WF_TransactionType,
444: itemkey => p_request_id,
445: aname => 'DEBUG_INFO',
446: avalue => l_debug_info);
447: end if;