RSPLS_PLSEQ_MAINTAIN 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 RSPLS_PLSEQ_MAINTAIN 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.
Selection Text: DELTA = Only Process Changed Records
Selection Text: DELTAALV = Level for Delta Determination
Selection Text: INFOPROV = InfoProvider
Selection Text: SEQNM = Planning Sequence
Title: Maintenance: Planning Sequence Before Saving
Text Symbol: EAN = Create Entry
Text Symbol: EGA = Aggregatiobn Level Input Help
Text Symbol: EGB = InfoProvider Input Help
Text Symbol: EGP = Planning Sequence Input Help
Text Symbol: LOE = Delete Entry
Text Symbol: SEE = Sequence Removed
Text Symbol: SEG = Sequence Added
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSSB_AUTHORITY_CHECK CALL FUNCTION 'RSSB_AUTHORITY_CHECK' EXPORTING i_s_object = l_s_object i_activity = rssb_c_bw_activity-maintain EXCEPTIONS OTHERS = 1.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_repid dynumb = '1000' translate_to_upper = 'X' TABLES dynpfields = l_t_dynpfields EXCEPTIONS OTHERS = 1.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'SEQNM' window_title = 'Eingabehilfe Planungssequenzen'(egp) value_org = 'S' TABLES value_tab = l_t_value return_tab = l_t_return EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_repid dynumb = '1000' translate_to_upper = 'X' TABLES dynpfields = l_t_dynpfields EXCEPTIONS OTHERS = 1.
RSPLSIP_INFOPROV_GETLIST CALL FUNCTION 'RSPLSIP_INFOPROV_GETLIST' EXPORTING i_maxrows = ' ' i_searchcrit = rspl0_cs_searchcrit-key i_searchstr = l_searchstring IMPORTING e_t_infoprov = l_t_infoprov e_t_return = l_t_msg.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'INFOPROV' window_title = 'Eingabehilfe Infoprovider'(egb) value_org = 'S' TABLES value_tab = l_t_value return_tab = l_t_return EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_repid dynumb = '1000' translate_to_upper = 'X' TABLES dynpfields = l_t_dynpfields EXCEPTIONS OTHERS = 1.
RSPLS_ALVL_GETLIST CALL FUNCTION 'RSPLS_ALVL_GETLIST' EXPORTING i_searchstr = l_searchstring i_searchcrit = rspl0_cs_searchcrit_alvl-key i_objvers = rs_c_objvers-active TABLES e_tk_alvl = l_t_alvl e_tk_return = l_t_msg.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'ALVL' window_title = 'Eingabehilfe Aggregationsebene'(ega) value_org = 'S' TABLES value_tab = l_t_value return_tab = l_t_return EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
RS_CONTREL_GET CALL FUNCTION 'RS_CONTREL_GET' CHANGING c_contrel = l_contrel c_conttimestmp = l_conttimestmp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.