Re: Impact of For all entries ( FAE ) in HANA
Hi Gairik, OSS note 1622281 provides a method to speed up the FAE using the hint provided the prerequisite condition is met. I would say to use the Code inspector first (exclude the FAE checking( and...
View ArticleSAP ABAP
Umang,given the rather wide context of this question the answer is:Yes! No! Maybe! Seriously, I woudn't expect ABAP to vanish any time soon.Just like UNIX, C and COBOL the ABAP language and the...
View ArticleRe: SAP ABAP
Well, I'd say incomplete information. SAP HANA uses Java, SQL, ABAP, C, C++, Python.. etc etc etc.. Depends upon how you use it. With AS ABAP on HANA or BW on HANA, sure there would be need for the...
View ArticleRe: Performance of For All Entries in Suites on HANA
Hi Gairik, the static code check finds places where data is read from database into an internal table and - without (much) processing on the application server - is reached down again to the database...
View ArticleRe: ADT is throwing error while connecting to NW 7.40 SP02
This ha s been resolved. When we changed the IP address with the fully qualified domain name in the connection settings, it worked. Thanks.
View ArticleRe: Performance of For All Entries in Suites on HANA
Hi, there is not really much to add to Randolf's answer. In general, writing a join instead of an FAE is good for less data transfers and less statement executions. Any DB will benefit from this in...
View ArticleRe: Impact of FAE ( For all entries) in Suites on HANA
Hi, please see this question and answers: http://scn.sap.com/thread/3421451 Kind regards, Hermann
View ArticleRe: Performance of For All Entries in Suites on HANA
On "traditional" databases, FAE can be used as a workaround if there is a very long list of single values as selection criteria, which would cause the maximum SQL statement to be exceeded when filled...
View ArticleRe: Performance of For All Entries in Suites on HANA
Hi Thomas, the same workaround is valid vor SAP HANA. If you have a long list of values in an itab (e.g. selection screen) you should use FAE on HANA. (Only if you can avoid the FAE because the itab is...
View ArticleRe: SAP ABAP
Hi Umang, I see that SAP is bringing things towards ABAP also. For instance, GRC 5.3 was Java based but the new version which is GRC 10.0 is purely ABAP based. So I don't see SAP not using ABAP for new...
View ArticleRe: Impact of For all entries ( FAE ) in HANA
Please use the following Link where I got my answer http://scn.sap.com/thread/3421451
View ArticleRe: Performance of For All Entries in Suites on HANA
Thanks Randolf . That answers my doubts. I understand that this is not a mandatory steps in Migration./Upgrade . This is only required if we are going for optimization/performance improvement ....
View ArticleRe: Impact of For all entries ( FAE ) in HANA
Hi, yes. FAE optimization is an optional task if performance of the FAE is not sufficient.This is independent of the database. In many cases a join is fastter than an FAE andthis is again independent...
View ArticleRe: Execute Procedure with input parameters as table from ABAP
Hello Vaibhav, We are using HANA as secondary DB, thus database procedure proxy will not work. Kindly suggest. Thanks.
View ArticleRe: Using ABAP function calls in HANA
Hi, If SLT has the capability for you to include own user-exit transformation ABAP logic and output the string data into another customized table to save the "decrypt" string content, it may be...
View ArticleRe: HANA stored procedure with IN param as table
Hello Shishupal, I also need to pass the internal table as input parameter to call HANA Procedure from ABAP.If you had resolved this, kindly let me know the solution you implemented. Thanks
View ArticleRe: Execute Procedure with input parameters as table from ABAP
Hi, The simpliest workaround (not sure if efficient) will be create global temporary column table to store the ABAP internal table data. This temporary table will be used to hand data into your...
View ArticleRe: Execute Procedure with input parameters as table from ABAP
Hi Yeu, Can you please explain in detail with an example or code, how to achieve this? Thanks
View ArticleRe: Execute Procedure with input parameters as table from ABAP
Hi, something like this (syntax wise you adjust it accordingly): * HANA temporary table is already created and flushing out table recordlo_sql->execute_ddl( 'TRUNCATE TABLE "HANA_INPUT_TABLE"'...
View ArticleRe: Execute Procedure with input parameters as table from ABAP
Hello Yeu, This solution will work but it doesn't seems too efficient. Does it mean that whenever we have to execute a procedure with table as input, we have to first create a DB table in HANA,...
View Article