RNCFORM0 is a standard ABAP INCLUDE 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 RNCFORM0 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.
Title: IS-H: FORM Routines For General Use
INCLUDE MNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_BAPI_FILL_RETURN_PARAM CALL FUNCTION 'ISH_BAPI_FILL_RETURN_PARAM' EXPORTING msgty = t_msgty msgid = t_arbgb msgno = t_msgnr msgv1 = t_msgv1 msgv2 = t_msgv2 msgv3 = t_msgv3 msgv4 = t_msgv4 IMPORTING return = io_msg.
ISH_MESSAGE_PREPARE " CALL FUNCTION 'ISH_MESSAGE_PREPARE' " EXPORTING " language = sy-langu " msg_id = t_arbgb " msg_no = t_msgnr " msg_var1 = t_msgv1 " msg_var2 = t_msgv2 " msg_var3 = t_msgv3 " msg_var4 = t_msgv4 " IMPORTING " msg_text = text " EXCEPTIONS " OTHERS = 0.
ISH_CRLF_SETGET CALL FUNCTION 'ISH_CRLF_SETGET' EXPORTING i_get = on IMPORTING e_hexcode = crlf_char EXCEPTIONS OTHERS = 0.
ISH_CRLF_SETGET * call function 'ISH_CRLF_SETGET' * exporting * i_get = on * importing * e_hexcode = crlf_char * exceptions * others = 0.
ISH_EDI_COPY_FILE CALL FUNCTION 'ISH_EDI_COPY_FILE' EXPORTING i_src = srcfile i_dst = aimfile IMPORTING e_rc = e_rc EXCEPTIONS OTHERS = 1.
ISH_EDI_COPY_FILE CALL FUNCTION 'ISH_EDI_COPY_FILE' EXPORTING i_src = srcfile i_dst = aimfile IMPORTING e_rc = e_rc EXCEPTIONS OTHERS = 1.
ISH_BASENAME CALL FUNCTION 'ISH_BASENAME' EXPORTING i_fullname = srcfile IMPORTING e_filename = filename.
TR_ORDER_CHOICE_CORRECTION CALL FUNCTION 'TR_ORDER_CHOICE_CORRECTION' EXPORTING * "because of txcom and tn02s without client: SYST iv_category = 'SYST' iv_cli_dep = 'X' IMPORTING ev_task = ordertask EXCEPTIONS OTHERS = 3.
TR_APPEND_TO_COMM_OBJS_KEYS CALL FUNCTION 'TR_APPEND_TO_COMM_OBJS_KEYS' EXPORTING wi_trkorr = trkorr wi_suppress_key_check = 'X' TABLES wt_e071 = we071 wt_e071k = we071k EXCEPTIONS OTHERS = 68.
AUTHORITY_CHECK_DATASET CALL FUNCTION 'AUTHORITY_CHECK_DATASET' EXPORTING program = program activity = activity filename = '*' EXCEPTIONS no_authority = 1 activity_unknown = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.