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

Can you customize the SAP BPC Package Summary Dialog Box (right before clicking Finish Button)

roslyn_rosalia3
Explorer
0 Likes
641

Hi! Is there a way to customize the summary screen for BPC Packages? Like in the below screenshot for Append Package, can I add custom text like which file the user selected to upload? I have tried researching this but did not come up with anything.

Would greatly appreciate advise, thanks!

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Likes

Unfortunately you can't have 3 time periods in the summary window - it's by design... No way!

roslyn_rosalia3
Explorer
0 Likes

Gotcha, okay, thanks for confirming!

Many thanks,

Roslyn

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Likes

Not clear! Please provide advanced script of the DM package.

roslyn_rosalia3
Explorer
0 Likes

Hi Vadim --- below is the package script. Basically I have created three separate SELECTINPUT variables for TIME Dimension so that I can get three separate TIME Base members for my ABAP Program to calculate the required data set. With the below script, the BPC package only shows the END Period selection in the BPC Package summary window (the package screen right where you hit the Finish button).

Is there a way I can add all the other parameters (Time Zero and Start Period) to the BPC Package summary window?

'Time Zero Selection
PROMPT(SELECTINPUT,%SELECTIONTZERO%,, "Select TIME ZERO", "%TIME_DIM%",,)
'Forecast START Period
PROMPT(SELECTINPUT,%SELECTIONPSTART%,, "Select START PERIOD", "%TIME_DIM%",,)
'Forecast END Period
PROMPT(SELECTINPUT,%SELECTIONPEND%,, "Select END PERIOD", "%TIME_DIM%",,)