SAP Reports / Programs | Basis Components | Enterprise Service Infrastructure | WebServices ABAP Configuration(BC-ESI-WS-ABA-CFG) SAP BC

SRT_DT_UPDATE_CHECK SAP ABAP Report - Changes to Web Service Runtime Due to Designtime Object Changes







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


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

WSUPDATECHECK - Get/Check WS DT-RT Changes


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 SRT_DT_UPDATE_CHECK. "Basic submit
SUBMIT SRT_DT_UPDATE_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT SRT_DT_UPDATE_CHECK 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: P_SELCLI = Selective Clients
Selection Text: P_ALLDT = All DT Object Types
Selection Text: P_ALLCLI = All Clients
Selection Text: PPROV = Provider
Selection Text: PCONS = Consumer
Title: Changes to Web Service Runtime Due to Designtime Object Changes
Text Symbol: OP3 = New
Text Symbol: OP2 = Delete
Text Symbol: OP1 = Change
Text Symbol: OP0 = Unknown
Text Symbol: NOR = [No origin ID]
Text Symbol: NOO = No
Text Symbol: LOC = local
Text Symbol: KDY = Remove log entries older than specified days
Text Symbol: I02 = Note: Only valid SAP clients are used for getting the required RFC destinations!
Text Symbol: I01 = SAP Client &1 explicitly excluded from DT-RT change management
Text Symbol: HC5 = Additional Checks performed on found RFC Destinations
Text Symbol: HC4 = Check Results for Background Jobs
Text Symbol: HC3 = Status
Text Symbol: HC2 = Client
Text Symbol: HC1 = Check Result for RFC Destinations
Text Symbol: H13 = Counter
Text Symbol: H12 = [Central changes waiting for processing: &1]
Text Symbol: H11 = No entries found in central log
Text Symbol: P01 = Client Selection
Text Symbol: P02 = Include All Clients
Text Symbol: P03 = Client Selection
Text Symbol: P04 = Select Specific Client
Text Symbol: P05 = Design Time Object Type Restriction
Text Symbol: P06 = Include All Design Time Object Types
Text Symbol: P07 = Filter by Specific Design Time Object Types
Text Symbol: P08 = Provider (Service Definition)
Text Symbol: P09 = Consumer (Proxy Definition, ServiceGroups)
Text Symbol: S00 = Unknown
Text Symbol: S01 = Initial
Text Symbol: S02 = Completed
Text Symbol: S03 = Running
Text Symbol: S04 = Removed





Text Symbol: S05 = Stopped
Text Symbol: S06 = Started
Text Symbol: S07 = Replaced
Text Symbol: YES = Yes
Text Symbol: H10 = Origin ID
Text Symbol: 000 = Initialization error: &1&2&3&4
Text Symbol: 001 = Web Services: Design Time-to-Runtime Comparison
Text Symbol: 002 = Do you want to exit the program?
Text Symbol: 003 = Are you sure you want to remove the change for design time object '&1' with ID='&2'?
Text Symbol: 004 = Are you sure you want to process the change for design time object '&1' with ID='&2' on its own?
Text Symbol: 005 = Do you want to refresh the display with the chosen selection criteria?
Text Symbol: 006 = Are you sure you want to remove all changes in all clients?
Text Symbol: 007 = Do you want to check the required RFC destinations?
Text Symbol: 008 = Do you want to process all pending changes?
Text Symbol: 009 = This is a multi-tenant system. This program can only be started in a system client.
Text Symbol: 010 = Design time update check
Text Symbol: 011 = Set Activitiy of Update Process
Text Symbol: 012 = Current update process status is &1. Do you want to switch it to &2?
Text Symbol: 013 = active
Text Symbol: 014 = inactive
Text Symbol: 015 = RFC test call successful for destination &1
Text Symbol: 016 = RFC test call failed for destination &1
Text Symbol: 017 = Remove all entries from global change directory?
Text Symbol: 018 = Remove central entries
Text Symbol: 019 = Synchronous
Text Symbol: 020 = Asynchronous
Text Symbol: 021 = How do you want to run any update processes here? [Current Option: &1]
Text Symbol: 022 = Do you want want to delete all entries with ID &1?
Text Symbol: CEN = central
Text Symbol: E01 = [Unknown design time object type]
Text Symbol: E02 = Destination not found
Text Symbol: E03 = Background job does not exist
Text Symbol: E04 = Background processing executed
Text Symbol: E05 = No &1 history log information exists
Text Symbol: E06 = No information saved
Text Symbol: E07 = Call to function &1 failed for destination &2 (RC=&3)
Text Symbol: E08 = Can not get list of valid SAP clients. &1&2&3&4
Text Symbol: H00 = No SAP client local entries exist for the chosen select options
Text Symbol: H01 = Design Time Object





Text Symbol: H02 = ID
Text Symbol: H03 = Client
Text Symbol: H04 = Operation
Text Symbol: H05 = Status
Text Symbol: H06 = Created [user; date; time]
Text Symbol: H07 = Last Changed [user; date; time]
Text Symbol: H08 = Information about local entry:
Text Symbol: H09 = Local change entries found without central entry: &1


INCLUDES used within this REPORT SRT_DT_UPDATE_CHECK

INCLUDE SRT_DT_UPDATE_CHECK_TOP.
SRT_DT_UPDATE_CHECK_SEL,
SRT_DT_UPDATE_CHECK_EVT.
SRT_DT_UPDATE_CHECK_F01,
SRT_DT_UPDATE_CHECK_M01.


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:

SRT_PROCESS_SINGLE_DT_CHANGE call function 'SRT_PROCESS_SINGLE_DT_CHANGE' destination l_dest->name exporting pi_counter = pi_id pi_client = pi_client exceptions communication_failure = 1 system_failure = 2 resource_failure = 3 others = 4.

SRT_PROCESS_DT_CHANGE call function 'SRT_PROCESS_DT_CHANGE' destination -dest exporting i_test_mode = abap_true importing e_test_mode_success = l_test_mode_success e_test_mode_text = lt_text_mode_text exceptions communication_failure = 1 system_failure = 2 resource_failure = 3 others = 4.

POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = 'Web Services: Design Time-to-Runtime Comparison'(001) text_question = _text text_button_1 = 'Synchronous'(019) text_button_2 = 'Asynchronous'(020) default_button = l_default_button display_cancel_button = 'X' importing answer = g_answer exceptions text_not_found = 1 others = 2.



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 SRT_DT_UPDATE_CHECK or its description.