DBA Data[Home] [Help]

APPS.CZ_CONTRACTS_API_GRP dependencies on CZ_MODELOPERATIONS_PUB

Line 15: x_folder_exists:=cz_modeloperations_pub.rp_folder_exists(p_api_version

11: p_rp_folder_id IN NUMBER) RETURN BOOLEAN
12: IS
13: x_folder_exists BOOLEAN := FALSE;
14: BEGIN
15: x_folder_exists:=cz_modeloperations_pub.rp_folder_exists(p_api_version
16: ,p_encl_folder_id
17: ,p_rp_folder_id);
18: RETURN x_folder_exists;
19: END rp_folder_exists;

Line 33: cz_modeloperations_pub.create_rp_folder(p_api_version

29: ,x_msg_data OUT NOCOPY VARCHAR2
30: )
31: IS
32: BEGIN
33: cz_modeloperations_pub.create_rp_folder(p_api_version
34: ,p_encl_folder_id
35: ,p_new_folder_name
36: ,p_folder_desc
37: ,p_folder_notes

Line 53: cz_modeloperations_pub.import_generic(p_api_version

49: IS
50: BEGIN
51:
52: cz_imp_ps_node.gContractsModel := TRUE; /* cnd_devl_project() checks this to allow seeded models */
53: cz_modeloperations_pub.import_generic(p_api_version
54: ,p_run_id
55: ,p_rp_folder_id
56: ,x_run_id
57: ,x_status);

Line 340: cz_modeloperations_pub.generate_logic(p_api_version => 1.0,

336: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
337: RAISE G_INCOMPATIBLE_API;
338: END IF;
339:
340: cz_modeloperations_pub.generate_logic(p_api_version => 1.0,
341: p_devl_project_id => p_devl_project_id,
342: x_run_id => x_run_id,
343: x_status => l_status);
344:

Line 354: IF (l_status = cz_modeloperations_pub.G_STATUS_ERROR) THEN

350: x_msg_data := i.message;
351: x_msg_count := x_msg_count + 1;
352: END LOOP;
353: END IF;
354: IF (l_status = cz_modeloperations_pub.G_STATUS_ERROR) THEN
355: x_return_status := FND_API.G_RET_STS_ERROR;
356: ELSE
357: x_return_status := FND_API.G_RET_STS_SUCCESS;
358: END IF;

Line 391: cz_modeloperations_pub.publish_model(p_api_version => 1.0,

387: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
388: RAISE G_INCOMPATIBLE_API;
389: END IF;
390:
391: cz_modeloperations_pub.publish_model(p_api_version => 1.0,
392: p_publication_id => p_publication_id,
393: x_run_id => x_run_id,
394: x_status => l_status);
395:

Line 405: IF (l_status = cz_modeloperations_pub.G_STATUS_ERROR) THEN

401: x_msg_count := x_msg_count + 1;
402: x_msg_data := i.message;
403: END LOOP;
404: END IF;
405: IF (l_status = cz_modeloperations_pub.G_STATUS_ERROR) THEN
406: x_return_status := FND_API.G_RET_STS_ERROR;
407: ELSE
408: x_return_status := FND_API.G_RET_STS_SUCCESS;
409: END IF;

Line 440: cz_modeloperations_pub.refresh_jrad_ui(p_api_version => 1.0,

436: WHERE devl_project_id=p_devl_project_id AND
437: ui_style='7' AND
438: deleted_flag='0')
439: LOOP
440: cz_modeloperations_pub.refresh_jrad_ui(p_api_version => 1.0,
441: p_ui_def_id => i.ui_def_id,
442: x_return_status => x_return_status,
443: x_msg_count => x_msg_count,
444: x_msg_data => x_msg_data);

Line 450: cz_modeloperations_pub.create_jrad_ui(p_api_version => 1.0,

446: IF x_return_status IN(FND_API.G_RET_STS_ERROR, FND_API.G_RET_STS_UNEXP_ERROR) THEN
447: RETURN;
448: END IF;
449: END LOOP;
450: cz_modeloperations_pub.create_jrad_ui(p_api_version => 1.0,
451: p_devl_project_id => p_devl_project_id,
452: p_show_all_nodes => p_show_all_nodes,
453: p_master_template_id => p_master_template_id,
454: p_create_empty_ui => p_create_empty_ui,