74: fetch c into recinfo;
75: if (c%notfound) then
76: close c;
77: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
78: app_exception.raise_exception;
79: end if;
80: close c;
81: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
82: AND (recinfo.SSM_QUERY_ID = X_SSM_QUERY_ID)
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: