Lucas Borin

Results 24 issues of 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 #(...

new check

https://github.com/SAP/styleguides/blob/master/clean-abap/CleanABAP.md#prefer-ref-to-to-field-symbol

new check

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...

feature
profile-management

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 =...

style guide

* 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...

feature

> 💡 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...

enhancement

Standard routines to determine the object, and sub-object, creation date: Main: ![image](https://user-images.githubusercontent.com/5233413/139310177-4958edd3-aef7-41fd-ab38-4523f15fb5b4.png) -crdat Sub: ![image](https://user-images.githubusercontent.com/5233413/139310198-81bb736e-8f2c-4781-94f9-d13042ec00bc.png) -crdat From: SE24 > Go To > Object Directory Entry

enhancement

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...

new check