Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Data.SqlClient
Imports System.Text
Imports Laserfiche.RepositoryAccess
Imports LFSO90Lib
Imports Microsoft.VisualBasic
Namespace WorkflowActivity.Scripting.SDKScript
'''<summary>
'''Provides one or more methods that can be run when the workflow scripting activity is performed.
'''</summary>
Public Class Script1
Inherits RAScriptClass91
'''<summary>
'''This method is run when the activity is performed.
'''</summary>
Protected Overrides Sub Execute()
MsgBox("1")
SetTokenValue("ValidGLCoding", False)
Dim Doc As LFDocument = me.Entry
'Get the collection of fields for the doc
Dim FD As ILFFieldData = Doc.FieldData
Dim SqlId as String = string.Empty
MsgBox(FD.Field("GLCoding").ToString)
SqlId = FD.Field("SqlId").ToString()
causes error
Error 1 'Entry' is not a member of 'WorkflowActivity.Scripting.SDKScript.Script1'. \SDKScript\Script 1.vb 24 Workflow 2
me.Entry needs to be replace with ???? to work now in LFSO90Lib