ZONE_TYPES SAP Method Return All Other Specific Zone Types
Below is documentation, parameters and attributes of ABAP Method ZONE_TYPES within SAP class /SCTM/CL_ZONE. 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 /SCTM/CL_ZONE 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 ZONE_TYPES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ZONE_TYPES
.| Name | Type | Data Type | Description | Default Value |
| IV_GIVEN_ZONE_TYPE | Importing | TYPE /SCMB/DE_TYPE_ZONE | Classification of Zones | |
| IV_SIGN | Importing | TYPE /SCMB/DE_SIGN | Indicator for Inclusion (with) or Exclusion (Without) | |
| ET_ZONE_TYPES | Exporting | TYPE /SCTM/TT_ZONE_TYPE | Quantity of Zone Types |
Exceptions of Method ZONE_TYPES
/SCTM/CX_TM_RG_CODE - Internal Programming Error in Routing GuideExample ABAP coding
DATA: lv_ET_ZONE_TYPES TYPE /SCTM/TT_ZONE_TYPE,
lv_IV_GIVEN_ZONE_TYPE TYPE /SCMB/DE_TYPE_ZONE,
lv_IV_SIGN TYPE /SCMB/DE_SIGN,
lv_other TYPE c.
CALL METHOD /SCTM/CL_ZONE=>ZONE_TYPES(
EXPORTING
IV_GIVEN_ZONE_TYPE = lv_IV_GIVEN_ZONE_TYPE
IV_SIGN = lv_IV_SIGN
IMPORTING
ET_ZONE_TYPES = lv_ET_ZONE_TYPES ).
Links to Related Class(s)
/SCTM/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects