Re: what is the difference between HANA code and ABAP Code
Hi Karthikeyan, HANA has its own SAP implementation and works as it used to work in 3 tier arch.The products go out as HANA Live, Suite on HANA. Also refer:SAP HANA Live - Real-Time operational...
View ArticleRe: SQLScript error in AMDP
Hi, as far as I know CE_COLUMN_TABLE is not supported in AMDPs. Replace the CE_COLUMN_TABLE functions by a Select statement (e.g. LT_VBAK = SELECT * FROM VBAK). By the way. Think about the further...
View ArticleRe: SQLScript error in AMDP
Hi Florian, The work around worked but i think its not much of a use now that i have to fetch all the data. Thanks for bringing to my attention the blog on CE Functions...i was under the impression...
View ArticleRe: what is the difference between HANA code and ABAP Code
Hi Pravesh, You mean that SAP HANA Having own coding technique and ABAP will not work in that correct. thanks for your immediate help. RegardsKarthikeyan K
View ArticleRe: SQLScript error in AMDP
Hi, what hinders you to implement a restriction to the selection regarding your needs? Or to replace the CE_JOIN by a Select statement with join to get the same result? Best regards,Florian
View ArticleCross Schema AMDP Class Transport
Hello Experts, We are tying to implement AMDP based developments which contains multiple schema tables and we are pointing by giving schema name i.e. DV.MARA. Its working fine but at the time of...
View ArticleRe: Cross Schema AMDP Class Transport
I have analyzed the issue. This issue not related to AMDP , actually this is related to class.I have copied same class and transported to production and its working. I think some objects were not...
View ArticleReading PM Characteristic Values on SAP Hana
Are there any updated SAP functions or Classes to read PM characteristic values? Currently we are using BAPI_CLASS_GET_CHARACTERISTICS and BAPI_OBJCL_GETCLASSES. This is very inefficient on a Hana...
View ArticleRe: SAP HANA: Modify From Table
Host variable without escape character @ are obsolete. Try: - MODIFY zhrint02 FROM TABLE @gt_data_save. But please check for the following things first: - Pictures - Courtesy - F1 Help (ABAP Docu)
View ArticleError in CDS View
In my program I am fetching a certain type of inbound IDOC which in 53 status and updating my custom table, for which I have written a select query which executes perfectly but gives me an error while...
View ArticleRe: Error in CDS View
Hi,you would need to add additional fields to your CDS-view in a way that makes a key-calculation possible. E.g. the following CDS-view results in the above error: define view ... as select from...
View ArticleRe: Error in CDS View
some additional explanation from F1 help on 'KEY'-statement in CDS-view: KEY is used to define the current element as the key element of the current CDS entity. Any elements of a SELECT list can be...
View ArticleRe: Error in CDS View
Hello Christian, Thanks for you inputs but the issue persists. It worked for you because it was a single table in the example, but as mentioned in your second response "the key fields of the database...
View ArticleRe: Error in CDS View
Hi Rajit,you are right, my simplified example only served the purpose of showing the basic principle, you would have to add several fields from several tables. This is inconvenient, but I think...
View ArticleWrite to ERP Tables on HANA DB using SQL script
Hello All, We are using HANA as our primary database for ABAP system and trying to feed the data to ABAP tables using SQL script and experiencing authorization errors . Please see below for more...
View ArticleRe: Write to ERP Tables on HANA DB using SQL script
Hi Naresh, Obi Wan would now probably say: "this is not the functionality you're looking for". Even though you are working with Z-tables you really don't want to start messing with those from outside...
View ArticleRe: Write to ERP Tables on HANA DB using SQL script
I think your approch is correct, but 'create' does not imply 'insert' authorization; this has to be granted separately, e.g.:
View ArticleRe: Write to ERP Tables on HANA DB using SQL script
What is your reasoning behind supporting to give up schema management and self-containment? The moment you create new objects in the NetWeaver schema directly on DB level, you made the system a lot...
View ArticleRe: Write to ERP Tables on HANA DB using SQL script
Hi,above there is a screenshot of a SQL-script console and I don't think this can serve as a prototype of a productively used data replication scenario (or it would be very hard to convert it into...
View Article