HRUA_MILITARY_LIST 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 HRUA_MILITARY_LIST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
HRUA_MILITARY_LIST - Military Status List
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.
Selection Text: P_DATE = D .
Selection Text: P_INSTL = D .
Selection Text: P_SOORT = D .
Selection Text: SO_CDDRA = D .
Title: Military Status List
Text Symbol: 001 = Military Data
Text Symbol: 002 = Date of list
INCLUDE PGDOCRU0.
No SAP DATABASE tables are accessed within this REPORT code!
HR_RU_IDENTITY_CARD CALL FUNCTION 'HR_RU_IDENTITY_CARD' EXPORTING BEGDA = pn-begda ENDDA = pn-endda RPTGR = g_milcrd * MOLGA = '33' IMPORTING * DOCDSC = ls_docdsc RE0290 = re0290 TABLES P0290 = p0290 EXCEPTIONS PRIORITY_NOT_FOUND = 1 DOCUMENT_NOT_FOUND = 2 OTHERS = 3 .
HR_RU_AGE_YEARS CALL FUNCTION 'HR_RU_AGE_YEARS' EXPORTING pernr = pernr-pernr bsdte = pn-begda IMPORTING value = lt_tab-emage EXCEPTIONS record_not_found = 1 strange_birth_date = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_structure_name = 'PRU_MILITARY_LIST' i_save = 'A' is_variant = gs_variant TABLES t_outtab = lt_tab EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2 .
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' "#EC * EXPORTING fieldname = 'CDPFL' tabname = 'T7RUM0' IMPORTING select_value = p_cddra TABLES fields = ihelp_fields valuetab = helptab EXCEPTIONS field_not_in_ddic = 1 more_then_one_selectfield = 2 no_selectfield = 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.