SAP /SCTM/CL_ROUTE OO Class - Route









/SCTM/CL_ROUTE is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /SCTM/CL_ROUTE including details of:

  • Interface class implementations
  • Inheritance details
  • Methods defined within class ( including link to full details )
  • Attributes ( including initial values )
  • Class Events

Inheritance

This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for /SCTM/CL_ROUTE is /SCTM/CL_BASIC_ROUTE

Method list of /SCTM/CL_ROUTE SAP class


A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD. Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...


Method NameDescriptionVisability
ADD_LEGPublic
CALL METHOD /sctm/cl_route=>ADD_LEG...more details

CHECK_DG_CATEGORY_FITSCheck: Dangerous Goods Check RelevancePublic
CALL METHOD /sctm/cl_route=>CHECK_DG_CATEGORY_FITS...more details

CHECK_LINEAR_DIMENSIONSCheck: DimensionsPublic
CALL METHOD /sctm/cl_route=>CHECK_LINEAR_DIMENSIONS...more details

CHECK_REQ_TYPESCheck: Request TypePublic
CALL METHOD /sctm/cl_route=>CHECK_REQ_TYPES...more details

CHECK_SHIP_CONDSCheck: Shipping ConditionPublic
CALL METHOD /sctm/cl_route=>CHECK_SHIP_CONDS...more details

CHECK_TRANSPORT_GROUPSCheck: Transportation GroupPublic
CALL METHOD /sctm/cl_route=>CHECK_TRANSPORT_GROUPS...more details

CHECK_VOLUMECheck: VolumePublic
CALL METHOD /sctm/cl_route=>CHECK_VOLUME...more details

CHECK_WEIGHTCheck: WeightPublic
CALL METHOD /sctm/cl_route=>CHECK_WEIGHT...more details

CONSTRUCTORCONSTRUCTORPublic
CALL METHOD /sctm/cl_route=>CONSTRUCTOR...more details

DELETE_LEGLeg for Item Specified in Direction SpecifiedPublic
CALL METHOD /sctm/cl_route=>DELETE_LEG...more details

FIND_LEGSDetermination of All LegsPrivate
CALL METHOD /sctm/cl_route=>FIND_LEGS...more details

GET_DG_PROFILES_DATAPrivate
CALL METHOD /sctm/cl_route=>GET_DG_PROFILES_DATA...more details

GET_LEAD_TIMEDetermination of Lead TimePublic
CALL METHOD /sctm/cl_route=>GET_LEAD_TIME...more details

GET_LEGLeg for Item Specified in Direction SpecifiedPublic
CALL METHOD /sctm/cl_route=>GET_LEG...more details

GET_LOC_FRStart Location (Initial If First Stop Is Not a Location)Public
CALL METHOD /sctm/cl_route=>GET_LOC_FR...more details

GET_LOC_TODestination Location (Initial If Last Stop Is Not a Loc.)Public
CALL METHOD /sctm/cl_route=>GET_LOC_TO...more details

GET_MAX_LEGGet maximum legPublic
CALL METHOD /sctm/cl_route=>GET_MAX_LEG...more details

GET_MIN_LEGGet minimum legPublic
CALL METHOD /sctm/cl_route=>GET_MIN_LEG...more details

GET_NEXT_LEGSubsequent LegPublic
CALL METHOD /sctm/cl_route=>GET_NEXT_LEG...more details

GET_NUMB_LEGSNumber of LegsPublic
CALL METHOD /sctm/cl_route=>GET_NUMB_LEGS...more details

GET_PREV_LEGPreliminary LegPublic
CALL METHOD /sctm/cl_route=>GET_PREV_LEG...more details

GET_SPOT_FRStart SC UnitPublic
CALL METHOD /sctm/cl_route=>GET_SPOT_FR...more details

GET_SPOT_TODestination SC UnitPublic
CALL METHOD /sctm/cl_route=>GET_SPOT_TO...more details

IS_DANGEROUSIs Product with Given Profile Dangerous Goods?Public
CALL METHOD /sctm/cl_route=>IS_DANGEROUS...more details

LEGS_FOUNDAre the Legs Already Defined?Private
CALL METHOD /sctm/cl_route=>LEGS_FOUND...more details



/SCTM/CL_ROUTE attributes

List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.

NameLevelDescriptionInitial ValueTypeVisability
MO_LEGSInstance AttributeSequence of LegsLIKE
/SCTM/CL_OBJECT_SEQUENCE
Private
MS_DIM_RESTRICTInstance AttributeLength/Width/HeightLIKE
/SCMB/S_LINEAR_DIMENSIONS
Public
MS_VOL_RESTRICTInstance AttributeVolume Restrictions for Individual and Complete PerspectiveLIKE
/SCMB/S_VOLUME_RESTRICTIONS
Public
MS_WGT_RESTRICTInstance AttributeWeight Restrictions for Individual and Complete PerspectiveLIKE
/SCMB/S_WEIGHT_RESTRICTIONS
Public
MT_EDGESInstance AttributeNumber of Edges for This RouteLIKE
/SCMB/TT_EDGE
Public
MT_LEAD_TIMESInstance AttributeQuantity of Lead Times Depending on Request TypeLIKE
/SCTM/TT_LEAD_TIME
Private
MT_REQ_TYPESInstance AttributeNumber of Request TypesLIKE
/SCTM/TT_REQ_TYPE
Private
MT_SHIP_CONDSInstance AttributeQuantity of Shipping ConditionsLIKE
/SCTM/TT_SHIP_COND
Public
MT_TRANS_GROUPSInstance AttributeQuantity of Transportation GroupsLIKE
/SCTM/TT_TRANS_GRP
Public
MV_DG_CATEGORYInstance AttributeDangerous Goods: Product CategoriesLIKE
/SCMB/DE_DG_CATEGORY
Public
MV_EHS_CHECKInstance AttributeIs Dangerous Goods Check Necessary or Desired?LIKE
/SCMB/DE_EHS_CHECK
Public
MV_GTS_GROUPInstance AttributeGrouping of GTS Codes for RouteLIKE
/SCMB/DE_GTS_GROUP
Public
MV_LEGS_FOUNDInstance AttributeDoes This Route Already Contain All Legs?LIKE
BOOLE_D
Private
ST_DG_PROFILESStatic AttributeNumber of Dangerous Goods ProfilesLIKE
/SCTM/TT_DG_PROFILE
Private


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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!