joinCDT

Hi
I have employee CDT and Skills CDT, One employee can have multiple skills.I have used joincdts() function to join both the CDT's, but some how it is throwing an error "Expression evaluation error at function 'joincdts' [line 4]: Error evaluating function 'joincdts' : null" Please find code below. any suggestions?

with(
local!employees:rule!MS_IAL_GetAllEmployeeDetails(),
local!skills:rule!MS_IAL_GetAllEmployeesSkills_CDTManipulation(),
joincdts(
joinType:"INNER",
leftCdt:local!employees,
selectFromLeft :{"firstName"},
rightCdt:local!skills,
selectFromRight:{"skillName"},
onLeft:"employee_Organization_ID",
equalsRight:"employee_Organization_ID",
leftAlias:{"employees"},
rightAlias:{"skills"}
)
)

OriginalPostID-248534

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data