on ‎2016 Aug 12 11:41 AM
Hi Experts,
I am creating a transformation to map BPC master data with BW cube.
In transformation file, one of the condition for WBS coloumn is:
WBS=*IF(GL(1:5)=*STR(10104) then Assignment;WBS)
In above condition my additional requirement is that if both WBS and Assignment columns are blank (Having no values) then it needs to hard code as "NO_WBS".
Please suggest a way to incorporate this requirement in transformation file.
Thanks,
Karan
Request clarification before answering.
Like this:
WBS=*IF(Assignment+WBS=*str() then *str(NO_WBS);GL(1:5)=*STR(10104) then Assignment;WBS)
Vadim
P.S. Data Transformation Maintenance - SAP BusinessObjects Planning and Consolidation - SAP Library
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Karan, tried using conversion file for this?
Regards,
JP
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
refer this thread....BPC Transformations - IF Condition | SCN
try with: WBS=*IF(GL(1:5)=*STR(10104) then Assignment; Assignment+WBS = STR() then STR(NO_WBS);WBS)
Not tested in sytem.....but try with you...
Regards,
JP
| User | Count |
|---|---|
| 40 | |
| 9 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.