SAP Function Modules

IPMO_ACE_REF_KEY_CLEARING_CHG SAP Function module







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

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


Pattern for FM IPMO_ACE_REF_KEY_CLEARING_CHG - IPMO ACE REF KEY CLEARING CHG





CALL FUNCTION 'IPMO_ACE_REF_KEY_CLEARING_CHG' "
  EXPORTING
    it_object =                 " crm_ace_if_object_t  CRM Interface: Object Table
    it_params =                 " crm_ace_if_parameters_t  CRM Interface: Parameter Table
  CHANGING
    ct_ace_object_ext =         " crm_ace_object_ext_t  Table Type for CRM_ACE_OBJECT_EXT
    ct_ace_items_ext =          " crm_ace_object_item_ext_t  Table Type for CRM_ACE_OBJECT_ITEM_EXT
    ct_ace_assignments_ext =    " crm_ace_assignments_ext_t  Table for CRM_ACE_ASSIGNMENTS Structure
    ct_ace_params_ext =         " crm_ace_parameters_ext_t  CRM Accruals: Table Type for Parameters
    .  "  IPMO_ACE_REF_KEY_CLEARING_CHG

ABAP code example for Function Module IPMO_ACE_REF_KEY_CLEARING_CHG





The ABAP code below is a full code listing to execute function module IPMO_ACE_REF_KEY_CLEARING_CHG 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_ct_ace_object_ext) = 'Check type of data required'.
DATA(ld_ct_ace_items_ext) = 'Check type of data required'.
DATA(ld_ct_ace_assignments_ext) = 'Check type of data required'.
DATA(ld_ct_ace_params_ext) = 'Check type of data required'.
DATA(ld_it_object) = 'Check type of data required'.
DATA(ld_it_params) = 'Check type of data required'. . CALL FUNCTION 'IPMO_ACE_REF_KEY_CLEARING_CHG' EXPORTING it_object = ld_it_object it_params = ld_it_params CHANGING ct_ace_object_ext = ld_ct_ace_object_ext ct_ace_items_ext = ld_ct_ace_items_ext ct_ace_assignments_ext = ld_ct_ace_assignments_ext ct_ace_params_ext = ld_ct_ace_params_ext . " IPMO_ACE_REF_KEY_CLEARING_CHG
IF SY-SUBRC EQ 0. "All OK 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_ace_object_ext  TYPE CRM_ACE_OBJECT_EXT_T ,
ld_it_object  TYPE CRM_ACE_IF_OBJECT_T ,
ld_ct_ace_items_ext  TYPE CRM_ACE_OBJECT_ITEM_EXT_T ,
ld_it_params  TYPE CRM_ACE_IF_PARAMETERS_T ,
ld_ct_ace_assignments_ext  TYPE CRM_ACE_ASSIGNMENTS_EXT_T ,
ld_ct_ace_params_ext  TYPE CRM_ACE_PARAMETERS_EXT_T .

ld_ct_ace_object_ext = 'Check type of data required'.
ld_it_object = 'Check type of data required'.
ld_ct_ace_items_ext = 'Check type of data required'.
ld_it_params = 'Check type of data required'.
ld_ct_ace_assignments_ext = 'Check type of data required'.
ld_ct_ace_params_ext = '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 IPMO_ACE_REF_KEY_CLEARING_CHG or its description.