DBA Data[Home] [Help]

APPS.PV_USER_ROLE_PVT dependencies on FND_MESSAGE

Line 99: --raise exception by adding apppropriate FND message as not valid user type passed in.

95: L_ENRLTYPE_KEY:=G_PRIMARY_USER;
96: ELSIF(UPPER(P_USERTYPE) = 'BUSINESS') THEN
97: L_ENRLTYPE_KEY:=G_BUSINESS_USER;
98: ELSE
99: --raise exception by adding apppropriate FND message as not valid user type passed in.
100: IF (PV_DEBUG_HIGH_ON) THEN
101: Pvx_Utility_Pvt.debug_message('ERROR: NOT valid USER TYPE IS passed IN.');
102: END IF;
103: --raise exception by adding apppropriate FND message as not valid user type passed in.

Line 103: --raise exception by adding apppropriate FND message as not valid user type passed in.

99: --raise exception by adding apppropriate FND message as not valid user type passed in.
100: IF (PV_DEBUG_HIGH_ON) THEN
101: Pvx_Utility_Pvt.debug_message('ERROR: NOT valid USER TYPE IS passed IN.');
102: END IF;
103: --raise exception by adding apppropriate FND message as not valid user type passed in.
104: FND_MESSAGE.set_name('PV', 'PV_USER_ROLE_NO_TYPE');
105: FND_MSG_PUB.add;
106: x_return_status := FND_API.g_ret_sts_error;
107: RAISE FND_API.g_exc_error;

Line 104: FND_MESSAGE.set_name('PV', 'PV_USER_ROLE_NO_TYPE');

100: IF (PV_DEBUG_HIGH_ON) THEN
101: Pvx_Utility_Pvt.debug_message('ERROR: NOT valid USER TYPE IS passed IN.');
102: END IF;
103: --raise exception by adding apppropriate FND message as not valid user type passed in.
104: FND_MESSAGE.set_name('PV', 'PV_USER_ROLE_NO_TYPE');
105: FND_MSG_PUB.add;
106: x_return_status := FND_API.g_ret_sts_error;
107: RAISE FND_API.g_exc_error;
108: END IF;

Line 115: FND_MESSAGE.set_name('PV', 'PV_USER_ROLE_NO_ENRL');

111: open find_enrltype;
112: fetch find_enrltype into l_enrltype_id;
113: /* Validation of enrollment Key. */
114: IF find_enrltype%NOTFOUND THEN
115: FND_MESSAGE.set_name('PV', 'PV_USER_ROLE_NO_ENRL');
116: FND_MSG_PUB.add;
117: x_return_status := FND_API.g_ret_sts_error;
118: close find_enrltype;
119: RAISE FND_API.g_exc_error;