CPI 动态过滤器

问题描述 投票:0回答:1

需要在查询中使国家动态化。

当前查询:

$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq 'Italy'

国家“意大利”应该从标题中动态选取。

  • 标题中的国家/地区字段: Country field in header
  • 输出 XML 显示国家/地区值: The output XML is showing the country value

尝试将查询更改为:

$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq ${in.header.country}
。这会出错并且不起作用。

尝试将查询更改为:

$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq ${in.header.country}
。这会出错并且不起作用。

预计数据将根据国家/地区进行过滤。

odata sap-cpi
1个回答
0
投票

尝试使用以下表达式代替 ${in.header.country}

将 ${in.header.country} 替换为 ${header.Country}

© www.soinside.com 2019 - 2024. All rights reserved.