Posts

Showing posts with the label performance tools

Performance tools in abap

Image
  ST05 -- Performance trace (Activate the trace, Deactivate the trace, Display the trace).          Report              REPORT  zab_performance_tool .           TABLES :  zstu .           DATA :  it_zstu   TYPE  TABLE  OF  zstu ,               it_zstu1  TYPE  TABLE  OF  zstu .           SELECT-OPTIONS :  s_id  FOR  zstu - zstu_id .           IF  s_id  IS  NOT  INITIAL .            SELECT  *              FROM  zstu              INTO  TABLE  it_zstu        ...