RSQ_ISET_BAPI_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 RSQ_ISET_BAPI_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: SINFOSET = D InfoSet
Selection Text: SCOPY = Copy from
Selection Text: R_CREATE = BAPI_ISET_CREATE
Selection Text: R_CLONE = BAPI_ISET_CREATE Acc. to Temp.
Selection Text: R_CHANGE = BAPI_ISET_CHANGE Acc. to Temp.
Selection Text: R_ACTIV = BAPI_ISET_ACTIVATE
Selection Text: OBJVERS = Object Version
Selection Text: C_T_REM = Remove Table
Selection Text: C_T_ADD = Include Table
Selection Text: C_TEXTS = Change Texts
Selection Text: C_ONCOND = Change ON Condition
Selection Text: C_F_OFF = Remove Field
Selection Text: C_DEBUG = Debugging Mode
Title: Testreport for InfoSet BAPIs
Text Symbol: B31 = General Info.
Text Symbol: B21 = Change Options
Text Symbol: B11 = BAPI
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_ISET_CREATE call function 'BAPI_ISET_CREATE' exporting details = l_s_details importing infoset = infoset tables tableobjects = l_t_tobj fieldobjects = l_t_fobj oncondition = l_t_on temponcondition = l_t_tmon wherecondition = l_t_where return = g_return.
BAPI_ISET_ACTIVATE call function 'BAPI_ISET_ACTIVATE' exporting infoset = infoset tables return = g_return.
BAPI_ISET_GETDETAIL call function 'BAPI_ISET_GETDETAIL' exporting infoset = isetcopy objvers = objvers importing details = ls_details tables tableobjects = lt_tab fieldobjects = lt_field oncondition = lt_on temponcondition = lt_temp return = lt_return.
BAPI_ISET_CREATE call function 'BAPI_ISET_CREATE' exporting details = ls_details * IMPORTING * INFOSET = l_iset tables tableobjects = lt_tabx fieldobjects = lt_fieldx oncondition = lt_onx temponcondition = lt_tempx wherecondition = lt_where return = lt_return.
RSQ_ISET_COPY_INFOSET call function 'RSQ_ISET_COPY_INFOSET' exporting i_infoset_source = isetcopy i_infoset_target = infoset i_objvers_source = rs_c_objvers-modified.
BAPI_ISET_GETDETAIL call function 'BAPI_ISET_GETDETAIL' exporting infoset = infoset objvers = objvers importing details = ls_details tables tableobjects = lt_tab fieldobjects = lt_field oncondition = lt_on temponcondition = lt_temp return = lt_return.
BAPI_ISET_CHANGE call function 'BAPI_ISET_CHANGE' exporting infoset = infoset details = ls_details tables tableobjects = lt_tabx fieldobjects = lt_fieldx oncondition = lt_onx temponcondition = lt_tempx return = lt_return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.