on 2022 Jun 02 6:58 AM
Dear HANA / BW Experts,
As per the existing BW query, they have created restricted keyfigure and enabled the currency conversion.
I am trying to implement same in HANA. I created restricted column. (In HANA, Currency conversion is not possible). So i created calculated column and included restricted column and enabled the currency conversion. While activating, i am getting the error message as "It is not allowed to reference other conversion attribute" . Please guide me, how to solve this issue.
Thanks.
Request clarification before answering.
Hi
Did you try this SQL for currency conversion. This returns the rate for me in hana-studio.
You may try with this.
SELECT
CONVERT_CURRENCY( "AMOUNT" => 1,
"SOURCE_UNIT" => 'SAR',
"TARGET_UNIT" => 'USD',
"REFERENCE_DATE" => '20200212',
"ERROR_HANDLING" => 'set to null',
"CLIENT" => '400',
"SCHEMA" => 'SAPABAP1',
"STEPS" => 'convert' ,
"CONFIGURATION_TABLE" => 'TCURV' ) as rate
FROM dummy; <br>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
75 | |
21 | |
8 | |
7 | |
6 | |
6 | |
5 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.