impex.exportItems语法

2020-09-13 17:54发布

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


Hybris帮助包含一些使用 impex.exportItems 导出数据的示例。 例如。 https://help.hybris.com/1808/hcd/31ffc3dd858d47209614a97fd084d12d.html

 #----扩展名:core ----类型:地址----
  "#%impex.setTargetFile("" Address.csv"",true);"
  insert_update地址;  pk [unique = true]; 国家(isocode); 重复; 电子邮件; 名字; 性别(项目类型(代码),代码); 姓; 邮政编码; 区域(isocode); 街道名称; 街道号码; 镇; 所有者(pk); 手机; 公司; 区; 标题(代码)
  "#%impex.exportItems(""从{地址}中选择{pk},其中{重复} ='假'"",Collections.EMPTY_MAP,Collections.singletonList(Item.class),true,true,-1,-1  );"
  

 #----扩展名:core ----类型:User ----
  "#%impex.setTargetFile("" User.csv"",true);"
  insert_update用户;  pk [unique = true];  uid [unique = true]; 地址(pk);  sessionLanguage(isocode); 描述;  hmcLoginDisabled;  loginDisabled; 名称; 密码;  passwordAnswer;  passwordQuestion;  sessionCurrency(isocode);
  "#%impex.exportItems("" User"",true);"
  

有人可以解释 impex.exportItems 命令的语法吗? 在这两种情况下,看起来完全不同。 这些参数到底是什么意思,还有其他用途吗?

也欢迎您访问帮助/维基的链接

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


Hybris帮助包含一些使用 impex.exportItems 导出数据的示例。 例如。 https://help.hybris.com/1808/hcd/31ffc3dd858d47209614a97fd084d12d.html

 #----扩展名:core ----类型:地址----
  "#%impex.setTargetFile("" Address.csv"",true);"
  insert_update地址;  pk [unique = true]; 国家(isocode); 重复; 电子邮件; 名字; 性别(项目类型(代码),代码); 姓; 邮政编码; 区域(isocode); 街道名称; 街道号码; 镇; 所有者(pk); 手机; 公司; 区; 标题(代码)
  "#%impex.exportItems(""从{地址}中选择{pk},其中{重复} ='假'"",Collections.EMPTY_MAP,Collections.singletonList(Item.class),true,true,-1,-1  );"
  

 #----扩展名:core ----类型:User ----
  "#%impex.setTargetFile("" User.csv"",true);"
  insert_update用户;  pk [unique = true];  uid [unique = true]; 地址(pk);  sessionLanguage(isocode); 描述;  hmcLoginDisabled;  loginDisabled; 名称; 密码;  passwordAnswer;  passwordQuestion;  sessionCurrency(isocode);
  "#%impex.exportItems("" User"",true);"
  

有人可以解释 impex.exportItems 命令的语法吗? 在这两种情况下,看起来完全不同。 这些参数到底是什么意思,还有其他用途吗?

也欢迎您访问帮助/维基的链接

付费偷看设置
发送
2条回答
天桥码农
1楼 · 2020-09-13 18:15.采纳回答

您可以在以下位置找到 Exporter (可通过导出脚本中的变量 impex 获得的类)的完整JavaDoc:

https://help.hybris .com/1808/api/commerce-suite/de/hybris/platform/impex/jalo/exp/Exporter.html

有多种重载方法可提取您要导出的项目

天桥码农
2楼-- · 2020-09-13 18:03

在该网址之后,您会找到 exportItems(java.lang.String查询,java.util.Map值,java.util.List resultClasses,boolean failOnUnknownFields,boolean dontNeedTotal,int开始 ,int count)从 ages

开始被弃用

似乎没有告诉脚本生成器团队!

如果您阅读了 exportItemsFlexibleSearch(java.lang.String query)的Javadoc,则会发现所使用的默认选项与脚本生成器中使用的默认选项相同,因此可以替换为

 "#%impex.exportItemsFlexibleSearch(""从{地址}选择{pk},其中{重复} ='假'"")""
  

一周热门 更多>