SAP Reports / Programs | Cross-Application Components | General Application Functions | Link to Geographic Information System(CA-GTF-TS-GC) SAP CA

RIGC0001 SAP ABAP Report - GBC: Generation of Interface Calls







RIGC0001 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report for Generation of Interface Calls You mainly use this report to call up the GIS business connector by the runtime environment, and to generate all the required interface calls for a task...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RIGC0001 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RIGC0001. "Basic submit
SUBMIT RIGC0001 AND RETURN. "Return to original report after report execution complete
SUBMIT RIGC0001 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_TASK = D Task
Selection Text: P_RELART = D Type of Object Relationship
Selection Text: P_METHOD = D Method
Selection Text: P_HOME = D Original System
Title: GBC: Generation of Interface Calls


INCLUDES used within this REPORT RIGC0001

INCLUDE: GBCBITOP.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

GCFC_TASK_READ CALL FUNCTION 'GCFC_TASK_READ' EXPORTING I_RELART = P_RELART I_TASK = P_TASK I_HOME = P_HOME IMPORTING E_GCCDTAB = L_GCCDTAB E_GCCCTAB = L_GCCCTAB EXCEPTIONS ERROR = 1 OTHERS = 2.

GCFC_METHOD_READ CALL FUNCTION 'GCFC_METHOD_READ' EXPORTING I_HOME = I_GCCCWA-FUNCHOME I_OBJART = I_GCCCWA-OBJART I_METHOD = I_GCCCWA-FUNCNAME IMPORTING E_GCCHWA = L_GCCHWA E_GCCFTAB = L_GCCFTAB E_GCCGTAB = L_GCCGTAB EXCEPTIONS ERROR = 1 OTHERS = 2.



Contribute (Add Comments)

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 RIGC0001 or its description.