DBA Data[Home] [Help]

APPS.ECX_XREF_STANDARDS_PKG dependencies on ECX_UTIL_API

Line 142: if NOT(l_ret_code = ECX_UTIL_API.G_NO_ERROR) then

138: p_xref_int_value => X_XREF_INT_VALUE,
139: p_description => X_DESCRIPTION,
140: p_owner => X_OWNER);
141:
142: if NOT(l_ret_code = ECX_UTIL_API.G_NO_ERROR) then
143: raise_application_error(-20000, l_errmsg);
144: end if;
145:
146: end if;

Line 163: if NOT(l_ret_code = ECX_UTIL_API.G_NO_ERROR) then

159: p_data_seeded => l_data_seeded,
160: p_owner => X_OWNER,
161: p_standard_type => nvl(X_STANDARD_TYPE, 'XML'));
162:
163: if NOT(l_ret_code = ECX_UTIL_API.G_NO_ERROR) then
164: /** Adding this dup val check for backward compatibility
165: prior to ecx_xref_standards index change.
166: We do not want to insert duplicates or
167: have patch error out for duplicates. **/

Line 168: if NOT(l_ret_code = ECX_UTIL_API.G_DUP_ERROR) then

164: /** Adding this dup val check for backward compatibility
165: prior to ecx_xref_standards index change.
166: We do not want to insert duplicates or
167: have patch error out for duplicates. **/
168: if NOT(l_ret_code = ECX_UTIL_API.G_DUP_ERROR) then
169: raise_application_error(-20000, l_errmsg);
170: end if;
171: end if;
172: when others then