S_FLEET_MAINT_CHECK_TPOOL_EF01 is a standard ABAP Include available within your SAP system (depending on your version and release level). Below is the standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter S_FLEET_MAINT_CHECK_TPOOL_EF01 into the relevant SAP transaction such as SE38 or SE80
*----------------------------------------------------------------------* ***INCLUDE S_FLEET_MAINT_CHECK_TPOOL_EF01 . *----------------------------------------------------------------------* *&-------------------------------* *& Form CHECK_TPOOL_E *&-------------------------------* * text *----------------------------------------------------------------------* * --> p1 text * <-- p2 text *----------------------------------------------------------------------* FORM check_tpool_e .
DATA: ls2_pams_tpool TYPE pams_tpool. SELECT SINGLE * FROM pams_tpool INTO ls2_pams_tpool WHERE pool = pams_tpool-pool. IF NOT sy-subrc IS INITIAL. MESSAGE e057(pams) WITH pams_tpool-pool. ....See full code listing within your SAP system using transactions such as SE80 and SE38
No INCLUDES are used within this report code!
PAMS_TPOOL SELECT SINGLE * FROM pams_tpool INTO ls2_pams_tpool WHERE pool = pams_tpool-pool.
No SAP FUNCTION MODULES are executed within this report code!