Bhashar,
Thank you for the response a colleague just got back to me with this solution querying ASCM tables and it works.
SELECT ppnf.full_nameFROM per_users pu,per_person_names_f ppnfWHERE pu.username = fnd_global.user_nameAND pu.person_id = ppnf.person_idAND UPPER(ppnf.name_type) = 'GLOBAL'AND TRUNC(SYSDATE) BETWEEN ppnf.effective_start_date AND ppnf.effective_end_date
Hi @SQLWrangler,
Welcome to the Oracle Analytics & AI Community!
Could you please share a bit more information about your issue or requirement? This will help us better understand your situation and, if needed, replicate it to find a potential resolution.
Thank you.
The last line may not be needed:
TRUNC(SYSDATE) BETWEEN ppnf.effective_start_date AND ppnf.effective_end_date