Reading Table
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-10-17 01:41 AM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-10-17 12:11 PM
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 🙂
