DBA Data[Home] [Help]

APPS.CN_TRX_FACTOR_PVT dependencies on CN_CHK_PLAN_ELEMENT_PKG

Line 61: x_quota_id := cn_chk_plan_element_pkg.get_quota_id (LTRIM (RTRIM (p_quota_name)), p_org_id);

57: RAISE fnd_api.g_exc_error;
58: END IF;
59:
60: -- Quota ID
61: x_quota_id := cn_chk_plan_element_pkg.get_quota_id (LTRIM (RTRIM (p_quota_name)), p_org_id);
62:
63: IF p_quota_name IS NOT NULL
64: THEN
65: IF x_quota_id IS NULL

Line 80: x_quota_rule_id := cn_chk_plan_element_pkg.get_quota_rule_id (x_quota_id, x_rev_class_id);

76:
77: -- Get the Revenue Class ID
78: x_rev_class_id := cn_api.get_rev_class_id (LTRIM (RTRIM (p_rev_class_name)), p_org_id);
79: -- get the Quota Rule ID
80: x_quota_rule_id := cn_chk_plan_element_pkg.get_quota_rule_id (x_quota_id, x_rev_class_id);
81:
82: IF p_rev_class_name IS NOT NULL
83: THEN
84: IF x_rev_class_id IS NULL

Line 776: p_para_name => cn_chk_plan_element_pkg.g_pe_name,

772: -- Standard check of p_commit.
773: --+
774: -- Check if plan element name is missing or null even for Delete the Q Rule
775: IF ((cn_api.chk_miss_char_para (p_char_para => p_quota_name,
776: p_para_name => cn_chk_plan_element_pkg.g_pe_name,
777: p_loading_status => x_loading_status,
778: x_loading_status => l_loading_status
779: )
780: ) = fnd_api.g_true

Line 785: p_obj_name => cn_chk_plan_element_pkg.g_pe_name,

781: )
782: THEN
783: RAISE fnd_api.g_exc_error;
784: ELSIF ((cn_api.chk_null_char_para (p_char_para => p_quota_name,
785: p_obj_name => cn_chk_plan_element_pkg.g_pe_name,
786: p_loading_status => x_loading_status,
787: x_loading_status => l_loading_status
788: )
789: ) = fnd_api.g_true

Line 796: l_quota_id := cn_chk_plan_element_pkg.get_quota_id (LTRIM (RTRIM (p_quota_name)), p_org_id);

792: RAISE fnd_api.g_exc_error;
793: END IF;
794:
795: -- Get the Quota ID
796: l_quota_id := cn_chk_plan_element_pkg.get_quota_id (LTRIM (RTRIM (p_quota_name)), p_org_id);
797:
798: -- Raise an Error If quota id is null but name is not null
799: IF l_quota_id IS NULL AND p_quota_name IS NOT NULL
800: THEN

Line 899: cn_chk_plan_element_pkg.chk_trx_factor (x_return_status => x_return_status,

895: RAISE fnd_api.g_exc_error;
896: END IF;
897: END LOOP;
898:
899: cn_chk_plan_element_pkg.chk_trx_factor (x_return_status => x_return_status,
900: p_quota_rule_id => l_quota_rule_id,
901: p_rev_class_name => l_rev_class_name,
902: p_loading_status => x_loading_status,
903: x_loading_status => l_loading_status