DBA Data[Home] [Help]

APPS.WSMPCPDS dependencies on APP_EXCEPTION

Line 328: APP_EXCEPTION.Raise_Exception;

324: FETCH C INTO Recinfo;
325: if (C%NOTFOUND) then
326: CLOSE C;
327: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
328: APP_EXCEPTION.Raise_Exception;
329: end if;
330: CLOSE C;
331:
332: /*

Line 441: APP_EXCEPTION.RAISE_EXCEPTION;

437: ) then
438: return;
439: else
440: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
441: APP_EXCEPTION.RAISE_EXCEPTION;
442: end if;
443:
444: else
445: if (

Line 561: APP_EXCEPTION.RAISE_EXCEPTION;

557: ) then
558: return;
559: else
560: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
561: APP_EXCEPTION.RAISE_EXCEPTION;
562: end if;
563: end if;
564:
565: END Lock_Row;

Line 790: app_exception.raise_exception;

786: WHERE inventory_item_id = x_component_id
787: AND organization_id = x_organization_id;
788:
789: fnd_message.set_token ('COMPONENT', x_component);
790: app_exception.raise_exception;
791:
792: END Check_Unique;
793:
794: