Lucas Borin
Lucas Borin
instead of: ```abap DATA reference_object TYPE tadir. DATA new_object TYPE tadir. MOVE-CORRESPONDING reference_object TO new_object. ``` use: ```abap DATA reference_object TYPE tadir. DATA new_object TYPE tadir. new_object = CORRESPONDING #(...
https://github.com/SAP/styleguides/blob/master/clean-abap/CleanABAP.md#prefer-ref-to-to-field-symbol
It would be nice to have a button to import an already existing code inspector variant (code pal only) and convert it to a profile because I not used to...
How about a new check to convert a relational operator to a predicate function? Relational Operator | Predicate Function -- | -- o1 CO o2 | NOT contains_any_not_of( val =...
* Enable RFC * Exemption based on TADIR/TRDIR/ENLFDIR gen flag * Renaming objects * Less global objects * Object creation date no longer uses the `VRSD` table * Option to...
As a quality responsible: 1. I would like to see which users from my scrum team are assigned to my team's profile; 2. I would like to assign and remove...
> 💡 Code pal for ABAP follows the [Clean ABAP](https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md). If the issue relates to coding style, please submit it [here](https://github.com/SAP/styleguides/issues). **Check Name** Y_CHECK_BASE **Actual Behavior** Code Pal unnecessarily scans...
Standard routines to determine the object, and sub-object, creation date: Main:  -crdat Sub:  -crdat From: SE24 > Go To > Object Directory Entry
Based on [Use given-when-then](https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#use-given-when-then), can we have a Check recommending the test method to follow the GivenWhenThen style? The check could scan for `given`, `when`, and `then` keywords in comments...