SAP Function Modules

AMIN_SELECT_NEW_KERNEL SAP Function module







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

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


Pattern for FM AMIN_SELECT_NEW_KERNEL - AMIN SELECT NEW KERNEL





CALL FUNCTION 'AMIN_SELECT_NEW_KERNEL' "
  EXPORTING
    i_process =                 " trwpr-process  Transaction for which CO interface is accessed
    i_event =                   " trwpr-event   Time at which the RW interface is called up
*   is_accrev =                 " accrev        Reference information for reversal in Accounting
* TABLES
*   t_accit =                   " accit         Accounting Interface: Item Information
*   t_acccr =                   " acccr         Accounting Interface: Currency Information
*   t_acchd =                   " acchd         Accounting Interface: Header Information
*   t_accda =                   " accda         Interface to Accounting: Asset Information
  EXCEPTIONS
    NEW_KERNEL_ACTIVE = 1       "
    .  "  AMIN_SELECT_NEW_KERNEL

ABAP code example for Function Module AMIN_SELECT_NEW_KERNEL





The ABAP code below is a full code listing to execute function module AMIN_SELECT_NEW_KERNEL 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:
it_t_accit  TYPE STANDARD TABLE OF ACCIT,"TABLES PARAM
wa_t_accit  LIKE LINE OF it_t_accit ,
it_t_acccr  TYPE STANDARD TABLE OF ACCCR,"TABLES PARAM
wa_t_acccr  LIKE LINE OF it_t_acccr ,
it_t_acchd  TYPE STANDARD TABLE OF ACCHD,"TABLES PARAM
wa_t_acchd  LIKE LINE OF it_t_acchd ,
it_t_accda  TYPE STANDARD TABLE OF ACCDA,"TABLES PARAM
wa_t_accda  LIKE LINE OF it_t_accda .


SELECT single PROCESS
FROM TRWPR
INTO @DATA(ld_i_process).


SELECT single EVENT
FROM TRWPR
INTO @DATA(ld_i_event).

DATA(ld_is_accrev) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_accit to it_t_accit.

"populate fields of struture and append to itab
append wa_t_acccr to it_t_acccr.

"populate fields of struture and append to itab
append wa_t_acchd to it_t_acchd.

"populate fields of struture and append to itab
append wa_t_accda to it_t_accda. . CALL FUNCTION 'AMIN_SELECT_NEW_KERNEL' EXPORTING i_process = ld_i_process i_event = ld_i_event * is_accrev = ld_is_accrev * TABLES * t_accit = it_t_accit * t_acccr = it_t_acccr * t_acchd = it_t_acchd * t_accda = it_t_accda EXCEPTIONS NEW_KERNEL_ACTIVE = 1 . " AMIN_SELECT_NEW_KERNEL
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_i_process  TYPE TRWPR-PROCESS ,
it_t_accit  TYPE STANDARD TABLE OF ACCIT ,
wa_t_accit  LIKE LINE OF it_t_accit,
ld_i_event  TYPE TRWPR-EVENT ,
it_t_acccr  TYPE STANDARD TABLE OF ACCCR ,
wa_t_acccr  LIKE LINE OF it_t_acccr,
ld_is_accrev  TYPE ACCREV ,
it_t_acchd  TYPE STANDARD TABLE OF ACCHD ,
wa_t_acchd  LIKE LINE OF it_t_acchd,
it_t_accda  TYPE STANDARD TABLE OF ACCDA ,
wa_t_accda  LIKE LINE OF it_t_accda.


SELECT single PROCESS
FROM TRWPR
INTO ld_i_process.


"populate fields of struture and append to itab
append wa_t_accit to it_t_accit.

SELECT single EVENT
FROM TRWPR
INTO ld_i_event.


"populate fields of struture and append to itab
append wa_t_acccr to it_t_acccr.
ld_is_accrev = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_acchd to it_t_acchd.

"populate fields of struture and append to itab
append wa_t_accda to it_t_accda.

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