INSERT_POSTAL_ZONE SAP Method Generate New Zone
Below is documentation, parameters and attributes of ABAP Method INSERT_POSTAL_ZONE within SAP class /SCTM/CL_M_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_M_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 INSERT_POSTAL_ZONE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method INSERT_POSTAL_ZONE
.| Name | Type | Data Type | Description | Default Value |
| EO_ZONE | Exporting | TYPE REF TO /SCTM/CL_M_ZONE | Maintenance: Zone | |
| CS_PZONE_HD | Changing | TYPE /SCTM/S_AD_ZONE_HD | Adapter: Zone Header | |
| CT_PCODE_INTERVALS | Changing | TYPE /SCTM/TT_AD_PCODE_INTERV | Adapter: Postal Code Interval |
Exceptions of Method INSERT_POSTAL_ZONE
This method does not have any exceptionsExample ABAP coding
DATA: lv_CS_PZONE_HD TYPE /SCTM/S_AD_ZONE_HD,
lv_CT_PCODE_INTERVALS TYPE /SCTM/TT_AD_PCODE_INTERV,
lv_EO_ZONE TYPE /SCTM/CL_M_ZONE,
lv_other TYPE c.
CALL METHOD /SCTM/CL_M_ZONE=>INSERT_POSTAL_ZONE(
IMPORTING
EO_ZONE = lv_EO_ZONE
CHANGING
CS_PZONE_HD = lv_CS_PZONE_HD
CT_PCODE_INTERVALS = lv_CT_PCODE_INTERVALS ).
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