Hello ! Is there any way to get a list of all the ...
# suitescript
j
Hello ! Is there any way to get a list of all the different ways a transaction status can be named? I'm trying to script a search which looks at only 'Built' work orders but there's so many different ways this can be referenced and I'm not having much luck.
d
Build it in the UI and export with one of the Chrome search export plugins. You probably want
Copy code
["type","anyof","WorkOrd"], 
      "AND", 
      ["status","anyof","WorkOrd:G"]
j
Was certain I'd already tried this but have done it again and now it works ! Thanks !