cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Logic to run Account Transformaion Rule

Former Member
0 Likes
151

Hi,

I have built logic for running account transformation logic. Logic is below. Before I share the logic, I want to mention the dimension being used in logic and is part of the application. SCENARIOS (Category Dimension), COMPANY_CODE (Entity)

*RUN_PROGRAM CALC_ACCOUNT

SCENARIOS = %SCENARIOS_SET%

CURRENCY = %RPTCURRENCY_SET%

TID_RA = %TIME_SET%

COMPANY_CODE = %COMPANY_CODE_SET%

CALC = CF

*ENDRUN_PROGRAM

I am confused about uses of entity dimension and category dimension in case of their different names (such as in my case I have given category dimension as SCENARIOS and entity as COMPANY_CODE) in application. Is it right or do I need to mention CATEGORY = %SCENARIOS_SET% and ENTITY=%COMPANY_CODE_SET%. Because If I use this option CATEGORY = %SCENARIOS_SET% and ENTITY = %COMPANY_CODE_SET%, it give me 0 Submitted, 0 Success, 0Failes.

Regards,

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Likes

Something like:

*RUN_PROGRAM CALC_ACCOUNT

CATEGORY = %SCENARIOS_SET%

CURRENCY = %RPTCURRENCY_SET%

TID_RA = %TIME_SET%

CALC=CF

OTHER = [COMPANY_CODE = %COMPANY_CODE_SET%]

*ENDRUN_PROGRAM

Vadim

Former Member
0 Likes

This worked fine... Thanks Vadim..

Answers (0)