cancel
Showing results for 
Search instead for 
Did you mean: 

concatenate text and property of dimension in script logic

Former Member
0 Kudos

hello experts,

how to concatenate text and property of dimension in script logic?

as example:

dimension : interco

property    : mgmtallocdefcc

*WHEN TIME.YEAR

*IS %YEAR_VAR%

*REC(EXPRESSION=%VALUE%,ACCOUNT=12345,ENTITY="I_" [INTERCO],MGMTALLOCDEFCC)

*NEXT

then it will read all as text: I_[INTERCO].MGMTALLOCDEFCC

for example the value of property mgmtallocdefcc in interco dimension (INTERCO.MGMTALLOCDEFCC) is ABCDE.

what i expect is :I_ABCDE

thanks!

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Kudos

Hi Yoki,

Concatenation is only possible between text and variables %VAR% or $VAR$.

Like ENTITY=I_%SOMEVAR%

But in your case instead of concatenate you have to use other property like TARGETENTITY having valid ENTITY members:

ENTITY=INTERCO.TARGETENTITY

B.R. Vadim

Answers (0)