There is requirement that if backend database is HANA DB the system trigger a update operation. otherwise the db is non-HANA db the system raises an error.
How to determine whether backend database is HANA DB in ABAP codes?
Thanks & Regards
There is requirement that if backend database is HANA DB the system trigger a update operation. otherwise the db is non-HANA db the system raises an error.
How to determine whether backend database is HANA DB in ABAP codes?
Thanks & Regards
Check CL_DB_SYS=>DBSYS_TYPE
- if it is HDB
, you're on a HANA system. Be sure to read the documentation of that attribute.