DBA Data[Home] [Help]

APPS.BIS_FND_MENUS_PUB dependencies on FND_MESSAGE

Line 51: FND_MESSAGE.SET_NAME('BIS','BIS_NAME_UNIQUE_ERR');

47: when others then null;
48: end;
49:
50: if l_menu_name = p_menu_name then
51: FND_MESSAGE.SET_NAME('BIS','BIS_NAME_UNIQUE_ERR');
52: FND_MSG_PUB.ADD;
53: RAISE FND_API.G_EXC_ERROR;
54: end if;
55:

Line 57: FND_MESSAGE.SET_NAME('BIS','BIS_DISPLAY_NAME_UNIQUE_ERR');

53: RAISE FND_API.G_EXC_ERROR;
54: end if;
55:
56: if l_user_menu_name = p_user_menu_name then
57: FND_MESSAGE.SET_NAME('BIS','BIS_DISPLAY_NAME_UNIQUE_ERR');
58: FND_MSG_PUB.ADD;
59: RAISE FND_API.G_EXC_ERROR;
60: end if;
61:

Line 155: FND_MESSAGE.SET_NAME('BIS','BIS_DISPLAY_NAME_UNIQUE_ERR');

151: where menu_id <> p_menu_id
152: and user_menu_name = p_user_menu_name;
153:
154: if l_count > 0 then
155: FND_MESSAGE.SET_NAME('BIS','BIS_DISPLAY_NAME_UNIQUE_ERR');
156: FND_MSG_PUB.ADD;
157: RAISE FND_API.G_EXC_ERROR;
158: end if;
159: end if;

Line 240: FND_MESSAGE.SET_NAME('FND','MENU-USED BY MENUS');

236: CLOSE cr_resp_usage;
237: end if;
238:
239: for c in cr_menu_usage loop
240: FND_MESSAGE.SET_NAME('FND','MENU-USED BY MENUS');
241: FND_MESSAGE.SET_TOKEN('MENU', c.user_menu_name);
242: FND_MSG_PUB.ADD;
243: RAISE FND_API.G_EXC_ERROR;
244: end loop;

Line 241: FND_MESSAGE.SET_TOKEN('MENU', c.user_menu_name);

237: end if;
238:
239: for c in cr_menu_usage loop
240: FND_MESSAGE.SET_NAME('FND','MENU-USED BY MENUS');
241: FND_MESSAGE.SET_TOKEN('MENU', c.user_menu_name);
242: FND_MSG_PUB.ADD;
243: RAISE FND_API.G_EXC_ERROR;
244: end loop;
245:

Line 247: FND_MESSAGE.SET_NAME('FND','FND-RESP CALLS MENU');

243: RAISE FND_API.G_EXC_ERROR;
244: end loop;
245:
246: for c in cr_resp_usage loop
247: FND_MESSAGE.SET_NAME('FND','FND-RESP CALLS MENU');
248: FND_MESSAGE.SET_TOKEN('RESPONSIBILITY', c.responsibility_name);
249: FND_MSG_PUB.ADD;
250: RAISE FND_API.G_EXC_ERROR;
251: end loop;

Line 248: FND_MESSAGE.SET_TOKEN('RESPONSIBILITY', c.responsibility_name);

244: end loop;
245:
246: for c in cr_resp_usage loop
247: FND_MESSAGE.SET_NAME('FND','FND-RESP CALLS MENU');
248: FND_MESSAGE.SET_TOKEN('RESPONSIBILITY', c.responsibility_name);
249: FND_MSG_PUB.ADD;
250: RAISE FND_API.G_EXC_ERROR;
251: end loop;
252:

Line 327: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');

323: select menu_id into l_menu_id from fnd_menus where menu_id = p_menu_id for update of menu_id nowait;
324: FND_MENUS_PKG.DELETE_ROW(X_MENU_ID => p_MENU_ID);
325: exception
326: when others then
327: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');
328: FND_MSG_PUB.ADD;
329: RAISE FND_API.G_EXC_ERROR;
330: end;
331: end if;

Line 385: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');

381: begin
382: FND_MENUS_PKG.DELETE_ROW(X_MENU_ID => p_MENU_ID);
383: exception
384: when no_data_found then
385: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');
386: FND_MSG_PUB.ADD;
387: RAISE FND_API.G_EXC_ERROR;
388: end;
389: end if;

Line 440: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');

436: OPEN cMenu;
437: FETCH cMenu INTO l_last_update_date;
438:
439: if (cMenu%notfound) then
440: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_DELETED_ERROR');
441: FND_MSG_PUB.ADD;
442: RAISE FND_API.G_EXC_ERROR;
443: end if;
444:

Line 447: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_CHANGED_ERROR');

443: end if;
444:
445: if p_last_update_date is not null then
446: if p_last_update_date <> l_last_update_date then
447: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_CHANGED_ERROR');
448: FND_MSG_PUB.ADD;
449: RAISE FND_API.G_EXC_ERROR;
450: end if;
451: end if;

Line 461: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_LOCKED_ERROR');

457: WHEN FND_API.G_EXC_ERROR THEN NULL;
458: WHEN OTHERS THEN
459: close cMenu;
460: rollback to SP_LOCK_ROW;
461: FND_MESSAGE.SET_NAME('BIS','BIS_MENU_LOCKED_ERROR');
462: FND_MSG_PUB.ADD;
463: RAISE FND_API.G_EXC_ERROR;
464: END LOCK_ROW;
465: