Re: Scheduling Options to control multiple .xsjobs
Hello Ranjith, regarding point 1 and 2) There exists a Job scheduling API (JSDoc: Namespace: jobs) for XSJS which you can use to schedule your jobs. You should NEVER update directly any system tables...
View ArticleRe: Where to find Core Data Service DDL tutorial and the language reference?
HI Florian, I've seen similar guides, this is a good one. Btw, how can I define or create CRUD operations in CDS? If I create a CDS view and create a OData service for it, how would I create...
View ArticleRe: Where to find Core Data Service DDL tutorial and the language reference?
Hello Jian, there are several options available.1) In XSJS you can use of course the $.hdb (JSDoc: Namespace: hdb) or the $.db (JSDoc: Namespace: db) interface to access the data. There is also XSDS...
View ArticleRe: HANA development memory issue
Hi Brenden, Here is an old post on this error back in 2013The general suggestion is to have the below HANA components on the latest version to avoid such errors https://scn.sap.com/thread/3458284 SAP...
View ArticleRe: HANA development memory issue
Hi Brenden, We have a SAP note for Error-10760 'Memory allocation failed' when using the SQLDBC interface Here is the link for the same, please check if this is applicable in your case...
View ArticleRe: Problem with Hana-Hadoop Integration in SPS 09
Hello Anil, Greeting!It seems that the data source configuration went wrong. According to the screenshot you posted, the adapter name was set as ASE (ODBC) while the HADOOP (Destination) type is...
View ArticleRe: Problem with Hana-Hadoop Integration in SPS 09
Hi Jonathan, I'm running the script pasted below with corresponding hostname, username and password. CREATE REMOTE SOURCE HADOOP_SOURCEADAPTER "hadoop"CONFIGURATION...
View ArticleRe: Problem with Hana-Hadoop Integration in SPS 09
Hello Anil, When typing the script in the SQL console, please put all the commands of the configuration in the same line. Please also refer to below youtube link. (SAP HANA Academy - SDA : Hadoop...
View ArticleHow to get the Moderator Approval for my blog???
Hi All, first of all, if its a repeated question, sorry about that, but i haven't got the answer for this. A week before i posted my first blog on oData, and since it was my first blog, it went for an...
View ArticleRe: Passing Parameter to $$.hdb.Connection.executeQuery in a variable
Hello Thomas, This is perfect. Thanks Best RegardsSrini
View ArticleRe: How to get the Moderator Approval for my blog???
Hey GirishDo nothing .. since you a new member every content you post will go in moderation ..This is as per Rules of engagement . scn.sap.com/docs/DOC-19331 If you think its been a while and its...
View ArticleRe: Public call to XSJS and $.db
Thanks Thomas, it worked when i moved my xsjs file out of services folder and placed beside xssqlcc file, don't know why but worked fine Thanks,Vinod
View ArticleMultiInput problem
Hi, I have a MultiInput element and i don`t know how to retrive the number of tokens in multiinput.(how many element i have select). <MultiInput id="organization" type="Text" placeholder="Enter...
View ArticleRe: XS JS function
you can only call SQL stored procs from XS and also you can call procs from odata and if using XS exit functions you would go from the odata into the XSJS but i dont think you can do what you mentinoed...
View ArticleRe: XS JS function
Hello Will, regarding your "... or similar". If you are not only focussed here on XSJS functions, you can have a look to the User Defined Functions you can define in SQLScript (User Defined Function -...
View ArticleRe: HANA Smart Data Access With postgreSQL driver
The steps I posted above are the steps I took.But not exact..I imagine if ISQL was able to find it, you may be fighting a permissions issues..Try running the ISQL command as the Hana admin <instance...
View ArticleRe: XS JS function
All, I'm trying to create a function similar to the following in Hana, now select statements are not allowed in Hana Scalar functions hence I was looking for another option. Something I can use inline...
View ArticlePush data into HANA using webservices call
Experts - Scenario: We have a Java / cloud based application running on tomcat server with MS SQL as database. The requirement is to push data into HANA database of one of our customer(client)...
View ArticleRe: Error message in Hana Studio calculation view when doing Data Preview
Hi Erik, You are missing privileges. Try to get SELECT and EXECUTE on _SYS_REPO schema. That should work. Regards,Chandra.
View ArticleRe: SQL Update
Hi Will, If my understanding is right, you want to update AVGPUPRICE to zero in "DEMO_ST"."T_ST_U_DEMO" table. You can use below SQL. UPDATE "DEMO_ST"."T_ST_U_DEMO" SET "AVGPUPRICE" = 0; If not, let us...
View Article