EBS Customizations (MOSC)

MOSC Banner

How to link hz_cust_account_roles table and hz_parties table

edited Oct 9, 2024 8:46AM in EBS Customizations (MOSC) 5 commentsAnswered

Hi Team,

Actually i have to display the person first name and person last name.

we have 7 levels so i have to display person first name and person last name for 7 levels.

In the hz_cust_account_roles table, you will find columns called 'attributes1 to 'attributes6' where the party ID is being stored.

while joining the attributes the data not populate.

Please let me know

SELECT
    hr1.*
FROM
    (
        SELECT
            hr.*
        FROM
            hz_relationships  hr,
            hz_parties        hp
        WHERE
                hr.party_id = hp.party_id
            AND hp.party_id = 20086805
    )                  a,
    hz_parties    hr1
WHERE
    a.subject_id = hr1.party_id;

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center