cancel
Showing results for 
Search instead for 
Did you mean: 

Reading Table

Anonymous
Not applicable
I am reading a table that produces an initial blank Column1. After the read action I'm using an action to delete that column; which one of the outputs for that action is a success flag. My issue is that success flag is coming back as False every time even though the action is completing as needed. Anyone encounter this or have a fix?
1 REPLY 1

Anonymous
Not applicable
Hi dsmith616, (make copy of VBO 1st ) update code stage in Delete column action to- Try BP_Collection_Out = BP_Collection_In BP_Collection_Out.Columns.Remove(Column_Name) Success=True Error_Message="""" Catch e as Exception Success=False Error_Message=e.Message End Try hope this helps 🙂