Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Code inspector information message for CALL transaction

Former Member
0 Kudos

When a call transaction statement has been used in program code inspector flags it as a security problem which can be suppressed using *#EC CI_CALLTA.

Can you what this really means and how the error can be avoided without using *#EC CI_CALLTA. ?

1 REPLY 1

matt
Active Contributor
0 Kudos

Call transaction doesn't do all the authority checks that you'd get if you tried to run the transaction on line. So the code inspector tells you about this.

Before you perform a call transaction, you should call function module AUTHORITY_CHECK_TCODE. This still does not suppress the information message. But it does address the reason behind the message.

matt