In table does the Customer name related to a Project in stored?
Hi Team,
I am looking for the Customer name related to a Project. I am using the following query to the customer name but unable get the customer name.
Kindly let me know any other table needs to checked.
query
Select PPA.Segment1,
HP.PARTY_NAME
FROM
PJF_PROJECTS_ALL_B PPA,
PJF_PROJECT_PARTIES PPP,
HZ_PARTIES HP
WHERE PPA.PROJECT_ID = PPP.PROJECT_ID
AND PPP.RESOURCE_SOURCE_ID = HP.PARTY_ID
0