SAP CDS CONV FUNC TYPES V1



Get Example source ABAP code based on a different SAP table
  


• FLTP_TO_DEC ABAP_CDS_FUNCTION_V1
• HEXTOBIN ABAP_CDS_FUNCTION_V1
• BINTOHEX ABAP_CDS_FUNCTION_V1

ABAP_CDS_DDL - DDIC-Based View, Type Conversion Functions

ABAP_SYNTAX
... FLTP_TO_DEC( arg AS dtype ) ...
... BINTOHEX( arg ) ...
... HEXTOBIN( arg ) ...

ABAP_VARIANTS:
1 ... FLTP_TO_DEC( arg AS dtype )
2A ... BINTOHEX( arg )
2B ... HEXTOBIN( arg )

What does it do?
Functions for conversions between data types in a ABAP_CDS_V1_VIEW .



Latest notes:

These functions execute special conversions that cannot be handled in a general CAST expression.
If an argument has the null value, the result of the conversion function is also the null value.
NON_V5_HINTS
ABAP_HINT_END

ABAP_VARIANT_1 ... FLTP_TO_DEC( arg AS dtype )

What does it do?
Conversion of an argument arg of type FLTP to a packed number. Literals, fields of a data source data_source, and path expressions can be specified for arg. arg must have the type FLTP.
A target data type DEC, CURR, or QUAN must be specified with dtype for a packed number, as follows:
Using a DDIC data element with this type.
Directly as a built-in data type in ABAP Dictionary.
The following table shows the syntax for specifying built-in data types: <(>dtype<)>Dictionary Type
abap.dec(len,decimals)DEC with length len and decimals decimal places
abap.curr(len,decimals)CURR with length len and decimals decimal places
abap.quan(len,decimals)QUAN with length len with decimals decimal places
The value range of the data type dtype must cover the value range of the operand type. An exception occurs if the value range of the target data type is not sufficient. Any surplus decimal places are cut off without rounding.



Latest notes:

The conversion of type FLTP to a packed number using the function FLTP_TO_DEC is platform dependent and does not have to be reversible using a CAST.
The general CAST is designed to be platform-independent, which means it does not allow conversions of type FLTP to other numeric data types.
Since a literal with a prefixed sign is interpreted as an arithmetic expression, the argument arg of the function FLTP_TO_DEC cannot be a negative literal. Instead, the sign can usually be specified before the function.
More specifically, the built-in conversion function FLTP_TO_DEC can be used to convert literals with a decimal point to a packed number.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
The following CDS view applies the function FLTP_TO_DEC in the SELECT list to columns of the DDIC database table DEMO_EXPRESSIONS. The class CL_DEMO_CDS_FLTP_TO_DEC uses SELECT to access the view. Note that there is no rounding.
DDLS DEMO_CDS_FLTP_TO_DEC
ABAP_EXAMPLE_END

ABAP_VARIANT_2A ... BINTOHEX( arg )

ABAP_VARIANT_2B ... HEXTOBIN( arg )

What does it do?
The functions BINTOHEX and HEXTOBIN convert byte strings to character strings and back:
BINTOHEX takes a byte string and converts it to a character string containing the half bytes of arg, converted to the hexadecimal characters 0 to 9 and A to F (left-aligned). The valid argument type is RAW with a maximum length of 255. The result has the type CHAR with twice the length of arg. Only fields of data sources can be specified as arguments.
HEXTOBIN converts a character string to a byte string whose half bytes are determined from the hexadecimal characters of arg. Any leading blanks are removed before the conversion from arg and all trailing blanks are then replaced by 0. The valid argument types are is CHAR or NUMC with a maximum length of 510. The result has the type RAW with half the length of arg. Only fields of data sources and literals can be specified as arguments. The total of all characters must be even and it can contain only the hexadecimal characters 0 to 9 and A to F (uppercase or lowercase) and leading and trailing blanks. Literals cannot contain any leading blanks.

ABAP_EXAMPLE_VX5
The following CDS view applies the conversion functions for byte strings in the SELECT list to columns of the DDIC database table DEMO_EXPRESSIONS. The class CL_DEMO_CDS_SQL_FUNCTIONS_BYTE uses SELECT to access the view.
DDLS DEMO_CDS_SQL_FUNCTIONS_BYTE
ABAP_EXAMPLE_END