cancel
Showing results for 
Search instead for 
Did you mean: 

Concat member names in *REC statement

Former Member
0 Kudos

Hi Experts,

I am trying to generate a sql register with concatenated code.

e.g.

*REC(account=entity.id&category.id

If entity. id= company1 and category=actual

I would like to generate

account=company1actual

Is this possible to achieve something similar?

Regards

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member599120
Contributor
0 Kudos

Dear Pablo.Ausin,

I has combined some words with member dimension in *REC function likes:

 *REC(account= ABC + account.ID

Perhaps, you can change you case such as:

 *REE( account=entity.id + category.id) 

Kind Regards,

Wandi Sutandi

Edited by: wandi sutandi on Jan 20, 2011 6:07 AM

Former Member
0 Kudos

I have tried to do this, but BPC only translate the first code, so

Result:

COMPANY1+CATEGORY.ID

Regards

Former Member
0 Kudos

You may try...

*WHEN CATEGORY

*IS *

*REC( account=entity.id + %WHEN%)

*ENDWHEN