SELDIALG is a standard ABAP INCLUDE 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 SELDIALG into the relevant SAP transactions such as SE38 or SE80
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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELECT_OPTIONS_OPTIONS CALL FUNCTION 'RS_SET_SELECT_OPTIONS_OPTIONS' EXPORTING high =
low = option = option_set = optionset selcname = '' selctext = 'Generischer Parameter'(005) sign = IMPORTING option = sign = EXCEPTIONS not_executed = 1 delete_line = 2.
G_MATCHCODE_GET CALL FUNCTION 'G_MATCHCODE_GET' EXPORTING domname = ' ' tabname = lv_tabname fieldname = lv_fieldname IMPORTING mc_object = lv_matchcode EXCEPTIONS no_mc_object_found = 1.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = lv_tabname fieldname = lv_fieldname TABLES dfies_tab = lt_fieldinfo.
RS_COMPLEX_SELECTION CALL FUNCTION 'RS_COMPLEX_SELECTION' EXPORTING p_sscr = ls_sscr p_report = call_report p_screen_low = ls_fieldname_low p_screen_high = ls_fieldname_high p_sscr_index = 1 p_just_display = space p_no_int_chk = ' ' p_free_selections = ' ' p_convert = ls_convert EXCEPTIONS cancelled = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name =
* TEXT = ' ' info = tmp_info * ADD_STDINF = 'X' IMPORTING result = EXCEPTIONS icon_not_found = 1 * OUTPUTFIELD_TOO_SHORT = 2 * OTHERS = 3 .
HELP_VALUES_EPSTP CALL FUNCTION 'HELP_VALUES_EPSTP' EXPORTING program = 'SAPLCIFI' dynnr = sy-dynnr fieldname = dynfield IMPORTING epstp =
* BEGIN NOTE 1119926 EXCEPTIONS OTHERS = 1.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-repid dynumb = ls_help_infos-dynpro perform_input_conversion = 'X' TABLES dynpfields = lt_dynp[] EXCEPTIONS OTHERS = 0.
RH_OBJID_REQUEST CALL FUNCTION 'RH_OBJID_REQUEST' EXPORTING plvar = '01' otype = 'O' seark = lv_seark IMPORTING sel_object = ls_selob EXCEPTIONS cancelled = 1 wrong_condition = 2 nothing_found = 3 internal_error = 4 illegal_mode = 5 OTHERS = 6.
DD_SHLP_CALL_FROM_DYNP CALL FUNCTION 'DD_SHLP_CALL_FROM_DYNP' EXPORTING help_infos = ls_help_infos IMPORTING * selection = select_value = lv_select_value * RSMDY_RET = TABLES dynpselect = lt_dynpselect dynpvaluetab = lt_dynpvaluetab.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = lt_dynpread[] EXCEPTIONS invalid_abapworkarea = 1 invalid_dynprofield = 2 invalid_dynproname = 3 invalid_dynpronummer = 4 invalid_request = 5 no_fielddescription = 6 undefind_error = 7 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.