WEB_EVALUATION_CREATE is a standard Executable ABAP Report 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 WEB_EVALUATION_CREATE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WEB_EVAL_CREATE - Create Evaluation
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.
Title: Web Evaluation: Create Evaluation
INCLUDE WEB_EVALUATION_INCLUDE.
No SAP DATABASE tables are accessed within this REPORT code!
ITS_IMPORT_CONTEXT call function 'ITS_IMPORT_CONTEXT' tables context = gt_context exceptions its_not_available = 1 others = 2.
RH_GET_ACTIVE_WF_PLVAR call function 'RH_GET_ACTIVE_WF_PLVAR' * EXPORTING * ASK_PLVAR_DIALOG = * SET_DEFAULT_PLVAR = importing act_plvar = g_planversion exceptions no_active_plvar = 0 others = 0.
RH_READ_OBJECT call function 'RH_READ_OBJECT' exporting plvar = g_planversion otype = $appsc objid = g_eval_sheet exceptions not_found = 1 others = 2.
RH_EXIST_OBJECT call function 'RH_EXIST_OBJECT' exporting plvar = g_planversion otype = g_appraisee_otype * OBJID = '00000000' realo = g_appraisee_sobid * IMPORTING * EXTERNAL_OBJECT = exceptions not_found = 1 others = 2.
CONVERT_DATE_TO_INTERNAL call function 'CONVERT_DATE_TO_INTERNAL' exporting date_external = gt_context-fieldcont importing date_internal = g_begda exceptions date_external_is_invalid = 1 others = 2.
CONVERT_DATE_TO_INTERNAL call function 'CONVERT_DATE_TO_INTERNAL' exporting date_external = gt_context-fieldcont importing date_internal = g_endda exceptions date_external_is_invalid = 1 others = 2.
GRM_RECEIVE_DATA call function 'GRM_RECEIVE_DATA' importing * OBJECTS_FROM_LOGSYS = funckey = g_funckey begin_date = g_role_begda end_date = g_role_endda * EVPATH = * TRANSACTIONCODE = * PROGRAMNAME = * PROGRAMVARIANT = * FUNCTIONMODULE = tables objects = gt_role_objects exceptions its_not_available = 1 others = 2.
RH_READ_INFTY call function 'RH_READ_INFTY' exporting * AUTHORITY = 'DISP' * WITH_STRU_AUTH = 'X' infty = '1043' * ISTAT = ' ' * EXTEND = 'X' * SUBTY = ' ' * BEGDA = '19000101' * ENDDA = '99991231' * CONDITION = '00000' * INFTB = '1' * SORT = 'X' * VIA_T777D = ' ' tables innnn = gt_i1043 objects = gt_object exceptions all_infty_with_subty = 0 nothing_found = 0 no_objects = 0 wrong_condition = 0 others = 0.
CRIF_WEB_EVAL_APPRAISER_CHECK call function 'CRIF_WEB_EVAL_APPRAISER_CHECK' exporting planversion = g_planversion eval_form_id = g_bs_aform_id tables appraisers = gt_appraisers appraisees = gt_appraisees exceptions function_not_supported = 1 not_allowed = 2 others = 3.
GRM_DISPLAY_POPUP_NO_OBJECTS call function 'GRM_DISPLAY_POPUP_NO_OBJECTS'.
WEB_EVALUATION_SHOW call function 'WEB_EVALUATION_SHOW' exporting planversion = g_planversion * EVALUATION_ID = mode = 'N' "create evaluation new_eval_model_id = g_eval_sheet * NEW_EVAL_FORM_ID = * NEW_EVAL_STEXT = new_eval_begda = g_begda new_eval_endda = g_endda new_eval_date = g_evaluation_date skip_header_input = g_skip_header_input input_eval_name = g_evaluation_name_input input_appraiser = g_appraiser_input input_appraisee = g_appraisee_input input_eval_period = g_evaluation_period_input input_eval_date = g_evaluation_date_input no_button_change_header = g_no_button_change_header no_button_calculate = g_no_button_calculate no_button_save = g_no_button_save no_button_complete = g_no_button_complete * IMPORTING * NEW_APPRAISAL_ID = tables appraisers = gt_appraisers appraisees = gt_appraisees * APPRAISAL = exceptions function_not_supported = 1 no_authority = 2 nothing_found = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.