Skip to main content
January 26, 2023
Question

concat and cast problem

  • January 26, 2023
  • 2 replies
  • 0 views

Hi All,

I have this cast function

 

cast(
'type!{urn:com:appian:types:TLT}TLT_VEHICLEDETAIL?list',
  ri!data
  )

and I'd like to change TLT_VEHICLEDETAIL with a dynamic input using ri!inType.

I thought to fix this problem with concat function ex.  but it doesn't work.

and my result was this one   

who can help me?

2 replies

stefanhelzle0001
January 26, 2023
mikes0011
Brainy
January 26, 2023

Maybe just try

cast(
  typeof({ri!inType}),
  ri!data
)

?