Hello, I have a requirement where I need to apply fill color from formatting sheet. If I select all under use, it works but I need to find an option in use list that lets me apply just fill color. I cant really find it. any suggestions?thanks.
Fill color using EPMFormattingsheet
Dimension Member Formula
Hello Friends,
I have created a dimension formula on account dimension.
The formula is very simple. I have 2 nodes in account dimensions, Revenue and Expenses.
I have created a dummy Account - Profit.
Profit = IIF([REVENUE]=0,0,([REVENUE]-[EXPENSE])/[REVENUE])
the calculation does not give me correct results, though its not throwing me any errors.
However if I just do [REVENUE]-[EXPENSE] = calculation looks good.
If I change it to [REVENUE]-[EXPENSE]/100 - calculation looks good.
There is something in the division which is not working if I use account nodes.
Thanks
Ed.
Is STRTOVALUE Working in BW 7.4 SP12 and Greater?
From a different discussion I learned that the old MDX function STRTOVALUE has been added in BW 7.4 SP12.
We recently upgraded to BW 7.4 SP 14 at one of my clients. I have a requirement to implement a custom measure 'AVGYTD'. From SE37 BAPI_MDPROVIDER_GET_FUNCTIONS does list STRTOVALUE, however when I try to use it in the most straightforward way I can think of it won't save and I get an MDX error.
Here is my first attempt, which saves ok (syntactically OK) but is not correct because it just sums up the relevant periods but does not divide by the number of periods:
'IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%],[%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA])/(3),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA])/(3),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA])/(3),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA])/(3),-[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
If I change the first expression (for ACCTYPE = "INC") to add "/ (STRTOVALUE("3")) as shown here I get an error:
'IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%],[%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA])/(STRTOVALUE("3")),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA])/(3),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA])/(3),IIF([%ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",SUM(PERIODSTODATE([%TIME%].[%TIMEYEARLEVEL%], [%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA])/(3),-[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
Of course dividing by hardcoded 3 is not correct; I was just trying to figure out if STRTOVALUE is even working. Initially I was trying STRTOVALUE on the MONTHNUM property.
Can you see what I am doing wrong here? Has anyone successfully used STRTOVALUE on SP12 or greater?
Thank you,
Paul Petersen
Lookup issue
Hi Guys,
I'm having one issue with Lookup function in Script Logic
Let's say I have a MODEL: HR_AUX
where I have one fixed values for KPI8 and KPI 9
LOOKUP HR_AUX
*DIM TIME = "2016.INP"
*DIM CATEGORY = "Forecast"
*DIM VALUEX:HR_ACCOUNT = KPI_8
*DIM VALUEY:HR_ACCOUNT = KPI_9
*DIM ENTITY = "XPTO"
*DIM RPTCURRENCY = "LC"
*FOR %LOOP_ZCOUNTRY% = %ZCOUNTRY%
*DIM Z_COUNTRY = %LOOP_ZCOUNTRY%
*NEXT
*FOR %LOOP_ZNATION% = %ZNATION%
*DIM Z_NATION = %LOOP_ZNATION%
*NEXT
*DIM MEASURES = "PERIODIC"
*ENDLOOKUP
*XDIM_MEMBERSET ENTITY= XPTO
*XDIM_MEMBERSET CATEGORY = Forecast
*XDIM_MEMBERSET TIME = 2016.INP
*XDIM_MEMBERSET AUDITTRAIL = InputHR
*XDIM_MEMBERSET EMPLOYEE = %EMPLOYEE_SET%
*XDIM_FILTER EMPLOYEE = [EMPLOYEE].Properties("NEW_EMP") = X
*WHEN HR_ACCOUNT
*IS KPI_1
*REC(EXPRESSION = 1 * LOOKUP(VALUEX), HR_ACCOUNT = KPI_8)
*REC(EXPRESSION = 1 * LOOKUP(VALUEY), HR_ACCOUNT = KPI_9)
*ENDWHEN
The issue here is
in my input template when I put something input in KPI_1 for respective employee
it is filling only the KPI_9 with 10.000
and the KPI_8 it is not filling cumming blank
the problem here is:
*DIM VALUEX:HR_ACCOUNT = KPI_8
*DIM VALUEY:HR_ACCOUNT = KPI_9
is something here I'm doing wrong, but, I don't know what.
thanks.
Regards,
Hide Summation in template
Hi,
I want to hide the values where Hierarchy member is a node for a specific account
for example:
Product, Qty, Price, Value
ProductGRP A, 35, 20, 3500
-- Product 1, 15, 10, 1500
-- Product 2, 20, 10, 2000
ProductGRP B, 20, 35, 2500
-- Product3, 10,10, 1000
-- Product4, 10,15, 1500
Assume that Qty and Price Are input for user and this is a hierarchy
How can I hide from
ProductGRPA the 35 and 20
and ProductGRP B the 20, 35?
Thanks.
Regards,
Remove Zero values in Input Template
Hi All,
I have a requirement for an input schedule in BPC 10, now I need to remove Zeros in Input schedule. I have enabled "remove empty" option in Report Editor.But Still Zero values appear in input form. Please help me to achieve this issue
BPC 7.5.18 Packages taking a long time to execute after upgrade to BI 7.4
Our Master Data on the fly packages used to take 2 minutes.
After the upgrade to BI 7.4 they are taking 90 minutes.
Same with processing the dimension affected.
Has anyone out there experienced the same ?
Cannot load 0COSTCENTER hierarchy
Hello experts,
(This error is happening in our QA environment, but DEV environment works OK. Both systems are on the same components level)
We're facing an issue trying to load one of our hierarchies into BPC from BW. We're loading 0COSTCENTER data, we've 2 CO_AREA, with 2 hierarchies (one for each CO_AREA) as is shown here:
For the 2nd hierarchy (CO_AREA GEBI), we can load master data and hierarchy nodes correctly, but when we try to load master data + hierarchy nodes for the first CO_AREA (EEB), the system shows the following BPC warning:
In the /CPMB/IMPORT_IOBJ_MASTER package, we're passing correctly the parameters as is shown:
Transformation and Conversion files are OK, since second CO_AREA works and even if I pass an empty transformation, the same error shows immediately (less than a second every time we try).
We've also tried to pass the top hierarchy node to Member ID parameter, 99 in the Level parameter, everything, but same result.
Our system components in both environments are:
We've tried using EPM Client SP22 and SP24, same result.
Any suggestions? Any help is highly appreciated.
Thanks in advance!
Display report based on category context change
Hi All,
I have a requirement where records will be fetched and shown in report based on category selected from context which will be matched with some date. For example . If I choose Category= Plan then this will be matched with date i.e. 1/8/2015(dd/mm/yyyy).If I choose Category= Forecast1 then Date will be 1/4/2016. Assuming we are in August 2015 and Planning for 2016.
In my report in row axis two dimensions are there Employee and Cost Center and in column axis HR Account, There is two main field in HR Account is START DATE and END DATE. So when ever user select category plan from context only End date starting from August and August onwards will be only shown in report, if user select Forecast1 then report shown from April and April onwards.
Thanks
Mayur
EPM 10.1 QTD and YTD issue
Hi all,
I am receiving an issue when we are running any reports on any other measure apart from Periodic, lets say QTD or YTD, we are getting an error.
One or more errors occurred.
The execution of report Default Report failed. Please contact your administrator.
Bad request.
Server message:
code: UJO_READ_EXCEPTION_018
severity: error
description: MDX statement error: Value 2016.JAN 0HIER_NODE for characteristic /CPMB/WPDKBDQ unknown
log id: 051Mb53H7jMzxR5rdt{t7m
DATAVALUE:Value 2016.JAN 0HIER_NODE for characteristic /CPMB/WPDKBDQ unknown
MDX: SELECT NON EMPTY {[/CPMB/WPDGKQH].[1201] } ON 0 from [$/CPMB/WPMRH9H] WHERE ( [Measures].[/CPMB/SDATA] ,[/CPMB/WPDI6M9 PARENTH1].[NETINCOME /CPMB/WPDI6M9] ,[/CPMB/WPDCR84 PARENTH1].[ALL_CC /CPMB/WPDCR84] ,[/CPMB/WPD0JJC PARENTH1].[TOTALDATASRC /CPMB/WPD0JJC] ,[/CPMB/WPDE09U PARENTH1].[ALL_FA /CPMB/WPDE09U] ,[/CPMB/WPDJ0WM PARENTH1].[ALL_GAME /CPMB/WPDJ0WM] ,[/CPMB/WPDPHX5 PARENTH1].[LOCAL /CPMB/WPDPHX5] ,[/CPMB/WPD0T6Z PARENTH2].[Plan /CPMB/WPD0T6Z] ,[/CPMB/WPDOSEH PARENTH1].[ALL_PROD /CPMB/WPDOSEH] ,[/CPMB/WPDW8B0 PARENTH1].[ALL_PROJ /CPMB/WPDW8B0] ,[/CPMB/WPDBGH3 PARENTH1].[REV2] ,[/CPMB/WPDKBDQ QTD_PARENTH1].[2016.JAN 0HIER_NODE] )
V1:Value 2016.JAN 0HIER_NODE for characteristic /CPMB
V2:/WPDKBDQ unknown
V3:
V4:
-----------------
Framework message:
The remote server returned an error: (400) Bad Request.
The remote server returned an error: (400) Bad Request.
The TIME dimension in the Backend has 3 level structure.
Any changes or settings that we are missing on? Your help will be greatly appreciated.
Thanks,
Abhishek
SAP BPC 10/10.1 BPF email notification
Dear All,
I've got a question.
I seen many forums, but, still did not get the simple answer.
1. It is possible in BPF once I submit the Plan to approver, and the approver recieve an email with notification and when the plan is rejected by the approver its send a notification to that specific owner?
2. For implement the Point number 1, the workstatus using the workstatus is mandatory?
Thanks.
Regards,
work status owner dimension in embedded BPC
Since owner property and team property are the required property for owner dimension, while the dimensions in embedded BPC are come from BW, anybody know which infobject under infocube /ERP/SFIN_R01 we can use as the owner dimension in Embedded BPC? if not, do we have to customize an infobject by adding the owner property and team property to satisfy the work status owner dimension property requirement?
BPC Task Profile & Data Access Profile Tables in SAP
Hi
I'm trying to compile Task Profile and Data Access Profile into an Excel Spreadsheet
Does anyone knows how to extract it from SAP tables via transaction SE16? The table name should start with UJ.... I think.
It's kind of time consuming to go through each one in BPC web and document it down... so I thought via SE16 is much more faster.
Member Formula to calculate average price
I need some help with member formulas. We are fairly new to BPC and are currently set up on 10.0. We've barely utilized member formulas and I'm hoping to get a little guidance.
In this scenario we're looking to apply a formula to the account dimension taking Revenue/Units. The current set up I have works at the base member level and a roll up level for business unit (after I turned on Calculate Parents in Hierarchy), but if I try to select multiple entities, the calculation returns a sum. Please advise how I can get this to apply for any cross section or if it's better to apply local members for something like this.
Save data option Disabled in EPM
EPM not working correctly in Windows 8 (Dialog box issue)
Hi all,
I'm using Windows 8 and using Microsoft Office 2016 64-bit.
I installed EPM Add-in for Microsoft Office Version 10.0 SP 25 .NET 4 Build 9456.
When I open the "Save report to server root folder", and attempt to delete one of the sub folders, the pop up screen "Are you sure to delete the folder" did not appear on top of the folder screen, It was hidden behind the Excel. and I couldn't click on the pop up screen to confirm Yes or No.
I downgraded my Microsoft Office to Microsoft Office 2013 64-bit and also to 32-bit as well, but the problem remains the same.
Attached is a screen shot of the pop-up which is hidden behind Excel. Does anyone knows what the issue is? Thank you.
Budget Distribution Monthly
Currently we are doing budgeting across the various cost elements for 2016-17.I have Input template, where Business User enters the total budget amount in PROPOSED BUDGET 2016-17 for the corresponding COST_ELEMENT.Whenever user saved the data from Input Template, Proposed budget value should be distributed equally across BUDGET April 2016 to Mar 2017.
I have written Logic Script in the DEFAULT.LGF file, which does not meets the above requirement.Please help me to solve this issue.
Connection to web as well as EPM stuck at "Connection in progress"
Hello experts,
We are facing issues while log in BPC from web as well as from EPM. Below are the screenshots from EPM where exactly it gets stuck.
Is there anything specific which we should check from server or http connection level to resolve the issue.
We have done a restart which resolves the issues it is not practical to restart everytime.
Thanks,
Dolly Katyal
(New to EPM) Need to select multiple members of 1 dimension in EPM Retrieve report
Hello,
I have taught myself how to create custom reports using a combination of EPM Retrieves and VBA but I am not very good at it yet. Thanks in advance for your help.
I want to create a report which sums multiple members in a dimension, similar to the "Allow Multi-Selection" functionality on the Page Axis within BPC.
See Screenshot (attached). In Cell c10, I have only one member specified in the "Camp" dimension. I want to be able to specify multiple members, so that the report retrieves the sum of all the members' account activity.
My only alternative is to generate multiple worksheets, one with each member, then sum them together, but I want to avoid this if at all possible. It seems to me that if it can done within BPC's report editor, it should be possible with an EPM Formula or at least with VBA.
Thanks,
/Lisa
UJE_VERIFY_SECURITY_DATA program
Hello,
I am testing the security model of our BPC 10.0 solution and I came to the conclusion that each time I move a user from one team to another or if I change his assignment from one data access profile to another in the web client, the new authorizations only apply after I run the UJE_VERIFY_SECURITY_DATA program.
Is this standard behavior of the program ?
I also always get an error message for each user when running the program (even those that I did dot change): "User assignment has error. This may due to malfunction of NW role API.
Thanks in advance for your help and best regards
Thomas