cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Invalid Character in Master Data Parent Nodes?

Former Member
0 Likes
133

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.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186338
Active Contributor
0 Likes

Please read any tutorial about javascript!

Try:

%external%.toString().replace(/\//g,"")

Vadim

Former Member
0 Likes

Hi,

Try js:%external%.toString().split("/").join("")