76: fetch c into recinfo;
77: if (c%notfound) then
78: close c;
79: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
80: app_exception.raise_exception;
81: end if;
82: close c;
83: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
84: AND (recinfo.SSM_QUERY_STRING = X_SSM_QUERY_STRING)
88: ) then
89: null;
90: else
91: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
92: app_exception.raise_exception;
93: end if;
94: return;
95: end LOCK_ROW;
96: