NetSuite - 通过 SOAP/WS 获取部门、类别、货币的内部 ID
请告诉我,如果我没有通过网络服务获得内部 ID,有没有办法获取部门、费用类别或货币的内部 ID?
please tell me that there is a way to get the internal ID of a department, expense category or currency if I do not have the internalID via a webservice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看记录时,您可以在 NetSuite 中查看内部 ID。您还可以通过网络服务搜索来查找特定记录,然后找到内部 ID。如果简单搜索中找不到该记录,您可以在 NetSuite 内创建已保存的搜索来提取信息,然后通过 Web 服务查询已保存的搜索。
Department 使用 DepartmentSearch 类
费用类别使用 ExpenseCategorySearch 类
货币没有搜索类,因此您必须使用我建议的替代方法。
You can view the internal id's in NetSuite when looking at the record. You can also search via webservices to find the specific record and then find the internal id. If the record is not available in a simple search you can create a saved search inside of NetSuite to pull the information and then query the saved search via web services.
Department uses the DepartmentSearch class
Expense Category uses ExpenseCategorySearch class
Currency doesn't have a search class so you will have to use the alternative methods I suggested.