DBA Data[Home] [Help]

APPS.IBE_UTIL dependencies on FND_USER

Line 298: from fnd_user c , hz_parties d

294: IS
295:
296: Cursor c_get_party_type(c_user_name VARCHAR2) IS
297: select d.party_type
298: from fnd_user c , hz_parties d
299: where d.party_id=c.customer_id
300: and c.user_name=c_user_name;
301:
302: l_PartyType Varchar2(30);