ISH_CALL_RULE_SERVICES_BILLING 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_CALL_RULE_SERVICES_BILLING into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
NBTG
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISH_CALL_RULE_SERVICES_BILLING' "
EXPORTING
einri = " tn01-einri Institution
* event = SPACE " tn02e-event
infal = " nfal Case
inpat = " npat Patient
* messages_collect = 'X' " npdok-xfeld Save or save and display services
* messages_show = ' ' " npdok-xfeld Rule type
rgart = " tnt3-rgart Rule type
* stichtag = SY-DATUM " sy-datum Check Date
* aktion = ' ' " tnrs2-aktion
IMPORTING
errors = " No. messages with type E
warnings = " No. message with type W
TABLES
* ernlsr = " rnlsr Table containing services which caused E messages
inlei = " nlei Table with services to be checked
ivnbew = " vnbew Movements
* ernlrf = " rnlrf
EXCEPTIONS
ERROR = 1 " Internal error
. " ISH_CALL_RULE_SERVICES_BILLING
The ABAP code below is a full code listing to execute function module ISH_CALL_RULE_SERVICES_BILLING 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_errors | TYPE STRING , |
| ld_warnings | TYPE STRING , |
| it_ernlsr | TYPE STANDARD TABLE OF RNLSR,"TABLES PARAM |
| wa_ernlsr | LIKE LINE OF it_ernlsr , |
| it_inlei | TYPE STANDARD TABLE OF NLEI,"TABLES PARAM |
| wa_inlei | LIKE LINE OF it_inlei , |
| it_ivnbew | TYPE STANDARD TABLE OF VNBEW,"TABLES PARAM |
| wa_ivnbew | LIKE LINE OF it_ivnbew , |
| it_ernlrf | TYPE STANDARD TABLE OF RNLRF,"TABLES PARAM |
| wa_ernlrf | LIKE LINE OF it_ernlrf . |
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_errors | TYPE STRING , |
| ld_einri | TYPE TN01-EINRI , |
| it_ernlsr | TYPE STANDARD TABLE OF RNLSR , |
| wa_ernlsr | LIKE LINE OF it_ernlsr, |
| ld_warnings | TYPE STRING , |
| ld_event | TYPE TN02E-EVENT , |
| it_inlei | TYPE STANDARD TABLE OF NLEI , |
| wa_inlei | LIKE LINE OF it_inlei, |
| ld_infal | TYPE NFAL , |
| it_ivnbew | TYPE STANDARD TABLE OF VNBEW , |
| wa_ivnbew | LIKE LINE OF it_ivnbew, |
| ld_inpat | TYPE NPAT , |
| it_ernlrf | TYPE STANDARD TABLE OF RNLRF , |
| wa_ernlrf | LIKE LINE OF it_ernlrf, |
| ld_messages_collect | TYPE NPDOK-XFELD , |
| ld_messages_show | TYPE NPDOK-XFELD , |
| ld_rgart | TYPE TNT3-RGART , |
| ld_stichtag | TYPE SY-DATUM , |
| ld_aktion | TYPE TNRS2-AKTION . |
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_CALL_RULE_SERVICES_BILLING or its description.