Check to see if an object (lookup table) exists
I am modifying a business rule that uses the entity name to search a similarly named (Entity_Acct_Description) table and return a value. I want to verify that the table exists before attempting the TransformText to prevent errors in the case of new entities or name changes. Is there a way to verify the named object exists before executing the code?
Else
Dim LookupTable As String = TEntity & "_Acct_Description"
''''IF Lookuptable exists do this''''
SAccountDesc = BRApi.Utilities.TransformText(si, SAccount, LookupTable, True)
