Skip to main content
I have a couple of published parameters param1, and param2 and a private param (param3) which is concatenated from the published parameter :  $(param1)-$(param2)

 

 

if param1 is A

 

and param2 is B

 

I'm expecting param3 to be A-B

 

 

instead, in the python shutdown script

 

fme.macroValuesr'param3'] returns A-$(param2)

 

 

any ideas on how to get it to fully resolved.
Hi,

 

 

I'm not sure the reason that such unexpected result occurs, but this code could be used as a workaround for the interim.

 

-----

 

value = '$(param3)'

 

-----

 

Tested with FME 2015.1.0.2.

 

 

Takashi
Hi

 

 

can you show us the exact content (Python code) for the "param3" scripted parameter? Maybe screen capture?

 

 

David
Hi Takashi, That workaround did the trick. Thank you.

Reply