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: 

Perform Runtime Analysis on a BADI->Metod

bharath_mohan2
Participant
0 Kudos

Hi,

Can someone advice me how to perform runtime analysis for BADI method. the SE30 screen just has

Transaction

Report

Function module

is there a provision to perform runtime analysis for a methos in a BADI?

Regards

Bharath

2 REPLIES 2

Former Member
0 Kudos

Hi,

You cannot run a BADI by itself, you will have to call the transaction or program that executes the BADI.

Darren

matt
Active Contributor
0 Kudos

Set a breakpoint at the start of the BADI, and one at the end. Go to the Run Time Analyser, and execute the transaction that eventually calls the BADI. From debugger use menu option System->Utilitieis->Run Time Analysis->Switch On. Continue in the debugger. At the end breakpoint, use menu option System->Utilitieis->Run Time Analysis->Switch Off, and continue.

The runtime analysis will be performed between the two breakpoints.

In this way you can run RTAs over specific sections of code.

matt