DBA Data[Home] [Help]

APPS.GMA_ACTCOL_WF_PKG dependencies on FND_MESSAGE

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

126: open c;
127: fetch c into recinfo;
128: if (c%notfound) then
129: close c;
130: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
131: app_exception.raise_exception;
132: end if;
133: close c;
134: if ( ((recinfo.COLUMN_HIERARCHY = X_COLUMN_HIERARCHY)

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

137: AND (recinfo.LOV_COLUMN = X_LOV_COLUMN)
138: ) then
139: null;
140: else
141: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
142: app_exception.raise_exception;
143: end if;
144:
145: for tlinfo in c1 loop

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

147: if ( (tlinfo.COLUMN_PROMPT = X_COLUMN_PROMPT)
148: ) then
149: null;
150: else
151: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
152: app_exception.raise_exception;
153: end if;
154: end if;
155: end loop;