cancel
Showing results for 
Search instead for 
Did you mean: 

SAP BO WEBI Report IES 10037 Error

Former Member
0 Kudos

Hello,

CAn any one please help to solve this furmule Error: =Sum([Erfmg]Where([Bwart]=551))-Sum([Erfmg]Where([Bwart]=552))

I am using the Eclipse creating the View using this view i am creating the Universe. and i created the report on top of Universe. here i am getting the below Error. Please check the attached document.

I tri to adding Tonumber also but i didnt worked out.

Thanks

Rama

Accepted Solutions (1)

Accepted Solutions (1)

former_member198519
Active Contributor
0 Kudos

is [Bwart] objects is of String datatype? if yes then put the where condition as

=Sum([Erfmg]Where([Bwart]="551"))-Sum([Erfmg]Where([Bwart]="552"))

Answers (1)

Answers (1)

amitrathi239
Active Contributor
0 Kudos

I think [BWRT] object data type is string.That is the reason it is not working.

try this.

=Sum([Erfmg]Where([Bwart]="551"))-Sum([Erfmg]Where([Bwart]="552"))