Hi.
How can I insert a specific field in the integration manager for this code?.
Example:
Command.Parameters.Append(Command.CreateParameter("@PropertyValue", 200,1, 133, "integration manager field"))
set connectionPuma = CreateObject("ADODB.Connection")
set command = CreateObject("ADODB.Command")
connectionPuma.ConnectionString = "Provider=SQLOLEDB.1;Password=123456;Persist Security Info=True;User ID=test;Initial Catalog=Development;Data Source=gemini"
connectionPuma.Open()
command.ActiveConnection = connectionPuma
command.CommandText = "sp_InsertarFacturaMagaya"
command.CommandType = 4
Command.Parameters.Append(Command.CreateParameter("@ObjectType", 200, 1,31, "SOP"))
Command.Parameters.Append(Command.CreateParameter("@ObjectID", 200, 1,61,SourceFileds("Type.invoice")))
Command.Parameters.Append(Command.CreateParameter("@PropertyName", 200,1, 31, "GUID"))
Command.Parameters.Append(Command.CreateParameter("@PropertyValue", 200,1, 133, "TESTING"))
command.Execute()
connectionPuma.Close
*This post is locked for comments