80: fetch c into recinfo;
81: if (c%notfound) then
82: close c;
83: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
84: app_exception.raise_exception;
85: end if;
86: close c;
87: if ( (recinfo.VARIATION_RANK = X_VARIATION_RANK)
88: AND (recinfo.SELECTION_CONDITION = X_SELECTION_CONDITION)
89: ) then
90: null;
91: else
92: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
93: app_exception.raise_exception;
94: end if;
95:
96: return;
97: end LOCK_ROW;