‎2007 Jun 07 6:06 PM
Hi all,
Can anyone please tell me to what object type does the Attribute Name 'ABAP_BOOLEAN' belong . Also , please tell me how to view 'ABAP_BOOLEAN'.
Kindly reply as fast as possible.
Regards,
Vijay
‎2007 Jun 07 6:27 PM
it is like a switch & the variable value will be 'X' for true & space for false.
~Suresh
‎2007 Jun 07 6:39 PM
Hi Balasubramanian Vijay,
ABAP does not know boolean variables as other programming languages do.
The type ABAP_BOOLEAN is just a character of length 1. X should be interpreted as TRUE and space as false.
But this is not always the case. For screen attributes like 'active' they use 1 for TRUE and 0 for false. I remember the type ABAP_BOOLEAN is defined as '-' for unknown
Regards,
Clemens