copyDataByPointOfView
Copies data from a source POV in a cube to a destination POV in the same or another Enterprise Profitability and Cost Management cube.
Applies to
Enterprise Profitability and Cost ManagementRequired Roles
Service AdministratorUsage
epmAutomate copyDataByPointOfView SOURCE_POV_NAME TARGET_POV_NAME copyType=ALL_DATA|INPUT SOURCE_CUBE_NAME TARGET_CUBE_NAME [PARAMETER=VALUE] where:
SOURCE_POV_NAMEis the name of the source POV from which data is to be copied.TARGET_POV_NAMEis the name of a valid target POV to which the data from the source is to be copied.copyTypeidentifies the data to be copied from the source POV. Valid values are:ALL_DATAto copy all input and calculated data to the destination POV.INPUTto copy all input data, including driver data, to the destination POV.
SOURCE_CUBE_NAMEis the name of the cube that contains the source POV.TARGET_CUBE_NAMEis the name of the cube that contains the target POV.PARAMETER=VALUEindicates optional runtime parameters and their values. Specify as many parameter and value pairings as the process requires. Valid parameters and their values:povDelimiter, optionally, is the delimiter used in POV values. Default is::(double Colon). This value must be enclosed in double quotation marks. Example:povDelimiter="_".Other than the default, only these delimiters are supported: _ (under score), # (hash), ~ (tilde), % (percentage), ; (semicolon), : (colon), - (dash).
createDestPOV=true|falsespecifies whether to create the target POV if it does not exist. Default isfalse. You must set this parameter value totrueif the destination POV does not exist.
Examples
- Copy all data to a different POV in the same cube:
epmAutomate copyDataByPointOfView FY21_Jan_Actual_Working FY22_Jan_Actual_Working ALL_DATA PCM_CLC PCM_CLC povDelimiter="_" createDestPOV=true - Copy all data to a different POV in a different cube:
epmAutomate copyDataByPointOfView FY21_Jan_Actual_Working FY22_Jan_Actual_Working ALL_DATA PCM_CLC PCM_REP povDelimiter="_" createDestPOV=true - Copy input data to a different POV in the same cube:
epmAutomate copyDataByPointOfView FY21_Jan_Actual_Working FY22_Jan_Actual_Working INPUT PCM_CLC PCM_CLC povDelimiter="_" createDestPOV=true - Copy input data to a different POV in a different cube:
epmAutomate copyDataByPointOfView FY21_Jan_Actual_Working FY22_Jan_Actual_Working INPUT PCM_CLC PCM_REP povDelimiter="_" createDestPOV=true