Sorry if i didn't explain correctly,
In order to check yconsolinfo document you should enter in PAS use exclusive the Model you created, inside the are several objects: Measure, Dimensions , Attributes, Procedures, reports, documents, logic, etc. inside documents should be a document named ConsolInfo. There is where you can change how a var is consolidated, the syntax is like the example i give you:
var1,calcavg_pmdb.pro,INPUT
var1,consvar_pmdb.pro,INPUT
the bold part, is a external procedure that is already created, if you want to consolidate and average from explame ratio use calcavg_pmdb.pro, if you want to consolidate as a sum use consvar_pmdb.pro
In our specific case we created some manual KPI filled via data entry. They weren't on this document so we added them and it worked
please check Can a target value for KPI calculation be loaded at the Result level in SSM, there is a detailed explanation.
Another way that Oslo works for us was to use the custom procedure of the WFMDE_SETUP.PRO if i remeber it's job 'custom_modelname.pro. in the model you can create this procedure with consolidation commands for example :
checkpoint freeze
set var * conso
sel var *
consolidate
checkpoint update
every time people data entry load model procedure runs the data will be consolidated
Hope this help
Best Regards.