CDS view currency conversion performance
Hi All, Currency_conversion function in CDS view terribly decrease performance of the cds view, view running in few seconds run for minutes after adding currency_conversion function. I am working on...
View ArticleRe: CDS view currency conversion performance
Solved myself ( But I am open if any of you know a better solution )I succeeded to apply second approach above, it is not possible to cast nested but it is possible to call view while creating another...
View ArticleRe: CDS view currency conversion performance
Hi Gungor, Last Friday I had a Code Jam event in NL and asked for input on this question. They acknowledged performance issues, but these should have been resolved with HANA SP 10. On which HANA SP are...
View ArticleRe: CDS view currency conversion performance
Hi Bart,Our HANA is sp10 but there is still performance problem, Solution I applied is in productive system for some time and it is ok, and I find out nested casting available in ABAP 7.5 ( we are...
View ArticleRe: CDS view currency conversion performance
Hi Gungor,I've got another issue, maybe you can help me as a currency conversion guru . I have a calculated currency field - because of performed calculations (price * quantity / price_unit ) I had to...
View ArticleRe: CDS view currency conversion performance
Please note that the result of a currency conversion usually is not simply produced by multiplying the source amount with some value maintained in table tcurr.Regards, Christian
View ArticleRe: CDS view currency conversion performance
Hello Christian,thank you for the comment. That is why I wanted to use the standard function. Another problem with Gungor's approach is that it requires a conversion rate in the TCURR table for any...
View ArticleRe: CDS view currency conversion performance
Hi Marek, There is division function in CDS which can be used without casting fltp below code from my view. You can check its details from ABAP help documentation. division ( bseg.dmbtr,...
View ArticleRe: CDS view currency conversion performance
Hi Christian,I am very well aware of that, above solution is tested and used as a workaround, and this workaround saved us from big trouble where view for a month was running for hours on HANA just...
View ArticleRe: CDS view currency conversion performance
Hi Gungor,thanks, the division function solved my problem. Cheers,Marek
View Article