GET_DEF_PACK_SIZE SAP Method Get default package size for a certain batch job
Below is documentation, parameters and attributes of ABAP Method GET_DEF_PACK_SIZE within SAP class /SCMTMS/CL_BATCH_HELPER_80. 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 /SCMTMS/CL_BATCH_HELPER_80 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 GET_DEF_PACK_SIZE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DEF_PACK_SIZE
.| Name | Type | Data Type | Description | Default Value |
| IV_BATCH_JOB_NAME | Importing | TYPE STRING | ||
| RV_DEF_PACK_SIZE | Returning | TYPE /SCMTMS/PARA_PACK_SIZE | Package Size |
Exceptions of Method GET_DEF_PACK_SIZE
This method does not have any exceptionsExample ABAP coding
DATA: lv_IV_BATCH_JOB_NAME TYPE STRING,
lv_RV_DEF_PACK_SIZE TYPE /SCMTMS/PARA_PACK_SIZE,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_BATCH_HELPER_80=>GET_DEF_PACK_SIZE(
EXPORTING
IV_BATCH_JOB_NAME = lv_IV_BATCH_JOB_NAME
RECEIVING
RV_DEF_PACK_SIZE = lv_RV_DEF_PACK_SIZE )
"Alternate coding for Method Call with returning parameter
lv_RV_DEF_PACK_SIZE = /SCMTMS/CL_BATCH_HELPER_80=>GET_DEF_PACK_SIZE(
EXPORTING
IV_BATCH_JOB_NAME = lv_IV_BATCH_JOB_NAME ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects