Hi Ajay
Can we connect on email (sdlad@avaya.com). I would like to know more on how you prepare for the certification.
Thank you
Santsoh Lad
Hi Ajay
Can we connect on email (sdlad@avaya.com). I would like to know more on how you prepare for the certification.
Thank you
Santsoh Lad
Dear All
Sap* reset password related to Hana Database
1-Login Hana studio as SAPABAP1 user instead of SYSTEM
and execute this in query;
2-delete from "SAPABAP1"."USR02" where BNAME='SAP*' and MANDT='000'
Best Regards
Dear All
Sap* reset password related to Hana Database
1-Login Hana studio as SAPABAP1 user instead of SYSTEM
and execute this in query;
2-delete from "SAPABAP1"."USR02" where BNAME='SAP*' and MANDT='000'
Best Regards
hi,
I'l answer in reverse order:
b) you should be able to do data preview from a standard SAP package. Furthermore, in HANA Live Browser (Explorer) you can see only those views (not the copied ones).
a) check user / authorizations. Maybe this will help: SAP HANA Live Browser - Getting Started - SAP Library
Cheers,
Dmitry
www.bi-consulting.eu
Yes, for ESS it can also be necessary to deactivate it, but the procedure is different. SAP Note 214724 contains details
Hi,
Sorry to bring this up again, I do not reveive any errors anymore but I'm still not able to execute a proper delete statement in a mapping operation. I can't seem to find examples anywhere of this. Does someone have experience with this?
Kind Regards,
Simon
this works now thanks
Hi I'm facing the same issue
on importing schema from 1 hana server to another hana server
we use HANA DB 10.2 & SBO 9.2 PL 0
Could not execute 'import DB_DRS_TEST."*" as BINARY from '/usr/sap/SAPBusinessOne/B1_SHF/backup/DB_DRS_TEST' with ...' in 471 ms 979 µs .
SAP DBTech JDBC: [2048]: column store error: table import failed: [30151] Object not found in the import directory;object=DB_DRS_TEST:COCKPIT_PAGES_INITen
please help...
Hi All,
We are trying to replicate something similar to BW hierarchies in HANA .
In BW you can create multiple re-usable hierarchies and use them later during report execution. Also you can have a variable to select your desired hierarchy. In HANA we need to define hierarchy in a attribute/calculation view and it will be local to that calculation view.
Requirement is to store hierarchy data in few HANA tables. Later join this data with transaction data in view and during runtime user can select desired hierarchy and data should be presented as per the hierarchy selected. Additionally it should be time dependent data and should come accordingly.
Any thoughts, please share.
Regards
Jitendra
Hi,
Can you please explain the entire migration process you are using?
are you transferring the schema export to any windows machine before moving to hana server 2?
If yes then this issue is due to case sensitivity in the folder structure inside exported directory.
Hi Guys,
I have two flags created called 'CC_Manual_JV_Line_Flag' and 'CC_Reversed_Accruals' on star join node which returns either 'Y' or 'N'. There is also another flag called 'CC_Posting_Date' which is present on another projection node. While firing query against the view, I am forced to add Group by clause for specific field even if there is no aggregation in query to return data.
Below query is my basic query and I am getting results as expected. I have attached screenshots of multiple scenarios which will help in explaining the issue.
SELECT
"CC_Reversed_Accruals",
"CC_Manual_JV_Line_Flag"
FROM "_SYS_BIC"."******************"
WHERE (("CC_Manual_JV_Line_Flag" IN ('Y'))) AND
(("FISCYEARPER" BETWEEN ('2016001') and ('2016001'))) AND
"CC_Posting_Date" <= '2016/01/15'
For Scenario1 & 2, view is returning data as expected. In scenario1, you can see both the fields are part of group by clause whereas in scenario 2, they are not part of Group By clause and still returning data which is expected.
In scenario 3, just one flag 'CC_Manual_JV_Line_Flag' is part of the select statement and returns result which doesn't require any group by clause
Now, if you look at scenarios 4 and 5, you can see that field 'CC_Reversed_Accruals' is only returning result if both the fields are part of Group By Clause.
I have following questions to understand this behavior.
1) Is this behavior related to star join used in the view?
2) Why Group by clause is required to get the result even if there is no aggregation? ( no measure is used to derive these 2 flags as well)
3) Both of the flags are created at star join node only. Then, why is this behavior specific to one field only?
have someone faced this issue before?
Hi Vijeesh,
EXEC cant be used that way. On HANA you'd need to have one EXEC per statement. Each EXEC is a contained block of execution, allowing one statement only. Declaring variables is also not possible as far as I could see (anyone else please correct me if I'm wrong here).
For that reason I don't think you can use dynamic calculation expressions within EXEC / EXECUTE IMMEDIATE. I believe this is feature is not there yet.
Check the example below:
DO BEGIN DECLARE FORMULA NVARCHAR(5000) = ''; DECLARE VAL1 DECIMAL(19,2) = 10.0; DECLARE VAL2 DECIMAL(19,2) = 30.0; SELECT '(:VAL1 + :VAL2)' INTO FORMULA FROM DUMMY; EXECUTE IMMEDIATE 'SELECT '|| :FORMULA || ' FROM DUMMY'; END;
This would fail with:
"[...] cannot use parameter variable: VAL1:[...]"
BRs,
Lucas de Oliveira
Hi All,
I would like to know how using the HANA Modelling (Analytic/Calculation view) if we can control the display of Measures based on the Characterstics that we select in the report output.
For e.g. Forecast is at Year level for a given Vendor..So when I have the report layout at Vendor level and not at any other fields like Period, I want the Forecast to be displayed...If I have any other level which is detailed at which the Forecast is not maintained, I want the Forecast measure to display zeros.
Thanks
Ganesh
Hi All,
When modelling with SAP Hana why do we need analytic views if we can you the more powerful Calculation views instead. Why bother with analytic views if it has less functionality and expandability?
Thanks
Hello Dick,
in the first releases there was a clear separation what type of view should be used for the specific requirements. With the last releases more and more functionalities of attribute and analytic views were added to calculation views. In the future only graphical calculation views should be used
Since SPS11 migration tools exist to convert attribute/analytic and scripted calculation views to graphical calculation views:
Migrating an Object Type to a Different Object Type - SAP HANA Modeling Guide - SAP Library
Regards,
Florian
Hi Ganesh,
We have two cases here:
1) In HANA Modeling views, we can achieve the dynamic calculations based on the user input values (which are mapped to Input Parameters and input parameters can be used as part of the calculations).
2) However, if we have to control the display of measures dynamically based on the user selections, this need to be handled in the reporting tool.
Hope this will help in evaluating and choosing the right option for your scenario.
regards,
Varma
Hi,
I would like to know how to generate HTML results for a given query, from Hana studio. Can someone help me on this?
Thanks,
Shaheer
Please see http://help.sap.com/hana/SAP_HANA_Administration_Guide_en.pdf Page 254