ISH_CASE_SCREEN 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_CASE_SCREEN into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
NCHD
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISH_CASE_SCREEN' "
EXPORTING
* ss_enqueue_nfal = 'X' " Lock Case with VCODE_NFAL 'UPD' (ON/OFF)
* ss_enqueue_npat = ' ' " Lock Case with VCODE_NFAL 'UPD' (ON/OFF)
* ss_falliste = SPACE " Case List Is Always to Be Displayed (ON/OFF)
* ss_fcode_list = SPACE " Function Code for Patient List ->
* ss_list_ok_code = SPACE " Function Executed in List
* ss_ok_code = SPACE " Function that Was Executed ->
* ss_save_bewty = SPACE " nbew-bewty Transaction Code
* ss_save_lfdnr = 00000 " nbew-lfdnr Transaction Code
ss_tcode = " sy-tcode Transaction Code
* ss_vcode = 'DEF' " rnpa1-vcode Processing Mode - General
* ss_vcode_nfal = 'DIS' " rnpa1-vcode Processing Mode of the Case
* ss_zuo_list = SPACE " Assignment Code for Patient List ->
IMPORTING
ss_bewty = " nbew-bewty Movement Category Selected from Movement List
ss_einri = " rnpa1-einri Specified Institution
ss_falnr = " nfal-falnr Specified Case Number
ss_fziff = " nfal-fziff Specified Check Digit Case
ss_leave_screen = " Indicator that LEAVE SCREEN Is to Be Executed
ss_lfdnr = " nbew-lfdnr Movement Number Selected from Movement List
ss_list_okcode = " Specified Institution
ss_okcode = " Function after SUBSCREEN ->
ss_patnr = " npat-patnr Specified Patient Number
ss_pziff = " npat-pziff Specified Check Digit Patient
ss_vcode_new = " rnpa1-vcode ->
. " ISH_CASE_SCREEN
The ABAP code below is a full code listing to execute function module ISH_CASE_SCREEN 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).
| ld_ss_bewty | TYPE NBEW-BEWTY , |
| ld_ss_einri | TYPE RNPA1-EINRI , |
| ld_ss_falnr | TYPE NFAL-FALNR , |
| ld_ss_fziff | TYPE NFAL-FZIFF , |
| ld_ss_leave_screen | TYPE STRING , |
| ld_ss_lfdnr | TYPE NBEW-LFDNR , |
| ld_ss_list_okcode | TYPE STRING , |
| ld_ss_okcode | TYPE STRING , |
| ld_ss_patnr | TYPE NPAT-PATNR , |
| ld_ss_pziff | TYPE NPAT-PZIFF , |
| ld_ss_vcode_new | TYPE RNPA1-VCODE . |
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_ss_enqueue_nfal | TYPE STRING , |
| ld_ss_bewty | TYPE NBEW-BEWTY , |
| ld_ss_einri | TYPE RNPA1-EINRI , |
| ld_ss_enqueue_npat | TYPE STRING , |
| ld_ss_falnr | TYPE NFAL-FALNR , |
| ld_ss_falliste | TYPE STRING , |
| ld_ss_fziff | TYPE NFAL-FZIFF , |
| ld_ss_fcode_list | TYPE STRING , |
| ld_ss_leave_screen | TYPE STRING , |
| ld_ss_list_ok_code | TYPE STRING , |
| ld_ss_lfdnr | TYPE NBEW-LFDNR , |
| ld_ss_ok_code | TYPE STRING , |
| ld_ss_list_okcode | TYPE STRING , |
| ld_ss_save_bewty | TYPE NBEW-BEWTY , |
| ld_ss_okcode | TYPE STRING , |
| ld_ss_save_lfdnr | TYPE NBEW-LFDNR , |
| ld_ss_patnr | TYPE NPAT-PATNR , |
| ld_ss_tcode | TYPE SY-TCODE , |
| ld_ss_pziff | TYPE NPAT-PZIFF , |
| ld_ss_vcode | TYPE RNPA1-VCODE , |
| ld_ss_vcode_new | TYPE RNPA1-VCODE , |
| ld_ss_vcode_nfal | TYPE RNPA1-VCODE , |
| ld_ss_zuo_list | TYPE STRING . |
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_CASE_SCREEN or its description.
ISH_CASE_SCREEN - ISH_CASE_SAVE_DEPENDENT - ISH_CASE_PREREG_POOL_UNDO - IS-H: Undo Snapshot of Preregistration Data ISH_CASE_PREREG_POOL_SNAPSHOT - IS-H: Create Snapshot of Preregistration Data ISH_CASE_PREREG_POOL_SET - IS-H: Write Preregistration Data in Data Pool ISH_CASE_PREREG_POOL_REN - IS-H: Write Preregistration Data with New Key in Data Pool