You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
SELECTSINGLE cnam FROM reposrc INTO lv_cnam
WHERE progname = p_sub_obj_name AND r3state ='A'.
IFsy-subrc=0AND ( 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.
The text was updated successfully, but these errors were encountered:
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
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
ofZCL_AOC_SUPER
: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.
The text was updated successfully, but these errors were encountered: