cancel
Showing results for 
Search instead for 
Did you mean: 

Copying Parent account value to another account

Former Member
0 Kudos

Hello Experts

I have a requirement in SAP BPC 7.5 NW where:

1. Source account - A310 is a Parent account with 4 level of hierarchy.

2. Destination account - A10601 is a base member

We want to copy the value of A310 to A10601.

[note: A310 is caluclated on the fly as it is a parent node.]

In BPC MS version we had "calc_dummy_org" to do the same.

Please suggest how to calculate the same.

Thanks

Abhishek

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Can you try something like:

*XDIM_MEMBERSET ACCOUNT = BAS(A310)

*WHEN ACCOUNT
*IS *
   *REC(ACCOUNT = A10610)
*ENDWHEN

Hope this helps.

Answers (2)

Answers (2)

Former Member
0 Kudos

thanks.

Solution achieved through two methods:

1. BAS(Account)

2. Dimlist property

Former Member
0 Kudos

Hi,

Use Account transformation business rule by specifying source and target accounts.

Former Member
0 Kudos

Try to give all the children of 310 a value in the dimlist property and include them into the account.

krishna_priya1
Contributor
0 Kudos

Use tuple expression . we had similar requirement to copy parent into base member .Below code works in 7.5 NW


*XDIM_MEMBERSET ACCOUNT = A10601
 *WHEN_REF_DATA = MASTER_DATA
*WHEN ACCOUNT
*IS A10601
   *REC(EXPRESSION  = [ACCOUNT].[A310] )
*ENDWHEN