cancel
Showing results for 
Search instead for 
Did you mean: 

question on conditional *REC statement

Former Member
0 Kudos

Hi,

I have used conditional *REC statements like *REC(EXPRESSION=(%VALUE%<) ? c:d) before. My question is, can I use = or <> instead of < or >?

Thanks,

Arnold

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Kudos

In BPC 10 you can use

(%VALUE%==a) ? c : d

<> is not supported but "==" is enough

Vadim

former_member186338
Active Contributor
0 Kudos

If I remember correctly the note was: http://service.sap.com/sap/support/notes/1745948

Former Member
0 Kudos

Thanks Vadim, I didn't try with ==, I just tried = and that did not work. I only asked for <> in case = didn't work, basically I just need one of the two.

former_member186338
Active Contributor
0 Kudos

"==" is coming from JavaScript

Answers (0)