I could use some help in implementing a simple search page to search through the tickets and display the ticket and any associated history notes.
I have an API connection setup and am able to return data, however I am stuck on adding the history notes to the search as well. I am a novice with VB.net but have been tasked with this.
Again thanks in advance for any help.
My search is
accountSearch.AddCriteria(CommitCRM.Ticket.Fields. Description, CommitCRM.OperatorEnum.opLike, "%" & Ctxt.Value & "%")
I am assuming that I would want to create a custom sql script to be able to search in the account, ticket, and historynote tables at the same time and return, however I am not seeing a way to do this in the API documentation.
I have an API connection setup and am able to return data, however I am stuck on adding the history notes to the search as well. I am a novice with VB.net but have been tasked with this.
Again thanks in advance for any help.
My search is
accountSearch.AddCriteria(CommitCRM.Ticket.Fields. Description, CommitCRM.OperatorEnum.opLike, "%" & Ctxt.Value & "%")
I am assuming that I would want to create a custom sql script to be able to search in the account, ticket, and historynote tables at the same time and return, however I am not seeing a way to do this in the API documentation.
Comment