DBA Data[Home] [Help]

APPS.IGW_ORG_MAP_DETAILS_PKG dependencies on APP_EXCEPTION

Line 73: app_exception.raise_exception;

69: open c;
70: fetch c into tlinfo;
71: if (c%notfound) then
72: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
73: app_exception.raise_exception;
74: close c;
75: return;
76: end if;
77: close c;

Line 88: app_exception.raise_exception;

84: AND (tlinfo.user_name = p_user_name)) then
85: null;
86: else
87: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
88: app_exception.raise_exception;
89: end if;
90: return;
91: end lock_row;
92: