.XSODATA error during activation
Hi, I have created a scripted calculation view with input parameter, -> the input parameter will be passed from UI5. So I created a .XSODATA file and entered the service call statement and while...
View ArticleRe: code revision
Hi Florian, I tried to get data from UI5 through ODATA and I get the following error during the final stage of my objective set. Please go through this, I will send the code for .XSJS file. Thanks. I...
View ArticleRe: .XSODATA error during activation
Hello Uvaraja, instead of the generated column view representation from "_SYS_BIC" schema, use the calculation view itself. I assume it is view TESTCALPOCPARAM in package p9114255. Then you can go with...
View ArticleRe: Deleting history information using COMMIT ID
Hi Niranjan, Can you please check if you are doing delta merges after updates / deletes / inserts., also I am not sure if it is still true but it is recommended to set auto commit = OFF. Following is...
View ArticleRe: .XSODATA error during activation
Thanka a ton florian, the object is activated now.
View ArticleRe: code revision
Sorry my mistake... I am working on the .XSJS code now, will post it soon...
View ArticleDecision table with update values error while activating it
Hi Experts, When I am trying to activate my decision table with updated values, I am getting the following error. Please help me to solve this error. Message : Repository: Internal error during...
View ArticleApproach for infinite running of XSJS application
Hi Experts, I'm trying to create an IOT application in SAP HANA Cloud platform trial account.I'm trying to develop a piece of code which always runs(once started) like a service to monitor the...
View ArticleRe: How to calculate Surplus w.r.t the previously changed value?
Hi Mayur, I have found the way to get the Surplus Output in SQL itself just now.So no need write the Procedure and Cursor logic. Please use this logic for you data and check whether it is giving...
View ArticleRe: Join issue
Hi Ibrahem, For me the query you mentioned is working fine only. Can you please give me what is the output you are getting from Calculation View. Regards,Muthu
View ArticleDifference between ContentViews and Catalogue Views
Hi Everyone , this might be the basic question , please provide the url if it is already discussed in the forum .what is the exact difference between views in content and catalogue folders , in which...
View ArticleRe: SUM error during S/4HANA Conversion
The issue was solved. I tried a Verify step before generating a stack.xml file. Then ECC-SE was removed from a stack.xml file.At first, I skipped this step because the verification status was green...
View ArticleRe: Join issue
I'm getting this result: I need to combine both showroom columns in single column,but in calculation view data is aggregated for plan_showroom or act_showrooms.Business wise is not correct, Report...
View ArticleRe: Join issue
Can you try the following SELECT A.SHOW_ROOM,SUM(A.ACTUAL_SALES) AS ACTUAL_SALES,SUM(A.PLAN_SALES) AS PLAN_SALESFROM (SELECT NVL(A.SHOW_ROOM,P.SHOW_ROOM) AS SHOW_ROOM, SUM(A.ACTUAL_SALES) AS...
View ArticleRe: Join issue
You can get your required result also by a UNION ALL, no FULL OUTER JOIN is necessary. select showroom, sum(act) as "ACT", sum(plan) as "PLAN" from ( select showroom, act, 0 as plan from SALES_ACT...
View ArticleRe: Join issue
Hi Ibrahem, use the following Queries, You will get the required output you want . Actual and Plan Sales Via Showroom: Select SHOWROOM, SUM("PLANNED_SALES"), Sum("ACTUAL_SALES")FROM(SELECT PERIOD,...
View ArticleRe: HANA - Red Hat vs SUSE
Hi, from your answer I got some idea there is no difference between Novel SUSE and RHEL for SAP HANA. But I really wanted to know what is pros and cons for SUSE vs RHEL for HANA.
View Article$.net.http.DELETE is not working
Hi colleagues, I have an xsjs service, which i want that should be called using three different HTTP methods i.e. GET, POST, DELETE. See the code: switch ($.request.method){ case $.net.http.GET:...
View Article