GET_REQ_RENDER_00002 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name GET_REQ_RENDER_00002 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
HRXSS_IN_IT_00002
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'GET_REQ_RENDER_00002' "Get the Details depending on the operation
EXPORTING
ifd_rqopr = " pin_rqopr Request Operation for Request Customizing RFC
ifd_apern = " p_pernr Personnel Number
CHANGING
cst_reqdt = " pin_emp_struct Structure for EMP RFC
ctb_hlscr = " hressinshva Table Type to store Standard Header Field View Attributes
ctb_hldcr = " hressin_custom_fe_fields Table to hold front end custom fields
ctb_mldcr = " hressin_custom_fe_fields Table to hold front end custom fields
cst_gadat = " pin_genapp_struct General Application Structure
. " GET_REQ_RENDER_00002
The ABAP code below is a full code listing to execute function module GET_REQ_RENDER_00002 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_cst_reqdt) = 'Check type of data required'.
DATA(ld_ctb_hlscr) = 'Check type of data required'.
DATA(ld_ctb_hldcr) = 'Check type of data required'.
DATA(ld_ctb_mldcr) = 'Check type of data required'.
DATA(ld_cst_gadat) = 'Check type of data required'.
DATA(ld_ifd_rqopr) = 'Check type of data required'.
DATA(ld_ifd_apern) = 'Check type of data required'. . CALL FUNCTION 'GET_REQ_RENDER_00002' EXPORTING ifd_rqopr = ld_ifd_rqopr ifd_apern = ld_ifd_apern CHANGING cst_reqdt = ld_cst_reqdt ctb_hlscr = ld_ctb_hlscr ctb_hldcr = ld_ctb_hldcr ctb_mldcr = ld_ctb_mldcr cst_gadat = ld_cst_gadat . " GET_REQ_RENDER_00002
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_cst_reqdt | TYPE PIN_EMP_STRUCT , |
| ld_ifd_rqopr | TYPE PIN_RQOPR , |
| ld_ctb_hlscr | TYPE HRESSINSHVA , |
| ld_ifd_apern | TYPE P_PERNR , |
| ld_ctb_hldcr | TYPE HRESSIN_CUSTOM_FE_FIELDS , |
| ld_ctb_mldcr | TYPE HRESSIN_CUSTOM_FE_FIELDS , |
| ld_cst_gadat | TYPE PIN_GENAPP_STRUCT . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name GET_REQ_RENDER_00002 or its description.