SAP MM_CONDBI_POINTER_SELECT Function Module for NOTRANSL: Lesen der Änderungspointer für Belegindexbearbeitung
MM_CONDBI_POINTER_SELECT is a standard mm condbi pointer select 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: Lesen der Änderungspointer für Belegindexbearbeitung 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 mm condbi pointer select FM, simply by entering the name MM_CONDBI_POINTER_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: WIN4
Program Name: SAPLWIN4
Main Program: SAPLWIN4
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MM_CONDBI_POINTER_SELECT 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 'MM_CONDBI_POINTER_SELECT'"NOTRANSL: Lesen der Änderungspointer für Belegindexbearbeitung.
EXPORTING
* MESSAGE_TYPE = 'CONDBI' "Message Type
* READ_NOT_PROCESSES_POINTERS = 'X' "ALE processing indicator
* SAPGUI_MESSAGE = ' ' "Generic Type
* I_POINTER_VALIDITY = "Date Range for Determining Valid Conditions
* I_BUFFER_POINTER = ' ' "Generic Type
TABLES
POINTER_TAB = "Change pointer
EXCEPTIONS
NO_POINTER_FOUND = 1 ERROR_READING_CHANGE_POINTERS = 2
IMPORTING Parameters details for MM_CONDBI_POINTER_SELECT
MESSAGE_TYPE - Message Type
Data type: EDIDC-MESTYPDefault: 'CONDBI'
Optional: Yes
Call by Reference: No ( called with pass by value option)
READ_NOT_PROCESSES_POINTERS - ALE processing indicator
Data type: BDCPS-PROCESSDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
SAPGUI_MESSAGE - Generic Type
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_POINTER_VALIDITY - Date Range for Determining Valid Conditions
Data type: WIN1_DATSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BUFFER_POINTER - Generic Type
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MM_CONDBI_POINTER_SELECT
POINTER_TAB - Change pointer
Data type: BDCPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_POINTER_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERROR_READING_CHANGE_POINTERS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MM_CONDBI_POINTER_SELECT 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: | ||||
| lt_pointer_tab | TYPE STANDARD TABLE OF BDCP, " | |||
| lv_message_type | TYPE EDIDC-MESTYP, " 'CONDBI' | |||
| lv_no_pointer_found | TYPE EDIDC, " | |||
| lv_read_not_processes_pointers | TYPE BDCPS-PROCESS, " 'X' | |||
| lv_error_reading_change_pointers | TYPE BDCPS, " | |||
| lv_sapgui_message | TYPE C, " SPACE | |||
| lv_i_pointer_validity | TYPE WIN1_DATS, " | |||
| lv_i_buffer_pointer | TYPE C. " SPACE |
|   CALL FUNCTION 'MM_CONDBI_POINTER_SELECT' "NOTRANSL: Lesen der Änderungspointer für Belegindexbearbeitung |
| EXPORTING | ||
| MESSAGE_TYPE | = lv_message_type | |
| READ_NOT_PROCESSES_POINTERS | = lv_read_not_processes_pointers | |
| SAPGUI_MESSAGE | = lv_sapgui_message | |
| I_POINTER_VALIDITY | = lv_i_pointer_validity | |
| I_BUFFER_POINTER | = lv_i_buffer_pointer | |
| TABLES | ||
| POINTER_TAB | = lt_pointer_tab | |
| EXCEPTIONS | ||
| NO_POINTER_FOUND = 1 | ||
| ERROR_READING_CHANGE_POINTERS = 2 | ||
| . " MM_CONDBI_POINTER_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM MM_CONDBI_POINTER_SELECT
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.| "SELECT single MESTYP FROM EDIDC INTO @DATA(ld_message_type). | ||||
| DATA(ld_message_type) | = 'CONDBI'. | |||
| "SELECT single PROCESS FROM BDCPS INTO @DATA(ld_read_not_processes_pointers). | ||||
| DATA(ld_read_not_processes_pointers) | = 'X'. | |||
| DATA(ld_sapgui_message) | = ' '. | |||
| DATA(ld_i_buffer_pointer) | = ' '. | |||
Search for further information about these or an SAP related objects