DBA Data[Home] [Help]

APPS.OTA_ADD_TRAINING_SS dependencies on HZ_CUST_ACCOUNT_ROLES

Line 2172: CURSOR c_get_contact_name(p_person_id hz_cust_account_roles.cust_account_role_id%TYPE) IS

2168: FROM per_all_people_f
2169: WHERE person_id = p_person_id
2170: AND sysdate BETWEEN effective_start_date and effective_end_date;
2171:
2172: CURSOR c_get_contact_name(p_person_id hz_cust_account_roles.cust_account_role_id%TYPE) IS
2173: SELECT
2174: substrb( PARTY.person_last_name,1,50) || ',' ||
2175: substrb( PARTY.person_first_name,1,40) || ' ' ||
2176: party.person_pre_name_adjunct

Line 2177: from HZ_CUST_ACCOUNT_ROLES acct_role,

2173: SELECT
2174: substrb( PARTY.person_last_name,1,50) || ',' ||
2175: substrb( PARTY.person_first_name,1,40) || ' ' ||
2176: party.person_pre_name_adjunct
2177: from HZ_CUST_ACCOUNT_ROLES acct_role,
2178: HZ_PARTIES party,
2179: HZ_RELATIONSHIPS rel,
2180: HZ_ORG_CONTACTS org_cont,
2181: HZ_PARTIES rel_party,