MULTI_ATTACH SAP Method Multiple Attach (Requires this Method)
Below is documentation, parameters and attributes of ABAP Method MULTI_ATTACH within SAP class CL_SHM_AREA. 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_SHM_AREA 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 directlyThe following technical details of method MULTI_ATTACH can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MULTI_ATTACH
.| Name | Type | Data Type | Description | Default Value |
| IGNORE_ERRORS | Importing | TYPE ABAP_BOOL | Further Processing of List After Error Occurs | |
| WAIT_TIME | Importing | TYPE I | Total Waiting Time for Request of All Locks (Milliseconds) | |
| ERROR_FLAG | Exporting | TYPE ABAP_BOOL | ABAP_TRUE When Error | |
| ATTACH_TAB | Changing | TYPE SHM_ATTACH_TAB | List of Attachments for Multi-Attach |
Exceptions of Method MULTI_ATTACH
This method does not have any exceptionsExample ABAP coding
DATA: lv_ATTACH_TAB TYPE SHM_ATTACH_TAB,
lv_ERROR_FLAG TYPE ABAP_BOOL,
lv_IGNORE_ERRORS TYPE ABAP_BOOL,
lv_WAIT_TIME TYPE I,
lv_other TYPE c.
CALL METHOD CL_SHM_AREA=>MULTI_ATTACH(
EXPORTING
IGNORE_ERRORS = lv_IGNORE_ERRORS
WAIT_TIME = lv_WAIT_TIME
IMPORTING
ERROR_FLAG = lv_ERROR_FLAG
CHANGING
ATTACH_TAB = lv_ATTACH_TAB ).
Links to Related Class(s)
CL_SHM_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects