Hardcode value in column when loading CSV
Hello,
Im wondering if there is a way to hardcode a fieldtoken value when loading data from a csv. For example, I am using the below code:
Dim fieldTokens As New List(Of String)
fieldTokens.Add("xfText#:[Account]")
fieldTokens.Add("xfText#:[Entity]")
fieldTokens.Add("xfText#:[Amount]")
fieldTokens.Add("xfText#:[EmpID]") '<-- Want to hardcode this to '99999'
BRApi.Utilities.LoadCustomTableUsingDelimitedFile(si, .......)
But I want to hardcode the results of EmpID to value '99999' before I execute the 'LoadCustomTableUsingDelimitedFile' command.
Any help on this would be much appreciated!
