DBA Data[Home] [Help]

APPS.FND_OAM_BF_ASSOC_PKG dependencies on FND_LOG

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

34: connect by prior a.biz_flow_parent_key = a.biz_flow_child_key;
35:
36: if v_ct_ancestors > 0 or X_BIZ_FLOW_PARENT_KEY = X_BIZ_FLOW_CHILD_KEY then
37: v_msg := 'Cannot add ' || X_BIZ_FLOW_CHILD_KEY || ' as a child of ' || X_BIZ_FLOW_PARENT_KEY || ' as ' || X_BIZ_FLOW_CHILD_KEY || ' is already an ancestor of ' || X_BIZ_FLOW_PARENT_KEY || '.';
38: if (fnd_log.level_error >= fnd_log.g_current_runtime_level) then
39: fnd_log.string(log_level=>fnd_log.level_error,
40: module=>MODULE||'.raise_alert',
41: message=>v_msg);
42: end if;

Line 39: fnd_log.string(log_level=>fnd_log.level_error,

35:
36: if v_ct_ancestors > 0 or X_BIZ_FLOW_PARENT_KEY = X_BIZ_FLOW_CHILD_KEY then
37: v_msg := 'Cannot add ' || X_BIZ_FLOW_CHILD_KEY || ' as a child of ' || X_BIZ_FLOW_PARENT_KEY || ' as ' || X_BIZ_FLOW_CHILD_KEY || ' is already an ancestor of ' || X_BIZ_FLOW_PARENT_KEY || '.';
38: if (fnd_log.level_error >= fnd_log.g_current_runtime_level) then
39: fnd_log.string(log_level=>fnd_log.level_error,
40: module=>MODULE||'.raise_alert',
41: message=>v_msg);
42: end if;
43: raise_application_error(-20500, v_msg);