SAP Reports / Programs

RSTMS_UPLOAD_TP_PROFILE SAP ABAP Report - TMS: Read tp Profile and Adjust Configuration in Controller System







RSTMS_UPLOAD_TP_PROFILE 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 RSTMS_UPLOAD_TP_PROFILE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSTMS_UPLOAD_TP_PROFILE. "Basic submit
SUBMIT RSTMS_UPLOAD_TP_PROFILE AND RETURN. "Return to original report after report execution complete
SUBMIT RSTMS_UPLOAD_TP_PROFILE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: DIST = Distribute Configuration Now
Selection Text: PROFILE = tp Profile
Title: TMS: Read tp Profile and Adjust Configuration in Controller System
Text Symbol: LOG = Changes from tp profile &pro copied from user &usr
Text Symbol: MOD = Do you want to copy changes from tp profile & pro?
Text Symbol: TIT = Change TMS Configuration
Text Symbol: UNC = contains current configuration
Text Symbol: UPD = TMS configuration changed


INCLUDES used within this REPORT RSTMS_UPLOAD_TP_PROFILE

INCLUDE: LTMSADEF, " ALT MACROS


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

TMS_CFG_READ_LOCAL_CONFIG CALL FUNCTION 'TMS_CFG_READ_LOCAL_CONFIG' IMPORTING ev_is_a_client = gv_is_a_client EXCEPTIONS OTHERS = 99.

TMS_PM_READ_CURRENT_CONFIG CALL FUNCTION 'TMS_PM_READ_CURRENT_CONFIG' IMPORTING es_version = gs_version TABLES tt_config = gt_cur_config EXCEPTIONS OTHERS = 99.

TMS_PM_READ_PROFILE CALL FUNCTION 'TMS_PM_READ_PROFILE' EXPORTING iv_system = gv_system iv_profile_name = gv_profile IMPORTING es_ps_profs = gt_ps_prof EXCEPTIONS OTHERS = 99.

TMS_UI_POPUP_TO_CONFIRM CALL FUNCTION 'TMS_UI_POPUP_TO_CONFIRM' EXPORTING iv_titlebar = 'TMS Konfiguration ändern'(tit) iv_question_text = gv_text iv_default_button = gc_no iv_display_cancel = gc_x IMPORTING ev_answer = gv_popup_answer.

TMS_PM_MODIFY_CONFIG CALL FUNCTION 'TMS_PM_MODIFY_CONFIG' EXPORTING iv_inactive = gv_inactive IMPORTING ev_alertid = gv_alert_id TABLES tt_config_mod = gt_new_config tt_config_del = gt_del_config EXCEPTIONS dist_tp_config_alert = 1 OTHERS = 99.

TMS_ALT_LOG_RECORD CALL FUNCTION 'TMS_ALT_LOG_RECORD' EXPORTING iv_service = gc_tms_ps iv_function = gv_function iv_context = 'UPLOAD_TP_PROFILE' iv_execmode = gc_ci_exec_online iv_text = gv_text EXCEPTIONS OTHERS = 0.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSTMS_UPLOAD_TP_PROFILE or its description.