DBA Data[Home] [Help]

APPS.HZ_CLASS_VALIDATE_V2PUB dependencies on FND_OBJECTS

Line 1264: -- Check to make sure table name exists in fnd_objects, pk1 is valid,

1260: --check_err(x_return_status);
1261:
1262:
1263: -------------- Changes made as per HTML Admin Project ----------------
1264: -- Check to make sure table name exists in fnd_objects, pk1 is valid,
1265: -- and pk2 is null (assumption: subsequent pks are all null if pk2 is null)
1266:
1267: -- Check valid lookup within the correct lookup_type
1268: -- validate_fnd_lookup(

Line 1280: from fnd_objects

1276:
1277: --Bug 2861251: Column name should accept null. Added or condition to accept
1278: --null value to column_name
1279: select '1' into xx_obj
1280: from fnd_objects
1281: where obj_name = p_in_rec.owner_table --Bug NO.:4942331 SQLID:14450613
1282: and ( p_in_rec.column_name is null
1283: or nvl(pk1_column_name,'-999') = nvl(p_in_rec.column_name,'-999') );
1284: