Monday, May 5, 2025

How to Retrieve Personnel Number for a Specific User in Dynamics 365 F&O

 In SQL:-

    

SELECT 

    HW.PersonnelNumber,

    PU.USER_

FROM 

    HcmWorker AS HW

JOIN 

    DirPersonUser AS PU ON HW.Person = PU.PersonParty

WHERE 

    PU.USER_ = 'Akhil';

No comments:

Post a Comment

Installing a New Package in D365 F&O Development Environment

  Introduction Installing and updating packages in the development environment is a common activity in Microsoft Dynamics 365 Finance . To ...