How can I get value from EPEmployee for POOrder? I tried to join them by EmployeeID for POOrder and AcctCD for EPEmployee but got error that EmployeeID does not exist in POOrder. How should I join them?
How to get Employee Name for POOrder
Hi
Instead of EMployee ID can you check Owner ID for employee information ?
Hi
You need to join them by OwnerID for POOrder and BAccountID for EPEmployee and then select AcctName as Employee Name.
Hope this solution works for you!
POOrder.OwnerID = Contact.ContactID
Contact.BAccountID = BAccount.BAccountID
then from BAccount use AcctCD for Code and AcctName for name. If you want your data from Employee then you can Inner Join BAccount to EPEmployee on
BAccount.BAccountID = EPEmployee.BAccountID
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.