SAP ISH_LIST_DATA_GPART Function Module for
ISH_LIST_DATA_GPART is a standard ish list data gpart SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ish list data gpart FM, simply by entering the name ISH_LIST_DATA_GPART into the relevant SAP transaction such as SE37 or SE38.
Function Group: N00G
Program Name: SAPLN00G
Main Program: SAPLN00G
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_LIST_DATA_GPART 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 'ISH_LIST_DATA_GPART'".
EXPORTING
* ARZT = ' ' "Indicator whether only Physicians Are Selected
* COL = '10' "Start of Columns for Selection Screen
* MAKZ = ' ' "Indicator whether Person Is Employee
* KVZUL = ' ' "PPA Accreditation
* LIQBE = ' ' "Private Practice Privileges
* ROLLE = '0' "Denotes Role that Is to Be Selected
* ROW = '5' "Start of Rows of Selection Screen
IMPORTING
SAVE_OKCODE = "Contains SEL, END, CAN or LBCK
WEITER = "TRUE-> Resume Processing FALSE-> End
TABLES
SS_RNGPA = "Selected Business Partners with Data
EXCEPTIONS
EINRI_FALSE = 1 GSCHL_FALSE = 2 KTART_FALSE = 3 NOT_FOUND = 4
IMPORTING Parameters details for ISH_LIST_DATA_GPART
ARZT - Indicator whether only Physicians Are Selected
Data type: RNG10-ARZTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
COL - Start of Columns for Selection Screen
Data type: SY-CUCOLDefault: '10'
Optional: Yes
Call by Reference: No ( called with pass by value option)
MAKZ - Indicator whether Person Is Employee
Data type: RNG10-MAKZDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
KVZUL - PPA Accreditation
Data type: NPER-KVZULDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LIQBE - Private Practice Privileges
Data type: NPER-LIQBEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
ROLLE - Denotes Role that Is to Be Selected
Data type: RNG10-GPARTDefault: '0'
Optional: Yes
Call by Reference: No ( called with pass by value option)
ROW - Start of Rows of Selection Screen
Data type: SY-CUROWDefault: '5'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISH_LIST_DATA_GPART
SAVE_OKCODE - Contains SEL, END, CAN or LBCK
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WEITER - TRUE-> Resume Processing FALSE-> End
Data type: RNG10-GPARTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_LIST_DATA_GPART
SS_RNGPA - Selected Business Partners with Data
Data type: RNGPAOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
EINRI_FALSE - Wrong Institution Key Specified
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GSCHL_FALSE - Wrong Sex Indicator Specified
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
KTART_FALSE - Insurance Provider Type not Specified in Table TN18
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND - No Record Matching Search Criteria Found in NGPA
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_LIST_DATA_GPART 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_arzt | TYPE RNG10-ARZT, " SPACE | |||
| lt_ss_rngpa | TYPE STANDARD TABLE OF RNGPA, " | |||
| lv_einri_false | TYPE RNGPA, " | |||
| lv_save_okcode | TYPE RNGPA, " | |||
| lv_col | TYPE SY-CUCOL, " '10' | |||
| lv_weiter | TYPE RNG10-GPART, " | |||
| lv_gschl_false | TYPE RNG10, " | |||
| lv_makz | TYPE RNG10-MAKZ, " SPACE | |||
| lv_ktart_false | TYPE RNG10, " | |||
| lv_kvzul | TYPE NPER-KVZUL, " SPACE | |||
| lv_not_found | TYPE NPER, " | |||
| lv_liqbe | TYPE NPER-LIQBE, " SPACE | |||
| lv_rolle | TYPE RNG10-GPART, " '0' | |||
| lv_row | TYPE SY-CUROW. " '5' |
|   CALL FUNCTION 'ISH_LIST_DATA_GPART' " |
| EXPORTING | ||
| ARZT | = lv_arzt | |
| COL | = lv_col | |
| MAKZ | = lv_makz | |
| KVZUL | = lv_kvzul | |
| LIQBE | = lv_liqbe | |
| ROLLE | = lv_rolle | |
| ROW | = lv_row | |
| IMPORTING | ||
| SAVE_OKCODE | = lv_save_okcode | |
| WEITER | = lv_weiter | |
| TABLES | ||
| SS_RNGPA | = lt_ss_rngpa | |
| EXCEPTIONS | ||
| EINRI_FALSE = 1 | ||
| GSCHL_FALSE = 2 | ||
| KTART_FALSE = 3 | ||
| NOT_FOUND = 4 | ||
| . " ISH_LIST_DATA_GPART | ||
ABAP code using 7.40 inline data declarations to call FM ISH_LIST_DATA_GPART
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 ARZT FROM RNG10 INTO @DATA(ld_arzt). | ||||
| DATA(ld_arzt) | = ' '. | |||
| "SELECT single CUCOL FROM SY INTO @DATA(ld_col). | ||||
| DATA(ld_col) | = '10'. | |||
| "SELECT single GPART FROM RNG10 INTO @DATA(ld_weiter). | ||||
| "SELECT single MAKZ FROM RNG10 INTO @DATA(ld_makz). | ||||
| DATA(ld_makz) | = ' '. | |||
| "SELECT single KVZUL FROM NPER INTO @DATA(ld_kvzul). | ||||
| DATA(ld_kvzul) | = ' '. | |||
| "SELECT single LIQBE FROM NPER INTO @DATA(ld_liqbe). | ||||
| DATA(ld_liqbe) | = ' '. | |||
| "SELECT single GPART FROM RNG10 INTO @DATA(ld_rolle). | ||||
| DATA(ld_rolle) | = '0'. | |||
| "SELECT single CUROW FROM SY INTO @DATA(ld_row). | ||||
| DATA(ld_row) | = '5'. | |||
Search for further information about these or an SAP related objects