RNCEDIU0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report enables you to trigger communication events manually without having to change data in the system beforehand...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 RNCEDIU0 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: P_DCSTAT = Communication Status
Selection Text: P_EINRI = Institution
Selection Text: P_EPROC = EDI Procedure
Selection Text: P_FALNR = Case Number
Selection Text: TXTEINRI = Institution Text
Selection Text: TXTEPROC = EDI Procedure Long Text
Title: IS-H EDI: Create Message Orders Manually
Text Symbol: T10 = Messages do not exist yet.
Text Symbol: T11 = Create order anyway?
Text Symbol: T12 = Message Dispatch
Text Symbol: T20 = Create EDI Order
Text Symbol: T25 = Order for
Text Symbol: U00 = EDI Procedure
Text Symbol: U01 = Institution
Text Symbol: U99 = To
INCLUDE MNCDATA0.
INCLUDE RNCIEDII.
INCLUDE RNSSSPBO.
INCLUDE RNCIEDIU.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_F4_HELP_MSGTYPE * call function 'ISH_F4_HELP_MSGTYPE' * exporting ** ediproc = p_eproc * get_dynp_ediproc = on * dyname = rnstat-repid * dynumb = sy-dynnr * fieldname = 'P_EPROC' * importing * ntkrz = p_ntyp * exceptions * missing_parameters = 1 * nothing_found = 2 * others = 3.
ISH_AUTH_CHECK_REPORT_EINRI CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_EINRI' EXPORTING REPID = RNSTAT-REPID EINRI = P_EINRI * NO_MESSAGE = ' ' IMPORTING RC = AUTH_RC EXCEPTIONS OTHERS = 1.
ISH_EDI_READ_TNC301GI CALL FUNCTION 'ISH_EDI_READ_TNC301GI' EXPORTING INSTITUTION = P_EINRI EDIPROC = P_EPROC IMPORTING ACTIVE = ACTIVE_FLAG EXCEPTIONS OTHERS = 1.
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING * ausbegdt = rnstat-ausbegdt * ausenddt = rnstat-ausenddt EINRI = RNSTAT-EINRI LINE_SIZE = RNSTAT-LINE_SIZE REPID = RNSTAT-REPID TITLE_LIN1 = TEXT-T20 TITLE_LIN2 = ' ' ULINE = ON * verbegdt = init_date * verenddt = init_date EXCEPTIONS INVALID_EINRI = 01.
ISH_DYNP_VALUES_READ CALL FUNCTION 'ISH_DYNP_VALUES_READ' EXPORTING DYNAME = DYNAME DYNUMB = DYNUMB TABLES DYNPFIELDS = DYNPFIELDS EXCEPTIONS OTHERS = 1.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING INPUT = DYNPFIELDS-FIELDVALUE IMPORTING OUTPUT = EINRI EXCEPTIONS OTHERS = 1.
ISH_CASE_VALUE_REQUEST CALL FUNCTION 'ISH_CASE_VALUE_REQUEST' EXPORTING SS_EINRI = EINRI SS_VCODE = GC_UPDATE IMPORTING SS_FALNR = FALNR.
ISH_CCPS_EVENTS_PROCESSING CALL FUNCTION 'ISH_CCPS_EVENTS_PROCESSING' EXPORTING EDIPROC = EDIPROC INSTITUTION = EINRI CASENUMBER = FALNR MANUAL_DCSTATE = DCSTATE IMPORTING E_QUANTITY = COUNT TABLES EVENTS = EVENTS EXCEPTIONS MISSING_PARAMETERS = 1 OTHERS = 2.
ISH_EDI_CASEMSG_IO_GET CALL FUNCTION 'ISH_EDI_CASEMSG_IO_GET' EXPORTING EINRI = EINRI EDIPROC = EDIPROC CASENO = FALNR * READ_DB = ' ' * importing * es_nc301s = inc301s EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'N' TEXTLINE1 = 'Es ist noch keine Nachricht vorhanden.'(T10)
ISH_EDI_CONVERT_DCSTATE_E2I CALL FUNCTION 'ISH_EDI_CONVERT_DCSTATE_E2I' EXPORTING I_EDIPROC = EDIPROC I_DCSTATE = DCSTATE IMPORTING E_DCSTATI = DCSTATI EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RNCEDIU0 - IS-H EDI: Create Message Orders Manually RNCEDIU0 - IS-H EDI: Create Message Orders Manually RNCEDIRECREATEFILE - IS-H: Recreate all Messages of an EDI File RNCEDIRECREATEFILE - IS-H: Recreate all Messages of an EDI File RNCEDIRECREATE - IS-H EDI Recreate Outbound Messages RNCEDIRECREATE - IS-H EDI Recreate Outbound Messages