DBA Data[Home] [Help]

APPS.AZ_STRUCTURES_PKG dependencies on APP_EXCEPTION

Line 107: app_exception.raise_exception;

103: fetch c into recinfo;
104: if (c%notfound) then
105: close c;
106: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
107: app_exception.raise_exception;
108: end if;
109: close c;
110: if ( (recinfo.HIERARCHICAL_FLAG = X_HIERARCHICAL_FLAG)
111: ) then

Line 115: app_exception.raise_exception;

111: ) then
112: null;
113: else
114: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
115: app_exception.raise_exception;
116: end if;
117:
118: for tlinfo in c1 loop
119: if (tlinfo.BASELANG = 'Y') then

Line 128: app_exception.raise_exception;

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