OQL object type Parameter in dataset

0
Hello guys ,  How we can use object type parameter is oql query , can anyone gone through this before ???
asked
2 answers
2

HI Dinesh ,

I have added image below for your reference , it will help to resolve your issue

 

answered
1

Hi Narayana moorthy, 

The object parameter must be set till association not to the object itself, like how you do it in normal XPATH.

For example

HRMS.EmployeeHistory_Employee = $Employee

What you can also do is

HRMS.Employee/id = $Employee

HRMS.EmployeeHistory_Employee/HRMS.Employee/id = $Employee

The following does not work

HRMS.EmployeeHistory_Employee/HRMS.Employee = $Employee

answered