SAP Function Modules

ISH_AMB_CASE1_SUBSCREEN_REQ SAP Function module







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

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


Pattern for FM ISH_AMB_CASE1_SUBSCREEN_REQ - ISH AMB CASE1 SUBSCREEN REQ





CALL FUNCTION 'ISH_AMB_CASE1_SUBSCREEN_REQ' "
  EXPORTING
    i_einri =                   " einri         Institution
    i_patnr =                   " patnr         Patient Number
    i_falnr =                   " falnr         Case Number
*   i_lfdbew =                  " lfdbew        Sequence Number of a Movement
*   i_vcode_npat =              " ish_vcode     Processing Mode - Patient
    i_vcode_nfal =              " ish_vcode     Processing Mode for Case
*   i_vcode_nbew =              " ish_vcode     Processing Mode - Movement
  TABLES
    et_empty_required =         " rndym_empty_required  Blank Required Fields
    .  "  ISH_AMB_CASE1_SUBSCREEN_REQ

ABAP code example for Function Module ISH_AMB_CASE1_SUBSCREEN_REQ





The ABAP code below is a full code listing to execute function module ISH_AMB_CASE1_SUBSCREEN_REQ 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_et_empty_required  TYPE STANDARD TABLE OF RNDYM_EMPTY_REQUIRED,"TABLES PARAM
wa_et_empty_required  LIKE LINE OF it_et_empty_required .

DATA(ld_i_einri) = 'Check type of data required'.
DATA(ld_i_patnr) = 'Check type of data required'.
DATA(ld_i_falnr) = 'Check type of data required'.
DATA(ld_i_lfdbew) = 'Check type of data required'.
DATA(ld_i_vcode_npat) = 'Check type of data required'.
DATA(ld_i_vcode_nfal) = 'Check type of data required'.
DATA(ld_i_vcode_nbew) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_et_empty_required to it_et_empty_required. . CALL FUNCTION 'ISH_AMB_CASE1_SUBSCREEN_REQ' EXPORTING i_einri = ld_i_einri i_patnr = ld_i_patnr i_falnr = ld_i_falnr * i_lfdbew = ld_i_lfdbew * i_vcode_npat = ld_i_vcode_npat i_vcode_nfal = ld_i_vcode_nfal * i_vcode_nbew = ld_i_vcode_nbew TABLES et_empty_required = it_et_empty_required . " ISH_AMB_CASE1_SUBSCREEN_REQ
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_i_einri  TYPE EINRI ,
it_et_empty_required  TYPE STANDARD TABLE OF RNDYM_EMPTY_REQUIRED ,
wa_et_empty_required  LIKE LINE OF it_et_empty_required,
ld_i_patnr  TYPE PATNR ,
ld_i_falnr  TYPE FALNR ,
ld_i_lfdbew  TYPE LFDBEW ,
ld_i_vcode_npat  TYPE ISH_VCODE ,
ld_i_vcode_nfal  TYPE ISH_VCODE ,
ld_i_vcode_nbew  TYPE ISH_VCODE .

ld_i_einri = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_et_empty_required to it_et_empty_required.
ld_i_patnr = 'Check type of data required'.
ld_i_falnr = 'Check type of data required'.
ld_i_lfdbew = 'Check type of data required'.
ld_i_vcode_npat = 'Check type of data required'.
ld_i_vcode_nfal = 'Check type of data required'.
ld_i_vcode_nbew = '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 ISH_AMB_CASE1_SUBSCREEN_REQ or its description.