Hi Akash,
Usually I would try not to save the same data twice on two different entities and just use the account entity, but if you have to use a person entitiy, I would do the following:
- Create a 1-1 association between person and account
- When creating a person object, retrieve the matching account and set the association
- On your page set a dataview with data source microflow to retrieve an account
- In the data source microflow, use a retrieve action on acount using the following xPath: [id = '[%CurrentUser%]']
- In the dataview you just created set a dataview for Person. You can now get the person from the context over the association you just created.
Hope this helps!