FOBJ_TEST 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 FOBJ_TEST 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.
Selection Text: PTYPE = D .
Selection Text: PROLE = D .
Selection Text: POBJID = D .
Selection Text: PCLASS = D .
Selection Text: PBTDTYPE = D .
Selection Text: PARCHIND = D .
Selection Text: PONLYPST = Objects with Postings Only
Selection Text: PNUMOBJ = Number of Objects
Selection Text: PNOSAVE = Do not save
Selection Text: PNOCREAT = Do Not Create Implicitly
Selection Text: PINDPROC = Individual Processing
Selection Text: PHIER = Complete Hierarchy
Selection Text: PFORUPD = Make Object Modifiable if nec.
Selection Text: PCOLLOCK = Collect locks
Selection Text: PCLOSED = Also Completed Objects
Selection Text: PARCH = Also Read Archive
Title: Create and Change Test Program for FIN Objects
Text Symbol: TSE = Select
Text Symbol: TGE = Display
Text Symbol: TDL = Delete
Text Symbol: TDE = Determine
Text Symbol: TCR = Create
Text Symbol: TCL = Complete
Text Symbol: TCH = Change
Text Symbol: PSE = Selecting...
Text Symbol: PRE = Reading...
Text Symbol: PPR = Formatting input data...
Text Symbol: PLO = Formatting error list...
Text Symbol: PDL = Deleting...
Text Symbol: PDE = Determining...
Text Symbol: PCR = Creating...
Text Symbol: PCH = Changing...
Text Symbol: PAL = Preparing ALV list...
Text Symbol: FC5 = Rollback Work
Text Symbol: FC4 = Commit Work
Text Symbol: FC3 = Save Buffer
Text Symbol: FC2 = Delete Buffer
Text Symbol: FC1 = Display Buffer
INCLUDE FINB_GS_DECLARATIONS.
INCLUDE FINB_GS_SEL_CRIT.
INCLUDE FINB_GS_SEL_EVENTS.
No SAP DATABASE tables are accessed within this REPORT code!
ACC_DATABASIS_GET CALL FUNCTION 'ACC_DATABASIS_GET' IMPORTING e_acc_databasis = gd_acc_databasis e_subrc = ld_cancel.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'PTYPE' values = lt_value EXCEPTIONS id_illegal_name = 1 OTHERS = 2.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'PROLE' values = lt_value EXCEPTIONS id_illegal_name = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Eingabedaten vorbereiten...'(ppr).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Anlegen...'(pcr).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Ermitteln...'(pde).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Lesen...'(pre).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Ändern...'(pch).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Ändern...'(pch).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Löschen...'(pdl).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Selektieren...'(pse).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'Fehlerliste aufbereiten...'(plo).
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = 'ALV-Liste aufbereiten...'(pal).
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = lo_kf_chars_structure->a_structure_name CHANGING ct_fieldcat = gt_fieldcat_slis.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING it_fieldcat = gt_fieldcat_slis TABLES t_outtab =
.
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 FOBJ_TEST or its description.
FOBJ_TEST - Create and Change Test Program for FIN Objects FOBJ_TEST - Create and Change Test Program for FIN Objects FOBJ_TABLE_GEN_TEMPLATE - FOBJTABLEGENTEMPLATE FOBJ_SEL_EVENTS - Selection of FIN objects, result handling and form routines FOBJ_SEL_CRIT - Selection of FIN Objects: Database Declarations and Selection Criteria FOBJ_SELECTION_TEMPLATE - Selection of FIN Objects