on 2019 Oct 23 4:05 PM
In HANA calculation view I have the following part of code:
select "SPCode",.....
from ....
inner join ( SELECT "SalespersonCode" FROM "_SYS_BIC"."sap.test/IDMS_BI_ISVALIDSALESPERSON" ('PLACEHOLDER' = ('$managerUserCode$',:managerUserCode),'PLACEHOLDER' = ('$userCode$', :userCode)) ) as isvalid on isvalid."SalespersonCode" = "SPCode"
During activation I get the following error:
Repository: Encountered an error in repository runtime extension;Model inconsistency. Deploy Calculation View: SQL: sql syntax error: incorrect syntax near ":managerUserCode": line 129 col 41 (at pos 5070)
How can I solve this issue?
Regards,
Dimitris
Request clarification before answering.
Hi Dimitris,
Please try with below statement:
inner join ( SELECT "SalespersonCode" FROM "_SYS_BIC"."sap.test/IDMS_BI_ISVALIDSALESPERSON"
(PLACEHOLDER."$managerUserCode$"=>:managerUserCode, PLACEHOLDER."$userCode$"=>:userCode)
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
85 | |
11 | |
8 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.