An ABAP programmers can schedule ATC checks to be executed automatically on given schedule by using the ATC transaction code. When an ATC check is executed, the result is a list of code corrections or modifications that are adviced to be altered or corrected for more secure, robust, best per...
Empty SELECT/ENDSELECT at /KODYAZ/ZPROGRAM01 line 462 Finding can be suppressed with pseudo comment CI_NOORDER If ABAP programmer decides to suppress the ATC check error for Empty SELECT/ENDSELECT statements, pseudo comment CI_NOORDER can be used as seen in below ABAP code sample select smtp_...
In a SELECT SINGLE command executed on a CDS View object gave me following error on ABAP Test Cockpit ATC check results:SELECT SINGLE is possibly not unique. In my developer group we periodically run ATC checks and while trying to clear my list of ATC result list, I saw this entry. In ...
When I checked the documentation, I realized that I can resolve the issue by checking the database properties forTABLE_LEN_MAX1feature before I execute the ABAP Open SQL query. By the way, TABLE_LEN_MAX1 is pointing to database feature that a table row can have up to 16293 bytes Here ...
On SAP S/4HANA developments, if you run ATC for static code check, you can seeS/4HANA: Field length extensionserrors on result list because of change in field lengths like MATNR domain is now 40 characters long. It was 18 characters long before. ...