IB_SYS_CONVERT_EXT_TO_INT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name IB_SYS_CONVERT_EXT_TO_INT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CUXGLOBAL
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'IB_SYS_CONVERT_EXT_TO_INT' "
* EXPORTING
* iv_logsys = " logsys
* iv_handle_appl_log = " balloghndl
IMPORTING
ev_handle_appl_log = " balloghndl
CHANGING
ct_instance = " ibcoxexp_inst_tab
ct_specialize = " ibcoxexp_spec_tab
ct_value = " cux_exp_value_t
ct_owner = " ibcoxexp_inown_tab
ct_observer = " ibcoxexp_inobs_tab
ct_structure = " ibcoxexp_ibst_tab
ct_structure_ref = " cux_exp_ibstref_t
ct_ibib = " ibcoxexp_ibib_tab
ct_ibibt = " ibcoxexp_ibibt_tab
EXCEPTIONS
INTERNAL_ERROR = 1 "
CONVERSION_ERROR = 2 "
. " IB_SYS_CONVERT_EXT_TO_INT
The ABAP code below is a full code listing to execute function module IB_SYS_CONVERT_EXT_TO_INT including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_ev_handle_appl_log | TYPE BALLOGHNDL . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ct_instance | TYPE IBCOXEXP_INST_TAB , |
| ld_ev_handle_appl_log | TYPE BALLOGHNDL , |
| ld_iv_logsys | TYPE LOGSYS , |
| ld_ct_specialize | TYPE IBCOXEXP_SPEC_TAB , |
| ld_iv_handle_appl_log | TYPE BALLOGHNDL , |
| ld_ct_value | TYPE CUX_EXP_VALUE_T , |
| ld_ct_owner | TYPE IBCOXEXP_INOWN_TAB , |
| ld_ct_observer | TYPE IBCOXEXP_INOBS_TAB , |
| ld_ct_structure | TYPE IBCOXEXP_IBST_TAB , |
| ld_ct_structure_ref | TYPE CUX_EXP_IBSTREF_T , |
| ld_ct_ibib | TYPE IBCOXEXP_IBIB_TAB , |
| ld_ct_ibibt | TYPE IBCOXEXP_IBIBT_TAB . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name IB_SYS_CONVERT_EXT_TO_INT or its description.