Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking of modified SAP standard objects in RFC context doesn't work #1157

Open
ConjuringCoffee opened this issue Oct 29, 2024 · 0 comments

Comments

@ConjuringCoffee
Copy link
Collaborator

Currently it is not possible to check most modified SAP standard objects when the ATC check is called via RFC.

The cause is this logic within method INFORM of ZCL_AOC_SUPER:

        SELECT SINGLE cnam FROM reposrc INTO lv_cnam
          WHERE progname = p_sub_obj_name AND r3state = 'A'.
        IF sy-subrc = 0
            AND ( lv_cnam = 'SAP'
            OR lv_cnam = 'SAP*'
            OR lv_cnam = 'DDIC' ).
          RETURN.
        ENDIF.

In an RFC context, any information contained in table REPOSRC is irrelevant to this check.

Unfortunately, I don't have a good idea on how to solve this yet.

@ConjuringCoffee ConjuringCoffee changed the title Checking of modified SAP standard objects in RFC context Checking of modified SAP standard objects in RFC context doesn't work Oct 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant