GET_COURSE_DETAILS SAP Method Gets the details of the course
Below is documentation, parameters and attributes of ABAP Method GET_COURSE_DETAILS within SAP class /XLSO/CL_INSTRUCTOR. 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 /XLSO/CL_INSTRUCTOR into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_COURSE_DETAILS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_COURSE_DETAILS
.| Name | Type | Data Type | Description | Default Value |
| IS_COURSE | Importing | TYPE /XLSO/S_COURSE_CRITERIA | Course Data | |
| ES_COURSE_DESCIPTION | Exporting | TYPE /XLSO/S_COURSE_DESC | Course Desciption | |
| ES_COURSE_MATERIAL | Exporting | TYPE /XLSO/S_COURSE_MATERIAL | Course Material Details (Course Type Content) | |
| ES_INTERNAL_INFORMATION | Exporting | TYPE /XLSO/S_INTERNAL_INFORMATION | Course Internal Information | |
| ES_LOCATION | Exporting | TYPE /XLSO/S_COURSE_LOC_DETAILS | Location Details of the course | |
| ES_ROOM_EQUIPMENT | Exporting | TYPE /XLSO/S_COURSE_ROOM | Course Room | |
| ET_COURSE_CONTENT | Exporting | TYPE LSO_HRLINE79_T | Table Type for HRLINE79 | |
| ET_DOCUMENTS | Exporting | TYPE LSO_DOCUMENTS_T | Table for Documents | |
| ET_EXTD_COURSE_TEXT | Exporting | TYPE LSO_HRLINE79_T | Table Type for HRLINE79 | |
| ET_PARTICIPANT_LIST | Exporting | TYPE /XLSO/TT_COURSE_PARTICIPANTS | Course Participant | |
| ET_WEB_LINKS | Exporting | TYPE LSO_WEB_LINK_T | Course Web Link | |
| EV_BOOKING_STATUS | Exporting | TYPE STRING | ||
| EV_DELIVERY_METHOD | Exporting | TYPE LSO_TFORM_C | Delivery Method |
Exceptions of Method GET_COURSE_DETAILS
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: lo_class TYPE REF TO /XLSO/CL_INSTRUCTOR.
DATA: lv_ES_COURSE_DESCIPTION TYPE /XLSO/S_COURSE_DESC,
lv_ES_COURSE_MATERIAL TYPE /XLSO/S_COURSE_MATERIAL,
lv_ES_INTERNAL_INFORMATION TYPE /XLSO/S_INTERNAL_INFORMATION,
lv_ES_LOCATION TYPE /XLSO/S_COURSE_LOC_DETAILS,
lv_ES_ROOM_EQUIPMENT TYPE /XLSO/S_COURSE_ROOM,
lv_ET_COURSE_CONTENT TYPE LSO_HRLINE79_T,
lv_ET_DOCUMENTS TYPE LSO_DOCUMENTS_T,
lv_ET_EXTD_COURSE_TEXT TYPE LSO_HRLINE79_T,
lv_ET_PARTICIPANT_LIST TYPE /XLSO/TT_COURSE_PARTICIPANTS,
lv_ET_WEB_LINKS TYPE LSO_WEB_LINK_T,
lv_EV_BOOKING_STATUS TYPE STRING,
lv_EV_DELIVERY_METHOD TYPE LSO_TFORM_C,
lv_IS_COURSE TYPE /XLSO/S_COURSE_CRITERIA,
lv_other TYPE c.
CALL METHOD lo_class=>GET_COURSE_DETAILS(
EXPORTING
IS_COURSE = lv_IS_COURSE
IMPORTING
ES_COURSE_DESCIPTION = lv_ES_COURSE_DESCIPTION
ES_COURSE_MATERIAL = lv_ES_COURSE_MATERIAL
ES_INTERNAL_INFORMATION = lv_ES_INTERNAL_INFORMATION
ES_LOCATION = lv_ES_LOCATION
ES_ROOM_EQUIPMENT = lv_ES_ROOM_EQUIPMENT
ET_COURSE_CONTENT = lv_ET_COURSE_CONTENT
ET_DOCUMENTS = lv_ET_DOCUMENTS
ET_EXTD_COURSE_TEXT = lv_ET_EXTD_COURSE_TEXT
ET_PARTICIPANT_LIST = lv_ET_PARTICIPANT_LIST
ET_WEB_LINKS = lv_ET_WEB_LINKS
EV_BOOKING_STATUS = lv_EV_BOOKING_STATUS
EV_DELIVERY_METHOD = lv_EV_DELIVERY_METHOD ).
Links to Related Class(s)
/XLSO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects