FORMS_LSO_CP is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FORMS_LSO_CP into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LSO_TRAININGTYPE_GET_TFORM_C * CALL FUNCTION 'LSO_TRAININGTYPE_GET_TFORM_C' * EXPORTING * plvar = objects_to_check-plvar * otype = objects_to_check-otype * objid = objects_to_check-objid * IMPORTING * trainingform = local_tform * EXCEPTIONS * error_occured = 1 * not_found = 2 * no_trainingform_maintained = 3 * OTHERS = 4.
LSO_TRAINING_GET_TFORM * CALL FUNCTION 'LSO_TRAINING_GET_TFORM' * EXPORTING * plvar = objects_to_check-plvar * otype = objects_to_check-otype * objid = objects_to_check-objid * IMPORTING * trainingform = local_tform * EXCEPTIONS * error_occured = 1 * not_found = 2 * no_trainingform_maintained = 3 * OTHERS = 4.
RH_MACO CALL FUNCTION 'RH_MACO' EXPORTING seark = maco_seark seark_text = maco_text plvar = maco_plvar otype = maco_otype set_mode = 'X' callback_prog = sy-repid callback_form = 'CALLBACK_RHMACO' TABLES sel_objects = maco_objects EXCEPTIONS nothing_found = 1 OTHERS = 4.
ASK_OTYPE CALL FUNCTION 'ASK_OTYPE' EXPORTING d_otype = p_pchotype IMPORTING otype = p_pchotype EXCEPTIONS no_otype_set = 2 wrong_otype_set = 4.
RH_OBJID_REQUEST CALL FUNCTION 'RH_OBJID_REQUEST' EXPORTING plvar = p_pchplvar otype = p_pchotype dynpro_repid = %f4_repid dynpro_dynnr = %f4_dynnr dynpro_plvarfield = pchplvar dynpro_otypefield = pchotype set_mode = 'X' callback_prog = sy-repid callback_form = 'CALLBACK_RHMACO' IMPORTING sel_plvar = %f4_plvar sel_otype = %f4_otype TABLES sel_objects = %f4_sel_objects marked_objects = %f4_marked_objects EXCEPTIONS cancelled = 1 wrong_condition = 2 nothing_found = 3 illegal_mode = 4 internal_error = 5 OTHERS = 6.
LSO_TFORM_GETLIST_C CALL FUNCTION 'LSO_TFORM_GETLIST_C' TABLES delivery_method = lt_tform EXCEPTIONS no_format = 1 OTHERS = 2.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'TFORM' values = lt_vrm_value EXCEPTIONS id_illegal_name = 1 OTHERS = 1.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'TFORM2' values = lt_vrm_value EXCEPTIONS id_illegal_name = 1 OTHERS = 1.
LSO_TRAINING_GET_TFORM * CALL FUNCTION 'LSO_TRAINING_GET_TFORM' * EXPORTING * plvar = $plvar * otype = pchotype * objid = lv_objid * IMPORTING * trainingform = ls_tform * EXCEPTIONS * error_occured = 1 * not_found = 2 * no_trainingform_maintained = 3 * OTHERS = 4.
LSO_TRAININGTYPE_GET_TFORM_C * CALL FUNCTION 'LSO_TRAININGTYPE_GET_TFORM_C' * EXPORTING * plvar = $plvar * otype = pchotype * objid = lv_objid ** GETDEFAULT = 'X' * IMPORTING * trainingform = ls_tform ** READBYDEFAULT = * EXCEPTIONS * error_occured = 1 * not_found = 2 * no_trainingform_maintained = 3 * OTHERS = 4.
RH_READ_INFTY_1000 CALL FUNCTION 'RH_READ_INFTY_1000' TABLES i1000 = lt_1000 objects = trainings_list EXCEPTIONS nothing_found = 1 wrong_condition = 2 wrong_parameters = 3 OTHERS = 4.
LSO_GET_PARTICIPANTS CALL FUNCTION 'LSO_GET_PARTICIPANTS' EXPORTING begda = pchbegda endda = pchendda TABLES trainings = trainings_list participants = it_participant EXCEPTIONS no_participant = 1 no_event_found = 2 wrong_condition = 3 OTHERS = 4.
LSO_CP_REPORT_SCORMDATA * CALL FUNCTION 'LSO_CP_REPORT_SCORMDATA' * EXPORTING * tpartdoc = it_tpartdocs * IMPORTING * return = return * TABLES * values = it_scorm_data * elements = it_elements.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.