on 2015 May 24 12:33 PM
Hi,
When I am loading Master Data from BW to BPC, I am facing problem because of Invalid Character in Parent Nodes like '/'.
Ex: INT 1042021/21(it is a parent node).
I want only 1042021 as a ID in my Dimension.
I tried to maintain Conversation File as below:
Internal External
* js:%external%.replace("/","")
*/* js:%external%.toString().replace("/","")
Tried replacing Internal with /*,/ but did not work out.
These parent nodes are of variable length.
Please suggest a solution for this.
Request clarification before answering.
Please read any tutorial about javascript!
Try:
%external%.toString().replace(/\//g,"")
Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Try js:%external%.toString().split("/").join("")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 11 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.