DBA Data[Home] [Help]

APPS.IMC_THREE_SIXTY_PARAMS_PKG dependencies on APP_EXCEPTION

Line 81: app_exception.raise_exception;

77: fetch c into recinfo;
78: if (c%notfound) then
79: close c;
80: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
81: app_exception.raise_exception;
82: end if;
83: close c;
84: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
85: AND (recinfo.PARAM_POSITION = X_PARAM_POSITION)

Line 94: app_exception.raise_exception;

90: ) then
91: null;
92: else
93: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
94: app_exception.raise_exception;
95: end if;
96: return;
97: end LOCK_ROW;
98: