cancel
Showing results for 
Search instead for 
Did you mean: 

BCF Balance Carry-Forward CopyOpening and scoping

Former Member
0 Kudos

Dear Experts,

We are running on BPC NW10. We are using standard DM package and logic script + BCF business rules to run BCF process. Everything works fine but now we would like to create alternative BCF process for some group of accounts. We defined Business Rules for the alternative BCF process but the problem is when we run it at the same time other Business Rules, defined for our primary BCF process execute ( we do not want them to execute).

Thus my questions are:

Can we use scoping (*XDIM_MEMBERSET) in the logic script before *RUN_PROGRAM COPYOPENING (for instance for ACCOUNT dimension members) in order to restrict BCF process to selected account and thus restrict execution of the BCF Business Rules?

Any help much appreciated:)

Marek

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Kudos

Hi Marek,

Try the following:

*RUN_PROGRAM COPYOPENING

CATEGORY = %C_CATEGORY_SET%

CURRENCY = %GROUPS_SET%

TID_RA = %TIME_SET%

OTHER = [ACCOUNT=%ACCOUNT_SET%]

*ENDRUN_PROGRAM

Where ACCOUNT in the OTHER line is the real account dimension name.

Vadim