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

Copy Comments with Measures

Former Member
0 Likes
469

Hello Experts,

We have a customer requirement to copy comments using Measures from YTD to Periodic. Now one option is to manually copy the comments from YTD and then manually enter comments for Periodic. Can we modify the BPC Package Script - Copy comments and add measures selections ?

Apart from this, do we have any other approach ?


BPC - CPMB810 SP08

BW - 740 SP13

EPM - SP26P3

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Likes

Not tested, but try:

PROMPT(COPYMOVEINPUT,%SELECTION%,%TOSELECTION%,"Select the members to COPY and where to",%DIMS%)
PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when copy comments.",1,{"Yes, check work status settings when copy comments","No, do not check work status settings"},{"1","0"})
TASK(/CPMB/COPY_COMMENTS,SELECTION,%SELECTION%|DIMENSION:MEASURES|YTD)
TASK(/CPMB/COPY_COMMENTS,TOSELECTION,%TOSELECTION%|DIMENSION:MEASURES|PERIODIC)
TASK(/CPMB/COPY_COMMENTS,CHECKLCK,%CHECKLCK%)

P.S. Tested - Not working!

Measures info is simply ignored. Looks like your have to write you own Custom logic badi based on Copy comment code to copy comments between measures.

Tested on BPC 10.1 BW 750 SP06

Former Member
0 Likes

Thanks, I was trying to avoid BADI but it looks BADI is the only way to go ahead.

Answers (0)