SAP CL_HCPR_MODEL OO Class - HCPR Model Manager
CL_HCPR_MODEL 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 CL_HCPR_MODEL including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_HCPR_MODEL 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 Name | Description | Visability |
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD cl_hcpr_model=>CLASS_CONSTRUCTOR...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD cl_hcpr_model=>CONSTRUCTOR...more details | ||
| DESERIALIZE | Creates a Model Instance from EMF XMI Content | Public |
| CALL METHOD cl_hcpr_model=>DESERIALIZE...more details | ||
| DESERIALIZE_SAX | Deserialize via iXML in SAX mode | Private |
| CALL METHOD cl_hcpr_model=>DESERIALIZE_SAX...more details | ||
| DESERIALIZE_ST | Deserialize via simple transformation | Private |
| CALL METHOD cl_hcpr_model=>DESERIALIZE_ST...more details | ||
| GET_CONTENT_STATE | Returns the model content state | Public |
| CALL METHOD cl_hcpr_model=>GET_CONTENT_STATE...more details | ||
|
| ||
| GET_LANGUAGE | Returns the current language for localized texts | Public |
| CALL METHOD cl_hcpr_model=>GET_LANGUAGE...more details | ||
| GET_MODEL_VERSION | Return the Model Version | Public |
| CALL METHOD cl_hcpr_model=>GET_MODEL_VERSION...more details | ||
| GET_OBJECT_STATUS | Returns the object status (OBJSTAT) | Public |
| CALL METHOD cl_hcpr_model=>GET_OBJECT_STATUS...more details | ||
| GET_OBJECT_VERSION | Returns the current transient TLOGO object version | Public |
| CALL METHOD cl_hcpr_model=>GET_OBJECT_VERSION...more details | ||
| SERIALIZE | Serializes the model into EMF XMI format | Public |
| CALL METHOD cl_hcpr_model=>SERIALIZE...more details | ||
| SET_CONTNET_STATE | Sets the model conten state for editors | Public |
| CALL METHOD cl_hcpr_model=>SET_CONTNET_STATE...more details | ||
| SET_DESERIALIZATION_MODE | Sets the deserialization mode (see constants) | Public |
| CALL METHOD cl_hcpr_model=>SET_DESERIALIZATION_MODE...more details | ||
| SET_LANGUAGE | Sets the language for transient localized texts | Public |
| CALL METHOD cl_hcpr_model=>SET_LANGUAGE...more details | ||
| SET_OBJECT_STATUS | Sets the object status (OBJSTAT) | Public |
| CALL METHOD cl_hcpr_model=>SET_OBJECT_STATUS...more details | ||
| SET_OBJECT_VERSION | Sets the TLOGO object version as transient property | Public |
| CALL METHOD cl_hcpr_model=>SET_OBJECT_VERSION...more details | ||
CL_HCPR_MODEL 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.
| Name | Level | Description | Initial Value | Type | Visability |
| G_C_DESERIALIZE_SAX | Constant | Deserialization via SAX Parser | 2 | LIKE INT1 | Public |
| G_C_DESERIALIZE_ST | Constant | Deserialization via Simple Transformation | 1 | LIKE INT1 | Public |
| P_CONTENT_STATE | Instance Attribute | Model Content State for editor | LIKE STRING | Protected | |
| P_C_COMPOSITE_ROOT | Constant | 'composite_root' | LIKE STRING | Private | |
| P_C_TLOGO | Constant | BW: Object Type (TLOGO) | RS_C_TLOGO-HCPR | LIKE RSTLOGO | Private |
| P_DESERIALIZATION_MODE | Instance Attribute | Deserialization Mode | G_C_DESERIALIZE_ST | LIKE INT1 | Private |
| P_LANGUAGE | Instance Attribute | Current Language fpr localized texts | LIKE SYLANGU | Private | |
| P_OBJSTAT | Instance Attribute | Object Status for this version | LIKE RSOBJSTAT | Protected | |
| P_OBJVERS | Instance Attribute | Transient TLOGO Object version | LIKE RSOBJVERS | Private | |
| P_R_VERSION | Instance Attribute | Model Version Mapping for this Instance | LIKE TP_S_MODEL_VERSION_MAP | Private | |
| P_T_VERSION_MAP | Static Attribute | Model Version Map | LIKE TP_TH_MODEL_VERSION_MAP | Protected |
CL_HCPR_MODEL types
TP_S_MODEL_VERSION_MAP - Model Version Mapping EntryTP_TH_MODEL_VERSION_MAP - Model Version Map
Links to Related Class(s)
CL_HCPR_...Full list of available SAP object classes
Search for further information about these or an SAP related objects