KJCCSJ3_BI01_EGVB_BUFFER_SET 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 KJCCSJ3_BI01_EGVB_BUFFER_SET into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
KJCCSJ3_BI01
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'KJCCSJ3_BI01_EGVB_BUFFER_SET' "Reestimation: Write EGVB to Buffer
EXPORTING
* x_geraet = " v_eger-geraet Serial Number
* x_equnr = " eabl-equnr Equipment Number
* x_zwnummer = " eabl-zwnummer Register
* x_adatvon = " eabl-adat Meter Reading Date Relevant to Billing
* x_i_valvon = " eablh-i_zwsterw Expected Meter Reading: Internal Format
* x_adatbis = " eabl-adat Meter Reading Date Relevant to Billing
* x_i_valbis = " eablh-i_zwsterw Expected Meter Reading: Internal Format
* x_gewverf = " te266-gewverf Weighting procedures
* x_gewkey = " te266-gewkey Weighting Keys
* x_anlage = " eanl-anlage Installation
x_egvb_gv = " eablh-i_zwsterw Expected Meter Reading: Internal Format
x_egvb_ln = " eablh-i_zwsterw Expected Meter Reading: Internal Format
x_consum_real = " eablh-i_verberw Expected Consumption: Internal Format
x_consum_linear = " eablh-i_verberw Expected Consumption: Internal Format
x_total_weight = " eablh-i_verberw Expected Consumption: Internal Format
* x_bp = " rea00-break
* x_disconnected = " regen-kennzx Indicator
* x_wablt = " isu2a_ablt
* x_wthg = " isufg_thg
* x_inst_for_billing = " isu2a_inst_struc Installation Structure of an Installation from Billing View
* TABLES
* t_v_ediscobj = " v_ediscobj
* t_vactab = " vacstruc Vacant Periods
EXCEPTIONS
GENERAL_FAULT = 1 " General Error
. " KJCCSJ3_BI01_EGVB_BUFFER_SET
The ABAP code below is a full code listing to execute function module KJCCSJ3_BI01_EGVB_BUFFER_SET 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_t_v_ediscobj | TYPE STANDARD TABLE OF V_EDISCOBJ,"TABLES PARAM |
| wa_t_v_ediscobj | LIKE LINE OF it_t_v_ediscobj , |
| it_t_vactab | TYPE STANDARD TABLE OF VACSTRUC,"TABLES PARAM |
| wa_t_vactab | LIKE LINE OF it_t_vactab . |
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_x_geraet | TYPE V_EGER-GERAET , |
| it_t_v_ediscobj | TYPE STANDARD TABLE OF V_EDISCOBJ , |
| wa_t_v_ediscobj | LIKE LINE OF it_t_v_ediscobj, |
| ld_x_equnr | TYPE EABL-EQUNR , |
| it_t_vactab | TYPE STANDARD TABLE OF VACSTRUC , |
| wa_t_vactab | LIKE LINE OF it_t_vactab, |
| ld_x_zwnummer | TYPE EABL-ZWNUMMER , |
| ld_x_adatvon | TYPE EABL-ADAT , |
| ld_x_i_valvon | TYPE EABLH-I_ZWSTERW , |
| ld_x_adatbis | TYPE EABL-ADAT , |
| ld_x_i_valbis | TYPE EABLH-I_ZWSTERW , |
| ld_x_gewverf | TYPE TE266-GEWVERF , |
| ld_x_gewkey | TYPE TE266-GEWKEY , |
| ld_x_anlage | TYPE EANL-ANLAGE , |
| ld_x_egvb_gv | TYPE EABLH-I_ZWSTERW , |
| ld_x_egvb_ln | TYPE EABLH-I_ZWSTERW , |
| ld_x_consum_real | TYPE EABLH-I_VERBERW , |
| ld_x_consum_linear | TYPE EABLH-I_VERBERW , |
| ld_x_total_weight | TYPE EABLH-I_VERBERW , |
| ld_x_bp | TYPE REA00-BREAK , |
| ld_x_disconnected | TYPE REGEN-KENNZX , |
| ld_x_wablt | TYPE ISU2A_ABLT , |
| ld_x_wthg | TYPE ISUFG_THG , |
| ld_x_inst_for_billing | TYPE ISU2A_INST_STRUC . |
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 KJCCSJ3_BI01_EGVB_BUFFER_SET or its description.