DBA Data[Home] [Help]

APPS.CN_COMP_PLANS_PKG dependencies on FND_MSG_PUB

Line 81: fnd_msg_pub.add;

77: OR end_date > x_end_date);
78:
79: if x_dummy > 0 then
80: fnd_message.set_name('CN','PLN_PLAN_PRD_LT_SRP_PRD');
81: fnd_msg_pub.add;
82: return false;
83: end if;
84: return true;
85: END check_period_range;

Line 165: fnd_msg_pub.add;

161: IF x_rev_class_total <> x_rev_class_total_unique THEN
162: fnd_message.set_name('CN', 'PLN_PLAN_DUP_REV_CLASS');
163: fnd_message.set_token('PLAN_NAME',
164: get_plan_name(x_comp_plan_id));
165: fnd_msg_pub.add;
166: return false;
167: END IF;
168: end if;
169: end loop;

Line 195: fnd_msg_pub.add;

191: WHERE comp_plan_id = x_comp_plan_id;
192:
193: if x_dummy > 0 then
194: fnd_message.set_name('CN', 'PLN_PLAN_DELETE_NA');
195: fnd_msg_pub.add;
196: return false;
197: end if;
198:
199: SELECT count(1)

Line 206: fnd_msg_pub.add;

202: WHERE comp_plan_id = x_comp_plan_id;
203:
204: if x_dummy > 0 then
205: fnd_message.set_name('CN', 'CN_ROLE_PLAN_ASSIGNED');
206: fnd_msg_pub.add;
207: return false;
208: end if;
209: return true;
210:

Line 746: fnd_msg_pub.add;

742: OR X_Comp_Plan_Id <> comp_plan_id);
743:
744: if x_dummy > 0 then
745: fnd_message.set_name('CN', 'PLN_PLAN_EXISTS');
746: fnd_msg_pub.add;
747: return false;
748: end if;
749: return true;
750:

Line 953: fnd_msg_pub.add;

949: IF quotas%rowcount = 0 THEN
950: l_temp_status_code := 'INCOMPLETE';
951: fnd_message.set_name('CN', 'PLN_PLAN_NO_QUOTAS');
952: fnd_message.set_token('PLAN_NAME', get_plan_name(x_comp_plan_id));
953: fnd_msg_pub.add;
954: exit;
955: ELSIF quotas%notfound THEN
956: -- at the end of the loop
957: exit;