SAP Function Modules

IB_SYS_CONVERT_INT_TO_EXT SAP Function module







IB_SYS_CONVERT_INT_TO_EXT 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_INT_TO_EXT into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: CUXGLOBAL
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM IB_SYS_CONVERT_INT_TO_EXT - IB SYS CONVERT INT TO EXT





CALL FUNCTION 'IB_SYS_CONVERT_INT_TO_EXT' "
* EXPORTING
*   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          "
    .  "  IB_SYS_CONVERT_INT_TO_EXT

ABAP code example for Function Module IB_SYS_CONVERT_INT_TO_EXT





The ABAP code below is a full code listing to execute function module IB_SYS_CONVERT_INT_TO_EXT 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).

DATA:
ld_ev_handle_appl_log  TYPE BALLOGHNDL .

DATA(ld_ct_instance) = 'Check type of data required'.
DATA(ld_ct_specialize) = 'Check type of data required'.
DATA(ld_ct_value) = 'Check type of data required'.
DATA(ld_ct_owner) = 'Check type of data required'.
DATA(ld_ct_observer) = 'Check type of data required'.
DATA(ld_ct_structure) = 'Check type of data required'.
DATA(ld_ct_structure_ref) = 'Check type of data required'.
DATA(ld_ct_ibib) = 'Check type of data required'.
DATA(ld_ct_ibibt) = 'Check type of data required'.
DATA(ld_iv_handle_appl_log) = 'Check type of data required'. . CALL FUNCTION 'IB_SYS_CONVERT_INT_TO_EXT' * EXPORTING * iv_handle_appl_log = ld_iv_handle_appl_log IMPORTING ev_handle_appl_log = ld_ev_handle_appl_log CHANGING ct_instance = ld_ct_instance ct_specialize = ld_ct_specialize ct_value = ld_ct_value ct_owner = ld_ct_owner ct_observer = ld_ct_observer ct_structure = ld_ct_structure ct_structure_ref = ld_ct_structure_ref ct_ibib = ld_ct_ibib ct_ibibt = ld_ct_ibibt EXCEPTIONS INTERNAL_ERROR = 1 . " IB_SYS_CONVERT_INT_TO_EXT
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_handle_appl_log  TYPE BALLOGHNDL ,
ld_ct_specialize  TYPE IBCOXEXP_SPEC_TAB ,
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 .

ld_ct_instance = 'Check type of data required'.
ld_iv_handle_appl_log = 'Check type of data required'.
ld_ct_specialize = 'Check type of data required'.
ld_ct_value = 'Check type of data required'.
ld_ct_owner = 'Check type of data required'.
ld_ct_observer = 'Check type of data required'.
ld_ct_structure = 'Check type of data required'.
ld_ct_structure_ref = 'Check type of data required'.
ld_ct_ibib = 'Check type of data required'.
ld_ct_ibibt = 'Check type of data required'.

Contribute (Add Comments)

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