Question

trouble parsing int to text value

I got a webservice. Now the webservice wants an INT value in the field, but in Creatio only a Text value is there to match it. So i want to parse it with int32.parse([#intvalue]) but getting error while it tries to do that

Like 0

Like

3 comments

Hi Michael,



Could you please specify, which error did you got? 



Have you tried to create a separate INT column and copy everything from the string column there and use a separate INT column?



Best regards,

Bogdan

Bogdan,

i got 

System.InvalidOperationException not able to calculate expression. int32.parse([IsOwnerScheme:false])

 

Michael Poreber,

You need to use either:

Int32.Parse() --> Note uppercase I in Int32 and uppercase P in Parse

Or

int.Parse() --> Note lowercase i in int and uppercase P in Parse

Ryan

Show all comments