Usage of no longer available development object check_box
When ABAP programmer executes ATC (ABAP Test Cockpit) tool to check custom code development quality, following ATC finding might appear in the list.
S/4HANA: Search for usages of simplified objects
Usage of no longer available development object
Usage of no longer available development object (DTEL CHECK_BOX, see Note(s): 0002226782)
As the error message indicates the Data Element Check_Box is no longer available as a S/4HANA development object. Although the execution of the ABAP programs where variables with Check_Box data type are used don't cause dumps, etc it is best practice to replace the check_box with a suitable corresponding data element.
These errors can be as simple as seen in below ABAP code line
And in such cases to find the suitable data element, ABAP developer can check the domain of the check_box data element.
If you check the check_box data element, you can see that the domain is XFELD for this data element.
And by reverse check, using where-used-list for XFELD domain, an ABAP programmer can see that there are numerous data elements including XFELD
So fastest sollution for this ATC errors Usage of no longer available development object (DTEL CHECK_BOX, see Note(s): 0002226782), just replace the CHECK_BOX with XFELD