DBA Data[Home] [Help]

APPS.XDP_WI_FA_MAPPING_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.WORKITEM_ID = X_WORKITEM_ID)
113: AND (recinfo.FULFILLMENT_ACTION_ID = X_FULFILLMENT_ACTION_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 130: app_exception.raise_exception;

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