SQL Server administration and T-SQL development, Web Programming with ASP.NET, HTML5 and Javascript, Windows Phone 8 app development, SAP Smartforms and ABAP Programming, Windows 7, Visual Studio and MS Office software
Development resources, articles, tutorials, code samples, tools and downloads for SAP HANA and ABAP, HANA Database, SQLScript, SAP UI5, Screen Personas, Web Dynpro, Workflow

ABAP Call Transaction Critical Statements in ATC Check Results


When I executed ABAP Test Cockpit ATC checks for one of my SAP programs in ABAP workbench, I see Call Transaction critical statements listed in the result list. This ATC message regarding Call Transaction ABAP command can be solved easily by using "with authority-check" option as shown in this programming guide.

When I was reviewing my ABAP code development using ATC (ABAP Test Cockpit) Online Check tool, I got a list of critical messages related with Call Transaction statements

ABAP ATC check results with Call Transaction Critical Statements

To get more informed about the critical statement Call Transaction usage,I clicked on the "Object Name" column which directly navigated me to the code block where the ATC check message is raised.

When I checked the ABAP code statements I see "Call Transaction" commands are used just like as following sample codes.

call transaction 'OVKK'.
call transaction 'SE16' and skip first screen.
Code

I modified the mentioned ABAP code statements "Call Transaction" commands as follows by adding "with authority-check" to correct the ABAP coding to fit to best practices and get rid of the ATC check results.

call transaction 'OVA2' with authority-check.
call transaction 'SE16' with authority-check and skip first screen.
Code


SAP HANA and ABAP

Install SAP Free
CRM Companies List
Web Based CRM Software


Copyright © 2004 - 2021 Eralper YILMAZ. All rights reserved.