SAP Function Modules

ISH_CHARACTERISTIC_ADMITT_NURS SAP Function module







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

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


Pattern for FM ISH_CHARACTERISTIC_ADMITT_NURS - ISH CHARACTERISTIC ADMITT NURS





CALL FUNCTION 'ISH_CHARACTERISTIC_ADMITT_NURS' "
  EXPORTING
    i_nfal =                    " nfal
    i_npat =                    " npat
  IMPORTING
    mwert =                     "
    subrc =                     " sy-subrc
  TABLES
    nbewtab =                   " vnbew
    ndiatab =                   " rndi1
    nleitab =                   " nlei
    .  "  ISH_CHARACTERISTIC_ADMITT_NURS

ABAP code example for Function Module ISH_CHARACTERISTIC_ADMITT_NURS





The ABAP code below is a full code listing to execute function module ISH_CHARACTERISTIC_ADMITT_NURS 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_mwert  TYPE STRING ,
ld_subrc  TYPE SY-SUBRC ,
it_nbewtab  TYPE STANDARD TABLE OF VNBEW,"TABLES PARAM
wa_nbewtab  LIKE LINE OF it_nbewtab ,
it_ndiatab  TYPE STANDARD TABLE OF RNDI1,"TABLES PARAM
wa_ndiatab  LIKE LINE OF it_ndiatab ,
it_nleitab  TYPE STANDARD TABLE OF NLEI,"TABLES PARAM
wa_nleitab  LIKE LINE OF it_nleitab .

DATA(ld_i_nfal) = 'Check type of data required'.
DATA(ld_i_npat) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_nbewtab to it_nbewtab.

"populate fields of struture and append to itab
append wa_ndiatab to it_ndiatab.

"populate fields of struture and append to itab
append wa_nleitab to it_nleitab. . CALL FUNCTION 'ISH_CHARACTERISTIC_ADMITT_NURS' EXPORTING i_nfal = ld_i_nfal i_npat = ld_i_npat IMPORTING mwert = ld_mwert subrc = ld_subrc TABLES nbewtab = it_nbewtab ndiatab = it_ndiatab nleitab = it_nleitab . " ISH_CHARACTERISTIC_ADMITT_NURS
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_mwert  TYPE STRING ,
ld_i_nfal  TYPE NFAL ,
it_nbewtab  TYPE STANDARD TABLE OF VNBEW ,
wa_nbewtab  LIKE LINE OF it_nbewtab,
ld_subrc  TYPE SY-SUBRC ,
ld_i_npat  TYPE NPAT ,
it_ndiatab  TYPE STANDARD TABLE OF RNDI1 ,
wa_ndiatab  LIKE LINE OF it_ndiatab,
it_nleitab  TYPE STANDARD TABLE OF NLEI ,
wa_nleitab  LIKE LINE OF it_nleitab.

ld_i_nfal = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_nbewtab to it_nbewtab.
ld_i_npat = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_ndiatab to it_ndiatab.

"populate fields of struture and append to itab
append wa_nleitab to it_nleitab.

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