abap - How to get value range of system-variable sy-dbsys -
in abap can use system variable sy-dbsys find out database running underneath abap system, e.g. 'hdb' hana or 'oracle'.
is there list of potential database systems used? want define mapping of common values of sy-dbsys in coding, since can generate native sql on fly depending on db system.
thanks
the data element dbsys_type_selector
refers domain of same name covers possible values of sy-dbsys
. used in class cl_db_sys
.
Comments
Post a Comment