_WRITE SAP Method of class CL_PROXY_APPL_LOG
Below is documentation, parameters and attributes of ABAP Method _WRITE within SAP class CL_PROXY_APPL_LOG. 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_PROXY_APPL_LOG into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method _WRITE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method _WRITE
.| Name | Type | Data Type | Description | Default Value |
| DAYS_TO_KEEP | Importing | TYPE I | ||
| EXTNUMBER | Importing | TYPE BALNREXT | ||
| FLUSH | Importing | TYPE SY-INPUT | ||
| MSGID | Importing | TYPE SY-MSGID | ||
| MSGNO | Importing | TYPE SY-MSGNO | ||
| MSGTY | Importing | TYPE SY-MSGTY | ||
| MSGV1 | Importing | TYPE SY-MSGV1 | ||
| MSGV2 | Importing | TYPE SY-MSGV2 | ||
| MSGV3 | Importing | TYPE SY-MSGV3 | ||
| MSGV4 | Importing | TYPE SY-MSGV4 | ||
| PROGNAME | Importing | TYPE C | ||
| SUBOBJ | Importing | TYPE BALHDR-SUBOBJECT |
Exceptions of Method _WRITE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_PROXY_APPL_LOG.
DATA: lv_DAYS_TO_KEEP TYPE I,
lv_EXTNUMBER TYPE BALNREXT,
lv_FLUSH TYPE SY-INPUT,
lv_MSGID TYPE SY-MSGID,
lv_MSGNO TYPE SY-MSGNO,
lv_MSGTY TYPE SY-MSGTY,
lv_MSGV1 TYPE SY-MSGV1,
lv_MSGV2 TYPE SY-MSGV2,
lv_MSGV3 TYPE SY-MSGV3,
lv_MSGV4 TYPE SY-MSGV4,
lv_PROGNAME TYPE C,
lv_SUBOBJ TYPE BALHDR-SUBOBJECT,
lv_other TYPE c.
CALL METHOD lo_class=>_WRITE(
EXPORTING
DAYS_TO_KEEP = lv_DAYS_TO_KEEP
EXTNUMBER = lv_EXTNUMBER
FLUSH = lv_FLUSH
MSGID = lv_MSGID
MSGNO = lv_MSGNO
MSGTY = lv_MSGTY
MSGV1 = lv_MSGV1
MSGV2 = lv_MSGV2
MSGV3 = lv_MSGV3
MSGV4 = lv_MSGV4
PROGNAME = lv_PROGNAME
SUBOBJ = lv_SUBOBJ ).
Links to Related Class(s)
CL_PROXY...Full list of available SAP object classes
Search for further information about these or an SAP related objects