SAP Reports / Programs | Basis Components | Basis Services / Communication Interfaces | SAP Records Management(BC-SRV-RM) SAP BC

SRM_CREATE_FUNCTIONS SAP ABAP Report - Create RFC Wrapper and Registration Frame







SRM_CREATE_FUNCTIONS 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 SRM_CREATE_FUNCTIONS 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 SRM_CREATE_FUNCTIONS. "Basic submit
SUBMIT SRM_CREATE_FUNCTIONS AND RETURN. "Return to original report after report execution complete
SUBMIT SRM_CREATE_FUNCTIONS 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: CORRNUM = Transport Request
Selection Text: DEVCLASS = Package/Development Class
Selection Text: FUNC = Module to be Called Up
Selection Text: FUNCNEW = Name of the Wrapper
Selection Text: FUNCNEW2 = Name of the Frame
Selection Text: POOL = Function Group
Selection Text: RFCDEST = RFC Destination of the Module
Selection Text: TEXTFM = Description of the Wrapper
Selection Text: TEXTFM2 = Description of the Frame
Selection Text: TEXTPOOL = Description of the Funct. Grp
Title: Create RFC Wrapper and Registration Frame
Text Symbol: 001 = Following Modules Generated


INCLUDES used within this REPORT SRM_CREATE_FUNCTIONS

No INCLUDES are used within this REPORT code!


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:

SRM_CREATE_RFC_WRAPPER CALL FUNCTION 'SRM_CREATE_RFC_WRAPPER' EXPORTING iv_rfcdest = rfcdest iv_funcname = func iv_funcname_new = funcnew iv_function_pool = pool iv_short_text_pool = textpool iv_devclass = devclass iv_corrnum = corrnum iv_short_text_fm = textfm EXCEPTIONS communication_failure = 1 function_not_found = 2 function_already_exists = 3 invalid_function_pool = 4 invalid_name = 5 no_modify_permission = 6 no_show_permission = 7 enqueue_system_failure = 8 canceled_in_corr = 9 OTHERS = 10.

SRM_GEN_REGISTRATION_MODULE CALL FUNCTION 'SRM_GEN_REGISTRATION_MODULE' EXPORTING iv_rfcdest = rfcdest iv_funcname_interf = funcnew iv_funcname_new = funcnew2 iv_short_text_fm = textfm2 iv_function_pool = pool iv_short_text_pool = textpool iv_devclass = devclass iv_corrnum = corrnum EXCEPTIONS function_already_exists = 1 invalid_function_pool = 2 invalid_name = 3 no_modify_permission = 4 no_show_permission = 5 enqueue_system_failure = 6 canceled_in_corr = 7 function_not_found = 8 OTHERS = 9.



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