如何使用订单项作为NetSuite工作流程的条件
是否有一种可能从交易中使用线路项目自定义字段的方法>采购订单类型是触发NetSuite工作流程的条件?
例如:如果我有采购订单,并且在将订单项目/项目更新为“是”的“是”“导出”的“是”,我想向特定人员发送电子邮件确认。但是,当我添加条件时,似乎找不到线条定制字段。
非常感谢!
Is there a possible way to use a line-item custom field from a Transaction > Purchase Order type as a condition to trigger a Netsuite workflow?
For example: if I have a Purchase Order, and after a line item/items is updated to "Yes" of a custom field "Exported", I want to send an email confirmation to a specific person. However, the line-item custom field does not seem to be found when I add the condition.
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以随时使用脚本(USEREFENT)来避免不必要的复杂性,而不是工作流程。
您可以使用
email.send()
api来自n/email
模块。在脚本中,您可以使用
context.oldrecord
和context.newrecord
来编写逻辑以查找更新的复选框。让我知道您是否需要以下评论中的任何其他信息。
Instead of a workflow, you can always go for a script (UserEvent) to avoid unwanted complexity.
You can use
email.send()
API fromN/email
module.In the script, you can write the logic to find updated checkboxes by using
context.oldRecord
andcontext.newRecord
.Let me know if you need any additional information in comments below.