LOAD_THEME_VECTOR SAP Method Load theme and flavor information in one vector for handling
Below is documentation, parameters and attributes of ABAP Method LOAD_THEME_VECTOR within SAP class CL_PERSONAS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_PERSONAS 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 LOAD_THEME_VECTOR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LOAD_THEME_VECTOR
.| Name | Type | Data Type | Description | Default Value |
| FLAVOR | Importing | TYPE PRSNAS_FLAVOR_ID | ||
| TCODE | Importing | TYPE TCODE | Transaction Code | |
| IV_FLAVOR | Importing | TYPE PRSNAS_E_FLAVOR_ID | Personas: Flavor ID | |
| IV_TCODE | Importing | TYPE TCODE | Transaction Code | |
| CSS_URL | Exporting | TYPE STRING | ||
| JPG_URL | Exporting | TYPE STRING | ||
| THEME_VECTOR | Exporting | TYPE T_THEMES | ||
| ET_THEME_VECTOR | Exporting | TYPE T_THEMES | ||
| EV_CSS_URL | Exporting | TYPE STRING | ||
| EV_JPG_URL | Exporting | TYPE STRING |
Exceptions of Method LOAD_THEME_VECTOR
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_CSS_URL TYPE STRING,
lv_FLAVOR TYPE PRSNAS_FLAVOR_ID,
lv_JPG_URL TYPE STRING,
lv_TCODE TYPE TCODE,
lv_THEME_VECTOR TYPE T_THEMES,
lv_ET_THEME_VECTOR TYPE T_THEMES,
lv_EV_CSS_URL TYPE STRING,
lv_EV_JPG_URL TYPE STRING,
lv_IV_FLAVOR TYPE PRSNAS_E_FLAVOR_ID,
lv_IV_TCODE TYPE TCODE,
lv_other TYPE c.
CALL METHOD CL_PERSONAS=>LOAD_THEME_VECTOR(
EXPORTING
FLAVOR = lv_FLAVOR
TCODE = lv_TCODE
IV_FLAVOR = lv_IV_FLAVOR
IV_TCODE = lv_IV_TCODE
IMPORTING
CSS_URL = lv_CSS_URL
JPG_URL = lv_JPG_URL
THEME_VECTOR = lv_THEME_VECTOR
ET_THEME_VECTOR = lv_ET_THEME_VECTOR
EV_CSS_URL = lv_EV_CSS_URL
EV_JPG_URL = lv_EV_JPG_URL ).
Links to Related Class(s)
CL_PERSO...Full list of available SAP object classes
Search for further information about these or an SAP related objects