HR_IMPUTE_CC_END_NL 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 HR_IMPUTE_CC_END_NL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RPNC
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'HR_IMPUTE_CC_END_NL' "Company car GB benefit calculation P0442 second exit
EXPORTING
infoline = " car_info
* paper = " pc261-fpper
* permo = " t549a-permo
* sw_prot = " c
TABLES
it0442 = " p0442
* calc_it = " pc207
calc_wpbp = " pc205
calc_v0 = " pc20c
* calc_var = " hrvar
* ptext = " plog_text
* car_err_nat = " hrerror
* pytabnat = " pc208 Afrekeningsresultaat: gecumuleerde resultaattabel
i51cb = " t51cb
EXCEPTIONS
ERR_GENERAL = 1 "
. " HR_IMPUTE_CC_END_NL
The ABAP code below is a full code listing to execute function module HR_IMPUTE_CC_END_NL 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).
| it_it0442 | TYPE STANDARD TABLE OF P0442,"TABLES PARAM |
| wa_it0442 | LIKE LINE OF it_it0442 , |
| it_calc_it | TYPE STANDARD TABLE OF PC207,"TABLES PARAM |
| wa_calc_it | LIKE LINE OF it_calc_it , |
| it_calc_wpbp | TYPE STANDARD TABLE OF PC205,"TABLES PARAM |
| wa_calc_wpbp | LIKE LINE OF it_calc_wpbp , |
| it_calc_v0 | TYPE STANDARD TABLE OF PC20C,"TABLES PARAM |
| wa_calc_v0 | LIKE LINE OF it_calc_v0 , |
| it_calc_var | TYPE STANDARD TABLE OF HRVAR,"TABLES PARAM |
| wa_calc_var | LIKE LINE OF it_calc_var , |
| it_ptext | TYPE STANDARD TABLE OF PLOG_TEXT,"TABLES PARAM |
| wa_ptext | LIKE LINE OF it_ptext , |
| it_car_err_nat | TYPE STANDARD TABLE OF HRERROR,"TABLES PARAM |
| wa_car_err_nat | LIKE LINE OF it_car_err_nat , |
| it_pytabnat | TYPE STANDARD TABLE OF PC208,"TABLES PARAM |
| wa_pytabnat | LIKE LINE OF it_pytabnat , |
| it_i51cb | TYPE STANDARD TABLE OF T51CB,"TABLES PARAM |
| wa_i51cb | LIKE LINE OF it_i51cb . |
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_infoline | TYPE CAR_INFO , |
| it_it0442 | TYPE STANDARD TABLE OF P0442 , |
| wa_it0442 | LIKE LINE OF it_it0442, |
| ld_paper | TYPE PC261-FPPER , |
| it_calc_it | TYPE STANDARD TABLE OF PC207 , |
| wa_calc_it | LIKE LINE OF it_calc_it, |
| ld_permo | TYPE T549A-PERMO , |
| it_calc_wpbp | TYPE STANDARD TABLE OF PC205 , |
| wa_calc_wpbp | LIKE LINE OF it_calc_wpbp, |
| ld_sw_prot | TYPE C , |
| it_calc_v0 | TYPE STANDARD TABLE OF PC20C , |
| wa_calc_v0 | LIKE LINE OF it_calc_v0, |
| it_calc_var | TYPE STANDARD TABLE OF HRVAR , |
| wa_calc_var | LIKE LINE OF it_calc_var, |
| it_ptext | TYPE STANDARD TABLE OF PLOG_TEXT , |
| wa_ptext | LIKE LINE OF it_ptext, |
| it_car_err_nat | TYPE STANDARD TABLE OF HRERROR , |
| wa_car_err_nat | LIKE LINE OF it_car_err_nat, |
| it_pytabnat | TYPE STANDARD TABLE OF PC208 , |
| wa_pytabnat | LIKE LINE OF it_pytabnat, |
| it_i51cb | TYPE STANDARD TABLE OF T51CB , |
| wa_i51cb | LIKE LINE OF it_i51cb. |
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 HR_IMPUTE_CC_END_NL or its description.
HR_IMPUTE_CC_END_NL - Company car GB benefit calculation P0442 second exit HR_IMPUTE_CC_END_GB - Company car GB benefit calculation P0442 second exit HR_IMPUTE_CC_CALC_ZA - Company car ZA car benefit calculation HR_IMPUTE_CC_CALC_SE - Calculate car benefit - SE HR_IMPUTE_CC_CALC_NO - Calculate Car Benefit HR_IMPUTE_CC_CALC_NL - Auto van de zaak berekening bijtelling P0442 1e exit (NL)