SAP COUNTER_INFORMATION_DISPLAY Function Module for NOTRANSL: Ermittelt die Zählerinformationen zu einem Zähler









COUNTER_INFORMATION_DISPLAY is a standard counter information display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Ermittelt die Zählerinformationen zu einem Zähler processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for counter information display FM, simply by entering the name COUNTER_INFORMATION_DISPLAY into the relevant SAP transaction such as SE37 or SE38.

Function Group: IMR3
Program Name: SAPLIMR3
Main Program:
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function COUNTER_INFORMATION_DISPLAY pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'COUNTER_INFORMATION_DISPLAY'"NOTRANSL: Ermittelt die Zählerinformationen zu einem Zähler
EXPORTING
* I_WA_POINT = ' ' "Counter Information
* I_WA_VALUE = ' ' "Measurement Document
* I_POINT_TXT = ' ' "Description of Measuring Point
* I_CUA_TITLE = ' ' "Key for CUA screen titles
* I_POINT = ' ' "Measuring Point
.



IMPORTING Parameters details for COUNTER_INFORMATION_DISPLAY

I_WA_POINT - Counter Information

Data type: IMPT
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WA_VALUE - Measurement Document

Data type: IMRG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_POINT_TXT - Description of Measuring Point

Data type: IMPTT-PTTXT
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CUA_TITLE - Key for CUA screen titles

Data type: T185V-CTITEL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_POINT - Measuring Point

Data type: IMPT-POINT
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for COUNTER_INFORMATION_DISPLAY Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_i_wa_point  TYPE IMPT, "   SPACE
lv_i_wa_value  TYPE IMRG, "   SPACE
lv_i_point_txt  TYPE IMPTT-PTTXT, "   SPACE
lv_i_cua_title  TYPE T185V-CTITEL, "   SPACE
lv_i_point  TYPE IMPT-POINT. "   SPACE

  CALL FUNCTION 'COUNTER_INFORMATION_DISPLAY'  "NOTRANSL: Ermittelt die Zählerinformationen zu einem Zähler
    EXPORTING
         I_WA_POINT = lv_i_wa_point
         I_WA_VALUE = lv_i_wa_value
         I_POINT_TXT = lv_i_point_txt
         I_CUA_TITLE = lv_i_cua_title
         I_POINT = lv_i_point
. " COUNTER_INFORMATION_DISPLAY




ABAP code using 7.40 inline data declarations to call FM COUNTER_INFORMATION_DISPLAY

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

DATA(ld_i_wa_point) = ' '.
 
DATA(ld_i_wa_value) = ' '.
 
"SELECT single PTTXT FROM IMPTT INTO @DATA(ld_i_point_txt).
DATA(ld_i_point_txt) = ' '.
 
"SELECT single CTITEL FROM T185V INTO @DATA(ld_i_cua_title).
DATA(ld_i_cua_title) = ' '.
 
"SELECT single POINT FROM IMPT INTO @DATA(ld_i_point).
DATA(ld_i_point) = ' '.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!