DBA Data[Home] [Help]

APPS.IBE_M_MIGRATION_PVT dependencies on FND_LOG

Line 174: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

170: FETCH c_get_context_csr INTO l_context_id, l_access_name,
171: l_component_type;
172: EXIT WHEN c_get_context_csr%NOTFOUND;
173: l_i := l_i + 1;
174: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
175: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,
176: 'Key:'||to_char(l_context_id)||
177: ' Old component_type_code:'||l_component_type);
178: END IF;

Line 175: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,

171: l_component_type;
172: EXIT WHEN c_get_context_csr%NOTFOUND;
173: l_i := l_i + 1;
174: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
175: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,
176: 'Key:'||to_char(l_context_id)||
177: ' Old component_type_code:'||l_component_type);
178: END IF;
179: OPEN c_get_component_type_csr(l_context_id);

Line 223: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

219: = NVL(l_content_component_tbl(l_j).component_type_code,
220: COMPONENT_TYPE_CODE),
221: LAST_UPDATE_DATE = SYSDATE
222: WHERE context_id = l_content_component_tbl(l_j).context_id;
223: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
224: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,
225: 'Key:'||to_char(l_content_component_tbl(l_j).context_id)
226: ||' New component_type_code:'
227: ||l_content_component_tbl(l_j).component_type_code);

Line 224: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,

220: COMPONENT_TYPE_CODE),
221: LAST_UPDATE_DATE = SYSDATE
222: WHERE context_id = l_content_component_tbl(l_j).context_id;
223: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
224: FND_LOG.string(FND_LOG.LEVEL_EVENT, l_module,
225: 'Key:'||to_char(l_content_component_tbl(l_j).context_id)
226: ||' New component_type_code:'
227: ||l_content_component_tbl(l_j).component_type_code);
228: END IF;