SAP EQUALS BIT EXPR



Get Example source ABAP code based on a different SAP table
  


• = ABAP_BIT_EXPR

=, Bit Expression

ABAP_SYNTAX
result = bit_exp.

What does it do?
If a bit expression bit_exp is specified on the right side of the assignment operator =, a byte chain with the calculation length is calculated and assigned to the left side result like a source field with the type xstring .
The following can be specified for result:
A variable with the type x or xstring.
A variable with the type c or string.
An inline declaration DATA(var) or FINAL(var). The data type of the declared variable var is xstring.

ABAP_EXAMPLE_VX5
Bit expressions as the right side of assignments. The expressions can also be used directly as input parameters of the output methods.
ABEXA 01014
ABAP_EXAMPLE_END