cancel
Showing results for 
Search instead for 
Did you mean: 

BPC Transformation File

0 Kudos
267

Hi All,

Question 1:

How do we change *NEWCOL keyword to accommodate multiple categories for below like Actual, Plan

Transformation file :


*MAPPING

MM_ACCOUNT=BACM_MM

CATEGORY=*NEWCOL(ACTUAL)

...

...

*CONVERSION

Question 2:

How do we change *STR keyword to accommodate multiple categories for below like Actual, Plan

Transformation file :

*MAPPING

MM_ACCOUNT=BACM_MM

CATEGORY=*STR(ACTUAL)

...

...

*CONVERSION


Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186338
Active Contributor
0 Kudos

Each record from BW can be loaded to ONLY one record in BPC model! You can't generate 2 records (ACTUAL and PLAN) from single record.

But to my mind it's a bad idea to load from BW to 2 categories.

Load to ACTUAL and copy loaded data using BPC copy or script logic to PLAN.

In this case you will be sure that data is identical in both categories.

former_member186338
Active Contributor
0 Kudos

If you are loading from text file then have CATEGORY column in the text file filled with ACTUAL or PLAN and use:

CATEGORY=CATEGORY

0 Kudos

i am loading from BW infoprovider that do not have CATEGORY.

so in transformation file we want to assign category = ACTUAL and PLAN and load the dataset to both actual and plan.