DBA Data[Home] [Help]

APPS.FND_FORM_FUNCTIONS_PKG dependencies on APP_EXCEPTION

Line 1329: app_exception.raise_exception;

1325: fetch c into recinfo;
1326: if (c%notfound) then
1327: close c;
1328: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
1329: app_exception.raise_exception;
1330: end if;
1331: close c;
1332: if ( ((recinfo.WEB_ICON = X_WEB_ICON)
1333: OR ((recinfo.WEB_ICON is null) AND (X_WEB_ICON is null)))

Line 1368: app_exception.raise_exception;

1364: ) then
1365: null;
1366: else
1367: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
1368: app_exception.raise_exception;
1369: end if;
1370:
1371: open c1;
1372: fetch c1 into tlinfo;

Line 1386: app_exception.raise_exception;

1382: ) then
1383: null;
1384: else
1385: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
1386: app_exception.raise_exception;
1387: end if;
1388: return;
1389: end LOCK_ROW;
1390:

Line 1529: app_exception.raise_exception;

1525: exception
1526: when no_data_found then
1527: fnd_message.set_name('FND', 'FND_INVALID_MAINTENANCE_MODE');
1528: fnd_message.set_token('MODE', x_function_mode);
1529: app_exception.raise_exception;
1530: end;
1531:
1532: update fnd_form_functions
1533: set maintenance_mode_support = x_function_mode

Line 1540: app_exception.raise_exception;

1536: -- Function name does not exist
1537: if (sql%notfound) then
1538: fnd_message.set_name('FND', 'FND_FUNCTION_NOT_FOUND');
1539: fnd_message.set_token('NAME', x_function_name);
1540: app_exception.raise_exception;
1541: end if;
1542:
1543:
1544: end SET_FUNCTION_MODE;