SAP LSO_EVALUATION_GET_URL_CREATE Function Module for









LSO_EVALUATION_GET_URL_CREATE is a standard lso evaluation get url create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for lso evaluation get url create FM, simply by entering the name LSO_EVALUATION_GET_URL_CREATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: LSO_IF_EVALUATION
Program Name: SAPLLSO_IF_EVALUATION
Main Program: SAPLLSO_IF_EVALUATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function LSO_EVALUATION_GET_URL_CREATE pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'LSO_EVALUATION_GET_URL_CREATE'"
EXPORTING
PLAN_VERSION = "
TRAINING_TYPE = "
TRAINING_ID = "
PARTICIPANT_TYPE = "
PARTICIPANT_ID = "
* BEGDA = "

IMPORTING
URL = "

EXCEPTIONS
EVALUATION_OFF = 1 TRAINING_NOT_FOUND = 2 WRONG_TEMPLATE = 3
.



IMPORTING Parameters details for LSO_EVALUATION_GET_URL_CREATE

PLAN_VERSION -

Data type: PLVAR
Optional: No
Call by Reference: No ( called with pass by value option)

TRAINING_TYPE -

Data type: OTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

TRAINING_ID -

Data type: HROBJID
Optional: No
Call by Reference: No ( called with pass by value option)

PARTICIPANT_TYPE -

Data type: OTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

PARTICIPANT_ID -

Data type: SOBID
Optional: No
Call by Reference: No ( called with pass by value option)

BEGDA -

Data type: LSO_PARTICIPATION_BEGDA
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for LSO_EVALUATION_GET_URL_CREATE

URL -

Data type: STRING
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

EVALUATION_OFF -

Data type:
Optional: No
Call by Reference: Yes

TRAINING_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

WRONG_TEMPLATE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for LSO_EVALUATION_GET_URL_CREATE Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_url  TYPE STRING, "   
lv_plan_version  TYPE PLVAR, "   
lv_evaluation_off  TYPE PLVAR, "   
lv_training_type  TYPE OTYPE, "   
lv_training_not_found  TYPE OTYPE, "   
lv_training_id  TYPE HROBJID, "   
lv_wrong_template  TYPE HROBJID, "   
lv_participant_type  TYPE OTYPE, "   
lv_participant_id  TYPE SOBID, "   
lv_begda  TYPE LSO_PARTICIPATION_BEGDA. "   

  CALL FUNCTION 'LSO_EVALUATION_GET_URL_CREATE'  "
    EXPORTING
         PLAN_VERSION = lv_plan_version
         TRAINING_TYPE = lv_training_type
         TRAINING_ID = lv_training_id
         PARTICIPANT_TYPE = lv_participant_type
         PARTICIPANT_ID = lv_participant_id
         BEGDA = lv_begda
    IMPORTING
         URL = lv_url
    EXCEPTIONS
        EVALUATION_OFF = 1
        TRAINING_NOT_FOUND = 2
        WRONG_TEMPLATE = 3
. " LSO_EVALUATION_GET_URL_CREATE




ABAP code using 7.40 inline data declarations to call FM LSO_EVALUATION_GET_URL_CREATE

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 


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!