RSPRIPARADMIN 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 RSPRIPARADMIN 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.
Title: Administration Report for Print Parameters for All Users
Text Symbol: 010 = Print Default
Text Symbol: 020 = Field not ready for inp.
Text Symbol: 100 = Parameter Name
Text Symbol: 111 = Delete Selected Area
Text Symbol: 112 = Delete Line
Text Symbol: 113 = Apply Default
Text Symbol: 114 = Apply Parameter Default
Text Symbol: 200 = Valid from
Text Symbol: 300 = Parameter Value
Text Symbol: 900 = Background
Text Symbol: 901 = Dialog
Text Symbol: DE0 = Delete Print Settings
Text Symbol: DE1 = Are you sure you want to delete print settings?
Text Symbol: EX0 = Exit Print Settings
Text Symbol: EX1 = Do you want to save changed print settings first?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING MODE = 'CURRENT' NO_DIALOG = 'X' IMPORTING OUT_ARCHIVE_PARAMETERS = arc_params OUT_PARAMETERS = pri_params VALID = valid VALID_FOR_SPOOL_CREATION = valid_for_spool_creation EXCEPTIONS OTHERS = 1.
DDUT_DOMVALUES_GET CALL FUNCTION 'DDUT_DOMVALUES_GET' EXPORTING name = 'DEF_FNAME' * LANGU = SY-LANGU * TEXTS_ONLY = ' ' tables dd07v_tab = fnames_table EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-ex0 text_question = text-ex1 IMPORTING answer = l_answer.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-de0 text_question = text-de1 default_button = '2' IMPORTING answer = l_answer.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = dyname dynumb = dynumb * TRANSLATE_TO_UPPER = ' ' * REQUEST = ' ' * PERFORM_CONVERSION_EXITS = ' ' * PERFORM_INPUT_CONVERSION = ' ' * DETERMINE_LOOP_INDEX = ' ' * START_SEARCH_IN_CURRENT_SCREEN = ' ' * START_SEARCH_IN_MAIN_SCREEN = ' ' * START_SEARCH_IN_STACKED_SCREEN = ' ' * START_SEARCH_ON_SCR_STACKPOS = ' ' * SEARCH_OWN_SUBSCREENS_FIRST = ' ' * SEARCHPATH_OF_SUBSCREEN_AREAS = ' ' TABLES dynpfields = dynpfields EXCEPTIONS * INVALID_ABAPWORKAREA = 1 * INVALID_DYNPROFIELD = 2 * INVALID_DYNPRONAME = 3 * INVALID_DYNPRONUMMER = 4 * INVALID_REQUEST = 5 * NO_FIELDDESCRIPTION = 6 * INVALID_PARAMETER = 7 * UNDEFIND_ERROR = 8 * DOUBLE_CONVERSION = 9 * STEPL_NOT_FOUND = 10 OTHERS = 11.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSPRIPARADMIN - Administration Report for Print Parameters for All Users RSPRIPARADMIN - Administration Report for Print Parameters for All Users RSPRGILI - documentation and ABAP source code RSPRGILI - documentation and ABAP source code RSPRGGSFNAN - Procure Master Data IDs For New Navigation Attributes RSPRGGSFNAN - Procure Master Data IDs For New Navigation Attributes