Trying to find frontend fields for the following information
Hello,
when I query a specific customer for the party phone number using this query:
SELECT ca.account_number,
hp.party_name,
hp.primary_phone_purpose,
hp.primary_phone_line_type,
hp.primary_phone_country_code,
hp.primary_phone_area_code,
hp.primary_phone_number,
hp.primary_phone_extension
FROM apps.hz_cust_accounts ca,
apps.hz_parties hp
WHERE ca.party_id=hp.party_id
and ca.account_number in ('18473');
I get a specific phone number but cannot seem to find that same phone number from the frontend. Where can I find those specific fields on the frontend?