Re: Error in procedure
Hi Sumeet- All of the syntax which you gave are correct. Except calling the procedure. To Drop a procedure : DROP PROCEDURE insert_bom_2;Creation of Procedure : CREATE PROCEDURE insert_bom_2...
View ArticleError while validating the Attribute View
Hi Experts, I have created a table and used that table in the attribute view.I made one of the colums as Key attribute in the Semantic Layer. When I am validating the Attribute View . I am getting the...
View ArticleRe: How to preserve the Calculation View data into a permanent table with...
Hi Thara,Ideally UPSERT (UPDATE if keys match, INSERT otherwise ) should work for your scenario. If that is not working(may be you should re check the situation why it is not working), you can try this...
View ArticleRe: How to preserve the Calculation View data into a permanent table with...
Hi Sree, First time table - TESTING_DATA_VIEW is empty If i tried this syntax in Sql Console Statement executed successfully but Rows Effected "0"No records are inserted PRIMARY KEY...
View ArticleRe: How to preserve the Calculation View data into a permanent table with...
Hi Thara,can not blame the system . This is an equijoin as no matches found, it will return 0 records. Change the join conditions with != conditions . A.LOCATION_CODE !=...
View ArticleRe: Error while validating the Attribute View
Hi, if "_SYS_REPO" user doesn't have "select" privilege on your schema, you will get this error while validation of view. Please fallow below procedure: 1. go to security node of your HANA...
View ArticleRe: How to preserve the Calculation View data into a permanent table with...
Hi Sree, Definitely i am not blaming any systeminitiation is - stmt written is correct or not.I came to know the correct syntax.I should not check the condition at all.it is working fine with this...
View ArticleRe: How to preserve the Calculation View data into a permanent table with...
Simple silly. Great that UPSERT is working perfectly .Sree
View ArticleStored Procedure is not returning response from xsjs
Hi all, I'm getting some problem during calling the stored procedure from xsjs. When I call the procedure from the SQL Console it is working well. ( CALL LOGINUSER (2 , 'b@b. com', 'pass',?,?,?)...
View ArticleRe: line number in sap hana studio
To turn on line numbers in Studio - you can go to the Window menu, choose Preferences. Then select General > Editors > Text Editors. In that panel, you can check "Show Line Numbers".
View ArticleRe: Unable to update multiple columns in a single update statement
Hi Krishna, This is very late to answer but thought it might be helpful if someone else is really thinking that multiple columns cannot be updated in a single update statement. I could execute...
View Articlehow to delete the data from object
Hi expert, I'm new to UI5. My requirement is if I click on delete that particular record will delete from table. So I written my logic according to that,but I struck at one point. I got the particular...
View ArticleRe: how to delete the data from object
If you are using an OdataModel, use oModel.remove() method to remove the entity from the entity list. It will automatically remove the row from the table as well. Sree
View ArticleRe: how to delete the data from object
Hi Sreehari, I created my own data in controller. which is json Thanks,Ashok.
View ArticleRe: how to delete the data from object
What about this ?SAPUI5 SDK - Demo KitremoveRow() of sap.ui.table.Table ? Did you try this ? Sree
View ArticleRe: how to delete the data from object
Hi Sree, Yes I tried that as well. I used the sap.m. Please check the following code that i written in controller odelete : function(oEvent) { var context = oEvent.getParameter("listItem")...
View ArticleRe: how to delete the data from object
ok, if you are using sap.m, the below deletion handler should work for you. handleDelete: function(evt) { evt.getSource().removeItem(evt.getParameter("listItem")); } Sreehari
View ArticleError in procedure
Hi, I am going through procedure from SAP help document. I still not understand from where can I refer the correct syntax for creating a procedure. Below is the code I directly copied form SAP help...
View ArticleRe: Unable to execute Inner join
Hi Krisha, Both the tables belong to same schema. Please find the snapshot below.
View ArticleRe: Unable to execute Inner join
Hi Pratik, If the error is because of the adding schema name, then I should get the same error for Customer table as well. But the job log is showing invalid table name only for Sales_Order table.
View Article