Comment Line contains "xyz" - then UDF=Y Script

SOLVED

Is it possible to search within the SO Detail "Comment" field for a particular word to post-write a check mark in a UDF field?

Parents Reply
  • +1 in reply to jland47
    verified answer

    If it is a header field, you can do it in either the post-write as stated above or in the pre-write as I showed above, and just use the header object instead of what I did above.

    instead of:

    rVal = oBusObj.SetValue("UDF_CheckBox$", "Y")

    use:

    rVal = oHeaderObj.SetValue("UDF_CheckBox$", "Y")

Children