AT_SELECTION_SCREEN_BLOCK_SPEC is a standard ABAP INCLUDE 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 AT_SELECTION_SCREEN_BLOCK_SPEC 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_SET_CHECK_NAME CALL FUNCTION 'G_SET_CHECK_NAME' EXPORTING SETNAME = P_SNAME.
G_SET_ENCRYPT_SETID CALL FUNCTION 'G_SET_ENCRYPT_SETID' EXPORTING SETCLASS = GSETC_PSPELEMENT_SETCLASS SHORTNAME = P_SNAME * KOKRS = * KTOPL = IMPORTING SETID = SETID.
G_SET_GET_INFO CALL FUNCTION 'G_SET_GET_INFO' EXPORTING * CLASS = ' ' "must be initial if SETID is used * NO_SET_TITLE = ' ' SETNAME = SETID * TABLE = ' ' * USE_TABLE_BUFFER = ' ' * CLIENT = IMPORTING INFO = S_INFO EXCEPTIONS SET_NOT_FOUND = 1.
G_SET_AUTHORITY_CHECK CALL FUNCTION 'G_SET_AUTHORITY_CHECK' EXPORTING ACTVT = '01'. "activity: create
G_SET_AUTHORITY_CHECK CALL FUNCTION 'G_SET_AUTHORITY_CHECK' EXPORTING ACTVT = '02' "activity: change AUTHGR = S_INFO-AUTHGR.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING NO_AUTHORITY_CHECK = 'X' SETNR = SETID IMPORTING SET_HEADER = S_HEADER TABLES SET_LINES_BASIC = T_LINES.
REMD_OBJECT_TEXT_GET CALL FUNCTION 'REMD_OBJECT_TEXT_GET' EXPORTING I_OBJNR = BUFFER_J_OBJNR * I_INTRENO = * I_IMKEY = * I_NO_FLOOR_FOR_RU = ' ' IMPORTING E_TEXT = T_OBJ-POST1 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.