DBA Data[Home] [Help]

APPS.WF_CORE dependencies on WF_LOG_PKG

Line 1058: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_ERROR, 'WF_CORE.Tag_DB_Session',

1054: execute immediate sql_stm using p_module_type, p_action;
1055: end if;
1056: exception
1057: when others then
1058: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_ERROR, 'WF_CORE.Tag_DB_Session',
1059: 'module_type '||p_module_type||', module_name '||p_action);
1060: end;
1061:
1062: -- database_default_edition deescribed in wfcores.pls

Line 1113: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.getDedicatedComponentsCorrIds',

1109: elsif(p_agent_name = 'WF_NOTIFICATION_OUT') then
1110: l_componentType := 'WF_MAILER';
1111: end if;
1112:
1113: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.getDedicatedComponentsCorrIds',
1114: 'Getting the dedicated components corrId list for agent '||
1115: p_agent_name || ' and component type '|| l_componentType);
1116:
1117: -- Get the list of dedicated components correlation Ids separated with commas

Line 1127: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.getDedicatedComponentsCorrIds',

1123: end if;
1124:
1125: end loop;
1126:
1127: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.getDedicatedComponentsCorrIds',
1128: 'The dedicated components correlation Ids list is:'||l_corrId_list);
1129:
1130: return l_corrId_list;
1131:

Line 1154: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.matchCorrId',

1150: l_corrId corrId_type;
1151:
1152: begin
1153:
1154: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.matchCorrId',
1155: 'The message corrId is:'|| p_msgCorrId ||
1156: ', dedicated components correlation Ids list is:'|| p_corrId_list || ':');
1157:
1158: -- Get each dedicated component correlation and return 0 if it

Line 1167: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_ERROR, 'wf.plsql.WF_CORE.matchCorrId',

1163: l_corrid(i) := REGEXP_SUBSTR (p_corrId_list, '[^,]+', 1, i);
1164: EXIT WHEN l_corrid (i) IS NULL;
1165:
1166: if( p_msgCorrId like l_corrid(i)) then
1167: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_ERROR, 'wf.plsql.WF_CORE.matchCorrId',
1168: 'The message corrId matched with dedicated components corrId '||
1169: l_corrid(i) || ', returning 0');
1170: return 0;
1171: end if;

Line 1175: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.matchCorrId',

1171: end if;
1172:
1173: END LOOP;
1174:
1175: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_PROCEDURE, 'wf.plsql.WF_CORE.matchCorrId',
1176: 'The message corrId does not match any of the dedicated components ' ||
1177: 'corrId, returning 1');
1178: return 1;
1179: