DBA Data[Home] [Help]

APPS.GMO_DISPENSE_BOOTH_PKG dependencies on APP_EXCEPTION

Line 109: app_exception.raise_exception;

105: fetch c into recinfo;
106: if (c%notfound) then
107: close c;
108: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
109: app_exception.raise_exception;
110: end if;
111: close c;
112: if ( (recinfo.DISPENSE_BOOTH_NAME = X_DISPENSE_BOOTH_NAME)
113: AND (recinfo.DISPENSE_AREA_ID = X_DISPENSE_AREA_ID)

Line 119: app_exception.raise_exception;

115: ) then
116: null;
117: else
118: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
119: app_exception.raise_exception;
120: end if;
121:
122: for tlinfo in c1 loop
123: if (tlinfo.BASELANG = 'Y') then

Line 129: app_exception.raise_exception;

125: ) then
126: null;
127: else
128: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
129: app_exception.raise_exception;
130: end if;
131: end if;
132: end loop;
133: return;