Sunday, October 26, 2014

Get Worker Dept from Worker in ax 2012

// Get Worker Dept from Worker in ax 

display Name WorkerDepartmentName()
{
    HcmWorker               hcmWorker;
    str                     deptName;

    select RecId from hcmWorker
            where hcmWorker.RecId == this.UpdatedByWorker;

     deptName = hcmWorker.primaryDepartmentName();

    return deptName;

}

No comments:

Post a Comment

Azure Function Apps

Content copied from AI. Azure Function Apps provide a serverless, event-driven compute service that lets you run code in languages like C#, ...