SAP Reports / Programs

/SDF/STAD SAP ABAP Report - Single record stats with data entry of and assignment to trans. ID







/SDF/STAD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The Business Transaction Analysis (Transaction STAD) delivers workload statistics across business transactions (that is, a user's transaction that starts when a transaction is called [/n...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter /SDF/STAD 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 /SDF/STAD. "Basic submit
SUBMIT /SDF/STAD AND RETURN. "Return to original report after report execution complete
SUBMIT /SDF/STAD 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: TASKTYPE = Tasktype
Selection Text: STATFILE = Seq. stat. dataset name
Selection Text: RWPID = Workprocess
Selection Text: RWAITFAC = Wait factor
Selection Text: RUSER = User
Selection Text: RTCODF = TCode Filter
Selection Text: RTCODE = Transaction
Selection Text: RSTARTTI = Start time >=
Selection Text: RSCREEN = Screen
Selection Text: RRSPTI = Resp. time >=
Selection Text: RREADTI = Read time
Selection Text: RREADDEL = Read time delta
Selection Text: RPROGRAM = Program
Selection Text: RPROGF = Program filter
Selection Text: RONLY = Instance
Selection Text: RMODE = Display mode
Selection Text: RKBYTE = Bytes req. >=
Selection Text: RDBTI = DB req. time >=
Selection Text: RDAY = Start date
Selection Text: RCPUTI = CPU time >=
Selection Text: RCHG = DB changes >=
Selection Text: AS_STATF = Seq. appl. stat. dataset name
Selection Text: ANAL_FL = Read from Database
Selection Text: ANALYSIS = Analysis
Title: Single record stats with data entry of and assignment to trans. ID


INCLUDES used within this REPORT /SDF/STAD

INCLUDE PERFINCL.


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:

POPUP_GET_VALUES CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING popup_title = 'Description' "#EC NOTEXT IMPORTING returncode = lf_rc TABLES fields = lt_fields EXCEPTIONS error_in_fields = 1 OTHERS = 2.

GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_22 = ls_analysis-guid. "#EC FB_OLDED

/SDF/MON_CREATE_CLUST_KEY CALL FUNCTION '/SDF/MON_CREATE_CLUST_KEY' EXPORTING analysisguid = ls_analysis-guid server = space IMPORTING key = lf_key.

HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' IMPORTING select_value = selection-stask " <---- TABLES fields = field_tab valuetab = helptable EXCEPTIONS field_not_in_ddic = 01 more_then_one_selectfield = 02 no_selectfield = 03. "#EC FB_OLDED



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 /SDF/STAD or its description.