DBA Data[Home] [Help]

APPS.CN_USER_ACCESS_PVT dependencies on FND_MESSAGE

Line 59: FND_MESSAGE.SET_NAME ('CN' , 'CN_ACCESS_DUP_ERR');

55: where user_id = l_newrec.user_id
56: and comp_group_id = l_newrec.comp_group_id
57: and org_code = l_newrec.org_code;
58: IF l_count > 0 THEN
59: FND_MESSAGE.SET_NAME ('CN' , 'CN_ACCESS_DUP_ERR');
60: FND_MSG_PUB.Add;
61: RAISE FND_API.G_EXC_ERROR;
62: END IF;
63:

Line 151: FND_MESSAGE.SET_NAME('CN', 'CN_INVALID_UPDATE_REC');

147: from cn_user_accesses
148: where user_access_id = l_newrec.user_access_id;
149:
150: if l_count = 0 then
151: FND_MESSAGE.SET_NAME('CN', 'CN_INVALID_UPDATE_REC');
152: FND_MSG_PUB.ADD;
153: RAISE FND_API.G_EXC_ERROR;
154: end if;
155:

Line 165: FND_MESSAGE.SET_NAME ('CN' , 'CN_ACCESS_DUP_ERR');

161: and comp_group_id = l_newrec.comp_group_id
162: and org_code = l_newrec.org_code
163: and user_access_id <> l_newrec.user_access_id;
164: IF l_count > 0 THEN
165: FND_MESSAGE.SET_NAME ('CN' , 'CN_ACCESS_DUP_ERR');
166: FND_MSG_PUB.Add;
167: RAISE FND_API.G_EXC_ERROR;
168: END IF;
169:

Line 261: FND_MESSAGE.SET_NAME('CN', 'CN_INVALID_DEL_REC');

257: from cn_user_accesses
258: where user_access_id = p_user_access_id;
259:
260: if l_count = 0 then
261: FND_MESSAGE.SET_NAME('CN', 'CN_INVALID_DEL_REC');
262: FND_MSG_PUB.ADD;
263: RAISE FND_API.G_EXC_ERROR;
264: end if;
265:

Line 366: FND_MESSAGE.SET_NAME('CN', 'CN_QM_NO_FM');

362:
363: /* Add this check
364: IF l_fm_resp_key IS NULL THEN
365: IF FND_MSG_PUB.Check_msg_level(FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
366: FND_MESSAGE.SET_NAME('CN', 'CN_QM_NO_FM');
367: FND_MSG_PUB.Add;
368: END IF;
369: RAISE FND_API.G_EXC_error;
370: END IF;