MODIFY_ST_BREAKPOINT SAP Method Set/Delete/Switch Simple Transformation Breakpoints









Below is documentation, parameters and attributes of ABAP Method MODIFY_ST_BREAKPOINT within SAP class CL_ABAP_DEBUGGER. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_ABAP_DEBUGGER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method MODIFY_ST_BREAKPOINT can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method MODIFY_ST_BREAKPOINT

.

NameTypeData TypeDescriptionDefault Value
CALLED_BY_EDITORImportingTYPE
ABAP_BOOL
Caller is the STRANS
INCLNAMEImportingTYPE
INCLUDE
INCLUDE used
OPERATIONImportingTYPE
C
Set/Delete/Switch
PROGNAMEImportingTYPE
PROGNAME
ABAP Program Name
TEMPLATEImportingTYPE
SYXFORM
Internal ABAP System Field
INCLNAMEImportingTYPE
INCLUDE
Used Include
SUCCESSExportingTYPE
ABAP_BOOL
ReturnCode
SUCCESSExportingTYPE
ABAP_BOOL
Return Code
SRCLINEChangingTYPE
INT4
Source Code Line



Exceptions of Method MODIFY_ST_BREAKPOINT

SUCCESSExportingTYPE
ABAP_BOOLReturnCodeTOO_MANY_BREAKPOINTS -

Example ABAP coding


DATA: lv_CALLED_BY_EDITOR TYPE ABAP_BOOL,
lv_INCLNAME TYPE INCLUDE,
lv_OPERATION TYPE C,
lv_PROGNAME TYPE PROGNAME,
lv_SRCLINE TYPE INT4,
lv_SUCCESS TYPE ABAP_BOOL,
lv_TEMPLATE TYPE SYXFORM,
lv_INCLNAME TYPE INCLUDE,
lv_SUCCESS TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD CL_ABAP_DEBUGGER=>MODIFY_ST_BREAKPOINT(
EXPORTING
CALLED_BY_EDITOR = lv_CALLED_BY_EDITOR
INCLNAME = lv_INCLNAME
OPERATION = lv_OPERATION
PROGNAME = lv_PROGNAME
TEMPLATE = lv_TEMPLATE
INCLNAME = lv_INCLNAME
IMPORTING
SUCCESS = lv_SUCCESS
SUCCESS = lv_SUCCESS
CHANGING
SRCLINE = lv_SRCLINE ).

Links to Related Class(s)

CL_ABAP_...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!