Hybris 无法使用flex查询获取订单和订单条目详细信息

Hybris 无法使用flex查询获取订单和订单条目详细信息,hybris,Hybris,我使用下面的灵活搜索查询从Hybris(版本1808)获取订单和订单输入详细信息 我正在犯错误 cannot search unknown field 'TableField(name='orderpk',langPK='null',type=OrderEntry)' within type OrderEntry unless you disable checking 有什么我遗漏的吗?将{oe.orderpk}更改为{oe.order}和{oe.productpk}更改为{oe.produc

我使用下面的灵活搜索查询从Hybris(版本1808)获取订单和订单输入详细信息

我正在犯错误

cannot search unknown field 'TableField(name='orderpk',langPK='null',type=OrderEntry)' within type OrderEntry unless you disable checking

有什么我遗漏的吗?

{oe.orderpk}更改为{oe.order}{oe.productpk}更改为{oe.product}

SELECT {o.code},{o.date},{o.date},{o.totalprice},{o.totalTAX}, {ev.code} from {Order as o
JOIN OrderEntry as oe ON {oe.order} = {o.PK}
JOIN  EnumerationValue as ev on {o.status}={ev.pk}
JOIN Product as p ON {oe.product} = {p.PK}
}
where {o.versionID} is NULL
SELECT {o.code},{o.date},{o.date},{o.totalprice},{o.totalTAX}, {ev.code} from {Order as o
JOIN OrderEntry as oe ON {oe.order} = {o.PK}
JOIN  EnumerationValue as ev on {o.status}={ev.pk}
JOIN Product as p ON {oe.product} = {p.PK}
}
where {o.versionID} is NULL