sqlca.udf.<fieldname>

Beas adds many SAP UDF Fields to SAP tables

But the name of UDF names are different between HANA and MSSQL

 

In general, you canalways  use the HANA Syntax, the internal HANA->MSSQL runtime converter always converts this to correct MSSQL names

However, it is recommended to use single source syntax.

 

Example: Drawing number in Item master data

MSSQL: OITM.U_znr

HANA: OITM.U_beas_znr

 

use this in the following way:

 

select "<sqlca.udf.beas_znr>"  from "OITM"

 

execute in

MSSQL: select "U_znr" from "OITM"

HANA: select "U_beas_znr" from "OITM"