https://community.dynamics.com/ax/b/goshoom/archive/2013/10/16/year-in-number-sequence-ax2012.aspx
This blog is dedicated to all my technical learnings and findings. As they say use all the brains you have and borrow all the brains you can, so this is my share of lending my learnings to all you guys out there. I would like to acknowledge here that some parts of these posts would be reproduced as a part of my web-browsing mainly because having it all in one place is far more convenient.
Friday, May 01, 2015
AX 2012 Worker Contact Information
The address book framework in AX2012 comprises of quite a complicated schema. We might often be required to upload the contact information of the employees during an implementation as the bulk might be big enough to rule out data entry.
I had this requirement to upload the contact information of employees and ended up traversing the schema for the same here it is
select LEA.*
from HCMWorker W
inner join DirPartyTable DP
on DP.RecID = W.Person
inner join DirPartyLocation DPL
on DPL.Party= DP.RecID
inner join LogisticsElectronicAddress LEA
on LEA.Location = DPL.Location
where W.PersonnelNumber = 'T00062'
I had this requirement to upload the contact information of employees and ended up traversing the schema for the same here it is
select LEA.*
from HCMWorker W
inner join DirPartyTable DP
on DP.RecID = W.Person
inner join DirPartyLocation DPL
on DPL.Party= DP.RecID
inner join LogisticsElectronicAddress LEA
on LEA.Location = DPL.Location
where W.PersonnelNumber = 'T00062'
Subscribe to:
Posts (Atom)