ISU_O_METERREAD_INPUT1 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 ISU_O_METERREAD_INPUT1 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
EL01
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_O_METERREAD_INPUT1' "
* EXPORTING
* x_maxerror = 1 " regen-maxcount Entries to be Transferred
* x_correct = SPACE " regen-kennzx
* x_only_formal_checks = SPACE " regen-kennzx
* x_valdep_partly = SPACE " regen-kennzx
* x_te444 = " te444
IMPORTING
y_subscr_curspos = " isu17_meterdocu_curspos
* TABLES
* xyt_reabld = " reabld
CHANGING
xy_obj = " isu17_meterread
EXCEPTIONS
INPUT_ERROR = 1 " Input error
NOT_VALID = 2 "
PLAUSI_ERROR = 3 "
PLAUSI_ERROR_NOCOR = 4 "
SYSTEM_ERROR = 5 " System Error
NOT_COMPLETE = 6 "
INDEP_IMPLAUSIBLE = 7 "
NOT_AUTHORIZED = 8 "
. " ISU_O_METERREAD_INPUT1
The ABAP code below is a full code listing to execute function module ISU_O_METERREAD_INPUT1 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_y_subscr_curspos | TYPE ISU17_METERDOCU_CURSPOS , |
| it_xyt_reabld | TYPE STANDARD TABLE OF REABLD,"TABLES PARAM |
| wa_xyt_reabld | LIKE LINE OF it_xyt_reabld . |
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_xy_obj | TYPE ISU17_METERREAD , |
| ld_y_subscr_curspos | TYPE ISU17_METERDOCU_CURSPOS , |
| ld_x_maxerror | TYPE REGEN-MAXCOUNT , |
| it_xyt_reabld | TYPE STANDARD TABLE OF REABLD , |
| wa_xyt_reabld | LIKE LINE OF it_xyt_reabld, |
| ld_x_correct | TYPE REGEN-KENNZX , |
| ld_x_only_formal_checks | TYPE REGEN-KENNZX , |
| ld_x_valdep_partly | TYPE REGEN-KENNZX , |
| ld_x_te444 | TYPE TE444 . |
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 ISU_O_METERREAD_INPUT1 or its description.