SAP Reports / Programs | Cross-Application Components | General Application Functions | Appraisal Systems(CA-GTF-AP-AP) SAP CA

RHPE_WWW_MY_APPRAISAL_CREATE SAP ABAP Report - Create Appraisal







RHPE_WWW_MY_APPRAISAL_CREATE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to create an appraisal for a planning object...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RHPE_WWW_MY_APPRAISAL_CREATE into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

PP_MY_APP_CREATE - Create Appraisal


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RHPE_WWW_MY_APPRAISAL_CREATE. "Basic submit
SUBMIT RHPE_WWW_MY_APPRAISAL_CREATE AND RETURN. "Return to original report after report execution complete
SUBMIT RHPE_WWW_MY_APPRAISAL_CREATE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: GDATE = Key date
Selection Text: MAINTAIN = Change
Selection Text: PLVAR = Plan version
Title: Create Appraisal


INCLUDES used within this REPORT RHPE_WWW_MY_APPRAISAL_CREATE

INCLUDE RHPEINI0.
INCLUDE AVWRTCXM.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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_plvar EXCEPTIONS NO_ACTIVE_PLVAR = 0 OTHERS = 0.

RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING PLVAR = g_plvar OTYPE = $appsc OBJID = g_appmodel 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.

FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' "XSC DC EXPORTING FUNCNAME = l_function_module EXCEPTIONS FUNCTION_NOT_EXIST = 1 OTHERS = 2.

RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING PLVAR = g_plvar OTYPE = g_appraisee_otype REALO = g_appraisee_sobid EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

RHPA_SHOW_APPRAISAL CALL FUNCTION 'RHPA_SHOW_APPRAISAL' EXPORTING plvar = g_plvar * APPRAISAL_ID = maintain = 'N' new_appscheme_id = g_appmodel new_app_date = g_adate new_individ_app_only = 'X' new_app_begda = g_begda new_app_endda = g_endda * NEW_STEXT = "STEXT * SUPPRESS_FIRST_SCREEN = ' ' INP_OFF_APP_TEXT = 'H'"HIDE INP_OFF_APPRAISOR = 'H' INP_OFF_APPRAISEE = l_inp_off_appraisee INP_OFF_APPDATE = l_inp_off_dates CREATE_WORKLOAD = ' ' classic = ' ' IMPORTING NEW_APPRAISAL_ID = g_new_appraisal_id * F15 = TABLES APPRAISORS = lt_appraiser appraisees = lt_appraisee EXCEPTIONS no_authority = 1 nothing_found = 2 definition_error = 3 OTHERS = 4.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RHPE_WWW_MY_APPRAISAL_CREATE or its description.