[Home] [Help]
65: open c;
66: fetch c into recinfo;
67: if (c%notfound) then
68: close c;
69: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
70: app_exception.raise_exception;
71: end if;
72: close c;
73: if ( (recinfo.START_PERCENT_VALUE = X_START_PERCENT_VALUE
83: ) then
84: null;
85:
86: else
87: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
88: app_exception.raise_exception;
89: end if;
90:
91: return;