Dear Vadim
thanks for prompt reply.
Does the process chain Default_formulas alter any data apart from calculations mentioned in script?
The allocation chain failed because i have removed prompt..
I have selected Default_formulas chain now and placed the script . its executing now. Does this process chain alter data?
Here is the script... When i execute this script in UJKT, it ran for 5hrs. Will it be same time if i run thru this DMP? if so, can i assume its normal or any issues with BADI,. Badi worked well earlier but this script logic was there in default logic. But i want to run from DMP.
Please advise. here is the script.
I am not scoping Business unit dimension, hope by default it will take all bas members.
Secondly, does BADI takes from scope in script or from input template? because this logic was placed in default logic earlier which consumed several minutes when user refreshed input template.
//Delete values from Reporting AudiTrail
*XDIM_MEMBERSET TIME=BAS(CALCTIME)
*XDIM_MEMBERSET AUDITTRAIL=C_REPORTING_YTD, C_REPORTING_QTD
*XDIM_MEMBERSET UOM_REPORTING=BASE
*XDIM_MEMBERSET PR_ACCOUNT = <ALL> //all base members without member formulas
*XDIM_FILTER CATEGORY = [CATEGORY].PROPERTIES("NO_INPUT") = "N" //select categories open for inputs
*WHEN PR_ACCOUNT
*IS *
*REC(FACTOR = 0)
*ENDWHEN
*COMMIT
//Data selection Reporting
*XDIM_MEMBERSET TIME=BAS(CALCTIME)
*XDIM_MEMBERSET AUDITTRAIL=C_MANUAL
*XDIM_MEMBERSET UOM_REPORTING=BASE
*XDIM_MEMBERSET PR_ACCOUNT = <ALL> //all base members without member formulas
*XDIM_FILTER CATEGORY = [CATEGORY].PROPERTIES("NO_INPUT") = "N" //select categories open for inputs
//insert BADI
*START_BADI AVERAGES_CALC
//[{parameter_name}={value}]
//...
*END_BADI