I'm trying to break down this problem into manageable parts: Spatial query.
I think the first step is to create an automation script that does this:
For example:
WONUM
as 1
WONUM = 1
DESCRIPTION
is populated with the word one
How can I do this?
(Maximo 7.6.1.1)
Use the below code to set the DESCRIPTION
to one when WONUM
is set to 1.
Launch Point Details:
WORKORDER
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!