Link Using Concatenated Fields?

0
Hi – I’m trying to create a link to a folder on my PC, by concatenating a hard-coded root path with a user-defined folder name. Is it possible for me to create a link via concatenating a hard-coded text with a field?
asked
2 answers
0

If you’re trying to create a string with a fixed part and a part in a field from entity x then this can be achieved using a micro- or nanoflow with an input parameter of object x.

Then create a variable of type string and add something like this as the value:

‘my fixed part’+$x/field

The fixed part could be stored in a constant (say myfirstmodule.constant) then the varable value would be something like:

@myfirstmodule.constant + $x/field

Depending on what your needs are the string can be created as the return value of the microflow with the same variable values.

answered
0

Thanks – this thought did occur to me, thanks, just now!  Although it doesn’t seem to be working because it generates an error. I’m still trying to access the live logs to see what’s going on. NOTE: the same exact code works fine in local.

answered