Automation Script: If FieldA = 1, then set FieldB to 'one'

前提是你 提交于 2019-12-02 18:29:51

问题


I'm trying to break down this problem into manageable parts: Maximo spatial query.


I think the first step is to create an automation script that does this:

  • Takes a value from a field
  • Does something with it
  • Returns a value to a different field

For example:

  1. Create a new work order
  2. Manually enter the WONUM as 1
  3. Save
  4. The action of saving automatically triggers an automation script
  5. The script checks to see if the WONUM = 1
  6. If true, then the DESCRIPTION is populated with the word one

How can I do this?

(Maximo 7.6.1.1)


回答1:


Use the below code to set the DESCRIPTION to one when WONUM is set to 1.

Launch Point Details:

  1. Launch Point Type: Object Launch Point
  2. Object: WORKORDER
  3. Event: Save
  4. Save: Add (Before Save)

Python Code:

from psdi.mbo import MboConstants
wonum = mbo.getString("WONUM")
if wonum == "1":
    mbo.setValue("DESCRIPTION","one",MboConstants.NOACCESSCHECK)

I hope this answers your question!



来源:https://stackoverflow.com/questions/57383279/automation-script-if-fielda-1-then-set-fieldb-to-one

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!