DBA Data[Home] [Help]

APPS.GMA_PROCCOL_WF_PKG dependencies on FND_MESSAGE

Line 139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

135: open c;
136: fetch c into recinfo;
137: if (c%notfound) then
138: close c;
139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
140: app_exception.raise_exception;
141: end if;
142: close c;
143: if ( ((recinfo.COLUMN_HIERARCHY = X_COLUMN_HIERARCHY)

Line 150: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

146: AND (recinfo.LOV_COLUMN = X_LOV_COLUMN)
147: ) then
148: null;
149: else
150: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
151: app_exception.raise_exception;
152: end if;
153:
154: for tlinfo in c1 loop

Line 160: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

156: if ( (tlinfo.COLUMN_PROMPT = X_COLUMN_PROMPT)
157: ) then
158: null;
159: else
160: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
161: app_exception.raise_exception;
162: end if;
163: end if;
164: end loop;