DBA Data[Home] [Help]

APPS.CZ_IB_TSO_GRP dependencies on CZ_NETWORK_API_PUB

Line 290: -- populate array of instances which will be used as a parameter in cz_network_api_pub.generate_config_trees

286: COMMIT;
287:
288: -- Batch Validation starts here --
289: BEGIN
290: -- populate array of instances which will be used as a parameter in cz_network_api_pub.generate_config_trees
291: --
292: l_config_tbl(1).config_hdr_id := p_instance_hdr_id;
293: l_config_tbl(1).config_rev_nbr := p_instance_rev_nbr;
294:

Line 296: -- cz_network_api_pub.generate_config_trees

292: l_config_tbl(1).config_hdr_id := p_instance_hdr_id;
293: l_config_tbl(1).config_rev_nbr := p_instance_rev_nbr;
294:
295: -- populate record structure of applicability parameters which will be used as a parameter in
296: -- cz_network_api_pub.generate_config_trees
297: --
298: IF p_config_eff_date IS NOT NULL THEN
299: l_appl_param_rec.config_effective_date := p_config_eff_date ;
300: ELSE

Line 312: 'cz_network_api_pub.generate_config_trees() will be called.',

308: END IF;
309:
310: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
311: cz_utils.log_report(G_PKG_NAME, l_api_name, l_ndebug,
312: 'cz_network_api_pub.generate_config_trees() will be called.',
313: fnd_log.LEVEL_PROCEDURE);
314: END IF;
315:
316: --

Line 324: cz_network_api_pub.generate_config_trees

320: -- We need this new type because in this mode we want to update the instance status but not save config
321: -- item tree at all. The instance will be marked as valid only if there was no contradiction on removing the
322: -- returned item, the configuration is valid and complete and if there are no deltas from installed values
323: --
324: cz_network_api_pub.generate_config_trees
325: (p_api_version => 1.0,
326: p_config_tbl => l_config_tbl,
327: p_tree_copy_mode => CZ_API_PUB.G_NEW_HEADER_COPY_MODE,
328: p_appl_param_rec => l_appl_param_rec,

Line 338: 'cz_network_api_pub.generate_config_trees() called been called return_status='||x_return_status,

334: x_msg_data => l_msg_data);
335:
336: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
337: cz_utils.log_report(G_PKG_NAME, l_api_name, l_ndebug,
338: 'cz_network_api_pub.generate_config_trees() called been called return_status='||x_return_status,
339: fnd_log.LEVEL_PROCEDURE);
340: END IF;
341:
342: EXCEPTION

Line 345: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name, 'Fatal error : cz_network_api_pub.generate_config_trees() : '||SQLERRM);

341:
342: EXCEPTION
343: WHEN OTHERS THEN
344: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
345: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name, 'Fatal error : cz_network_api_pub.generate_config_trees() : '||SQLERRM);
346: fnd_msg_pub.count_and_get(p_count => x_msg_count,
347: p_data => x_msg_data);
348: IF (FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
349: cz_utils.log_report(G_PKG_NAME, l_api_name, l_ndebug,

Line 350: 'Fatal error : cz_network_api_pub.generate_config_trees() : '||SQLERRM,

346: fnd_msg_pub.count_and_get(p_count => x_msg_count,
347: p_data => x_msg_data);
348: IF (FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
349: cz_utils.log_report(G_PKG_NAME, l_api_name, l_ndebug,
350: 'Fatal error : cz_network_api_pub.generate_config_trees() : '||SQLERRM,
351: FND_LOG.LEVEL_ERROR);
352: END IF;
353: END;
354: