We have been working on adding script logic to calculate some of our KPI's and I would like to be able to select our Productline within the promot of the data manager package but I can't figure out what I need to update within the data manager package to allow this as part of the prompt selection.
Currently this is our script with PRODUCTLINE as part of the script:
*XDIM_MEMBERSET ACCOUNT = BAS(REV_SUB_MNTHLY),BAS(REV_SUB_ANNUAL),BAS(REV_SUB_METERED),BAS(REV_SUB_MULTI)
*XDIM_MEMBERSET AUDITTRAIL= INPUT
*XDIM_MEMBERSET COMPANY= C_100
*XDIM_MEMBERSET COSTCENTER=CC_299_0
*XDIM_MEMBERSET FLOW=NOFLOW
*XDIM_MEMBERSET INTERCO=NON_INTERCO
*XDIM_MEMBERSET PARTNERCC= BAS(PCC_TOT)
*XDIM_MEMBERSET PRODUCTLINE=BAS(SSB)
*XDIM_MEMBERSET RPTCURRENCY=LC
*XDIM_MEMBERSET MEASURES=PERIODIC
*WHEN ACCOUNT
*IS BAS(REV_SUB_MNTHLY),BAS(REV_SUB_ANNUAL),BAS(REV_SUB_METERED),BAS(REV_SUB_MULTI)
*REC(FACTOR=12,ACCOUNT="STAT_10160")
*ENDWHEN
*COMMIT
Prompt selection of data manager package, in attachments.
I figured out where I can add ENTITY(our COMPANY dimension) to the package selection so I can remove that from our script above but can anyone point me in the right direction for adding a selection for our PRODUCTLINE? We want this package to be able to run based on different selections and sometimes we might not need to update for all products. Since this is a User Defined dimension I didn't know if %DIMS% needed to be used so that is why you currently see that selection within the screen shot.