on 2016 Jul 14 1:23 PM
Hello,
one question regarding account type in P&L Planning.
we calculate Revenues like Amount(EXP) * Price(EXP) = Revenue (INC)
20 * 3 = - 60 --> revenue Accounttype = INC,
for retraction to ERP I also want to retract - 60 (negativ Value) but ia TA LISTCUBE my planed revenues are stored +60. (in BPC EXCEL Frontend they are negativ (-60)
revenues account is INC.
now when I retract data to ECC, I have positiv revenues - but I need negative Revenues to be in line with SAP general logic. do you have a recommendation to solve this issue in a smart way?
Is there any recomandation or experience to solve this problem?
coding
*XDIM_MEMBERSET VERSION=%VERSION_SET%
*XDIM_MEMBERSET TIME=%TIME_SET%
*WHEN VERSION
*IS %VERSION_SET%
*WHEN TIME
*IS %TIME_SET%
*WHEN P_ACCOUNT
*IS 930000484100
*REC(EXPRESSION=%VALUE%*[P_ACCOUNT].[900000484100],P_ACCOUNT="10000000484100")
*ENDWHEN
*ENDWHEN
*ENDWHEN
*COMMIT
930000484100 = EXP (Amount)
900000484100 = EXP (price)
10000000484100 = INC (p&l revenues Account)
Request clarification before answering.
There is no issue, just you have to understand that revenue is NEGATIVE! And in BW it has to be stored as NEGATIVE!
Your script (launched by DM package) has to be:
...
*REC(EXPRESSION=-%VALUE%*[P_ACCOUNT].[900000484100],P_ACCOUNT="10000000484100")
...
-%VALUE%!!!
Vadim
P.S. Please don't use absolutely useless COMMIT!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 32 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.