RSAQCHGN 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 RSAQCHGN 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: WITHTEXT = Automatic text recognition
Selection Text: SGNA = InfoSet
Title: SAP Query: Objects Check
Text Symbol: 130 = Logical database contains Typ <> 'T' node
Text Symbol: 140 = InfoSet contains tables that are not in the ABAP Dictionary.
Text Symbol: 150 = Logical database does not exist
Text Symbol: 160 = Check error
Text Symbol: 110 = No InfoSet name has been entered
Text Symbol: 000 = Check and generate InfoSets
Text Symbol: 010 = Check
Text Symbol: 020 = Generate
Text Symbol: 030 = Check if texts fields are up-to-date
Text Symbol: 031 = Update text fields
Text Symbol: 280 = InfoSet cannot be generated
Text Symbol: 300 = InfoSet generation: &
Text Symbol: 310 = InfoSet check: &
Text Symbol: 320 = Query area: Standard area Client: &
Text Symbol: 330 = Query area: Global area Client: &
Text Symbol: 270 = Error in data retrieval program
Text Symbol: 200 = InfoSet was not generated
Text Symbol: 230 = No InfoSet name has been entered
Text Symbol: 240 = InfoSet does not exist
Text Symbol: 250 = Unable to set lock
Text Symbol: 260 = Access refused
Text Symbol: 120 = InfoSet does not exist
Text Symbol: 410 = InfoSets with no errors
Text Symbol: 579 = Data retrieval program
Text Symbol: 578 = Compare field group fields with ABAP Dictionary
Text Symbol: 577 = Additional fields
Text Symbol: 576 = Additional tables
Text Symbol: 575 = GET/GET LATE code/ Code for record processing
Text Symbol: 580 = Tree structure
Text Symbol: 584 = Identification of text fields
Text Symbol: 581 = Selection criteria comparison with the ABAP Dictionary
Text Symbol: 562 = Generation error
Text Symbol: 561 = Global syntax check
Text Symbol: 560 = Table join
Text Symbol: 430 = &
INCLUDE RSAQCOMC.
INCLUDE RSAQCOM0.
INCLUDE RSAQCOM1.
INCLUDE RSAQCOM2.
No SAP DATABASE tables are accessed within this REPORT code!
RSAQSUL_SELECT_FUNC_AREA call function 'RSAQSUL_SELECT_FUNC_AREA' exporting sul_workspace = act_workspace sul_queryname = ' ' sul_transcode = 'SQ02' sul_usergroup = ' ' importing sul_cancel = pf3flag sul_func_area = sgna-low.
RSAQSUL_SELECT_FUNC_AREA call function 'RSAQSUL_SELECT_FUNC_AREA' exporting sul_workspace = act_workspace sul_queryname = ' ' sul_transcode = 'SQ02' sul_usergroup = ' ' importing sul_cancel = pf3flag sul_func_area = sgna-high.
RSAQ_CHECK_SACHGEBIET call function 'RSAQ_CHECK_SACHGEBIET' exporting sgname = sucat-clas workspace = wsid with_texts = withtxt1 importing error_counter = l_error_counter tables error = l_errortab exceptions no_name_specified = 1 sg_not_existent = 2 not_ldb_type_t = 3 no_ddic_table = 4 ldb_not_existent = 5 others = 6.
RSAQ_GENERATE_SACHGEBIET call function 'RSAQ_GENERATE_SACHGEBIET' exporting sgname = sucat-clas workspace = wsid with_texts = withtxt2 importing error_counter = l_error_counter sg_not_saved = l_sg_not_saved tables error = l_errortab exceptions no_name_specified = 1 sg_not_existent = 2 sg_cannot_be_enqueued = 3 access_denied = 4 error_in_dv_program = 5 not_generated = 6 others = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.