SAP ISLB_READ_SOLUTION_ALL Function Module for SDB: Read Solution and all tables
ISLB_READ_SOLUTION_ALL is a standard islb read solution all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SDB: Read Solution and all tables 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 islb read solution all FM, simply by entering the name ISLB_READ_SOLUTION_ALL into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISLB
Program Name: SAPLISLB
Main Program: SAPLISLB
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISLB_READ_SOLUTION_ALL 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 'ISLB_READ_SOLUTION_ALL'"SDB: Read Solution and all tables.
EXPORTING
I_ISLNR = "
I_ISLVR = "
IMPORTING
E_DISOL = "
TABLES
* T_DISOTXT = "
* T_DISLTK = "
* T_DISLACT = "
* T_DISLATT = "
* T_DISLATTXT = "
* T_DISLVALCAT = "
EXCEPTIONS
INVALID_NUMBER = 1 SHOW_MESSAGE = 2 READ_ERROR = 3
IMPORTING Parameters details for ISLB_READ_SOLUTION_ALL
I_ISLNR -
Data type: DISOL-ISLNROptional: No
Call by Reference: No ( called with pass by value option)
I_ISLVR -
Data type: DISOL-ISLVROptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISLB_READ_SOLUTION_ALL
E_DISOL -
Data type: DISOLOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISLB_READ_SOLUTION_ALL
T_DISOTXT -
Data type: DISOTXTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_DISLTK -
Data type: DISLTKOptional: Yes
Call by Reference: No ( called with pass by value option)
T_DISLACT -
Data type: DISLACTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_DISLATT -
Data type: DISLATTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_DISLATTXT -
Data type: DISLATTXTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_DISLVALCAT -
Data type: DISLVALCATOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INVALID_NUMBER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SHOW_MESSAGE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
READ_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISLB_READ_SOLUTION_ALL 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_e_disol | TYPE DISOL, " | |||
| lv_i_islnr | TYPE DISOL-ISLNR, " | |||
| lt_t_disotxt | TYPE STANDARD TABLE OF DISOTXT, " | |||
| lv_invalid_number | TYPE DISOTXT, " | |||
| lv_i_islvr | TYPE DISOL-ISLVR, " | |||
| lt_t_disltk | TYPE STANDARD TABLE OF DISLTK, " | |||
| lv_show_message | TYPE DISLTK, " | |||
| lt_t_dislact | TYPE STANDARD TABLE OF DISLACT, " | |||
| lv_read_error | TYPE DISLACT, " | |||
| lt_t_dislatt | TYPE STANDARD TABLE OF DISLATT, " | |||
| lt_t_dislattxt | TYPE STANDARD TABLE OF DISLATTXT, " | |||
| lt_t_dislvalcat | TYPE STANDARD TABLE OF DISLVALCAT. " |
|   CALL FUNCTION 'ISLB_READ_SOLUTION_ALL' "SDB: Read Solution and all tables |
| EXPORTING | ||
| I_ISLNR | = lv_i_islnr | |
| I_ISLVR | = lv_i_islvr | |
| IMPORTING | ||
| E_DISOL | = lv_e_disol | |
| TABLES | ||
| T_DISOTXT | = lt_t_disotxt | |
| T_DISLTK | = lt_t_disltk | |
| T_DISLACT | = lt_t_dislact | |
| T_DISLATT | = lt_t_dislatt | |
| T_DISLATTXT | = lt_t_dislattxt | |
| T_DISLVALCAT | = lt_t_disltalcat | |
| EXCEPTIONS | ||
| INVALID_NUMBER = 1 | ||
| SHOW_MESSAGE = 2 | ||
| READ_ERROR = 3 | ||
| . " ISLB_READ_SOLUTION_ALL | ||
ABAP code using 7.40 inline data declarations to call FM ISLB_READ_SOLUTION_ALL
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 ISLNR FROM DISOL INTO @DATA(ld_i_islnr). | ||||
| "SELECT single ISLVR FROM DISOL INTO @DATA(ld_i_islvr). | ||||
Search for further information about these or an SAP related objects