SAP IST_SAMPLE_T965 Function Module for
IST_SAMPLE_T965 is a standard ist sample t965 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 ist sample t965 FM, simply by entering the name IST_SAMPLE_T965 into the relevant SAP transaction such as SE37 or SE38.
Function Group: IST_PAYEVENT
Program Name: SAPLIST_PAYEVENT
Main Program: SAPLIST_PAYEVENT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IST_SAMPLE_T965 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 'IST_SAMPLE_T965'".
EXPORTING
I_VKONT = "
I_HERKF = "
IMPORTING
E_SUBRC = "
TABLES
T_OPPAID_WLTEL = "
* T_OPPAID = "
T_OPUNPAID = "
* T_WLTEL_UNBLOCK = "
EXCEPTIONS
OTHERS = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLIST_PAYEVENT_001 IST/CA: Release Services Directly or via Worklist
EXIT_SAPLIST_PAYEVENT_002 IST/CA: Release Services Directly
IMPORTING Parameters details for IST_SAMPLE_T965
I_VKONT -
Data type: VKONT_KKOptional: No
Call by Reference: No ( called with pass by value option)
I_HERKF -
Data type: HERKF_KKOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for IST_SAMPLE_T965
E_SUBRC -
Data type: SYSUBRCOptional: No
Call by Reference: Yes
TABLES Parameters details for IST_SAMPLE_T965
T_OPPAID_WLTEL -
Data type: IST_WLTELOptional: No
Call by Reference: Yes
T_OPPAID -
Data type: FKKCLOptional: Yes
Call by Reference: Yes
T_OPUNPAID -
Data type: FKKCLOptional: No
Call by Reference: Yes
T_WLTEL_UNBLOCK -
Data type: IST_WLTELOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
OTHERS -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IST_SAMPLE_T965 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_others | TYPE STRING, " | |||
| lv_e_subrc | TYPE SYSUBRC, " | |||
| lv_i_vkont | TYPE VKONT_KK, " | |||
| lt_t_oppaid_wltel | TYPE STANDARD TABLE OF IST_WLTEL, " | |||
| lv_i_herkf | TYPE HERKF_KK, " | |||
| lt_t_oppaid | TYPE STANDARD TABLE OF FKKCL, " | |||
| lt_t_opunpaid | TYPE STANDARD TABLE OF FKKCL, " | |||
| lt_t_wltel_unblock | TYPE STANDARD TABLE OF IST_WLTEL. " |
|   CALL FUNCTION 'IST_SAMPLE_T965' " |
| EXPORTING | ||
| I_VKONT | = lv_i_vkont | |
| I_HERKF | = lv_i_herkf | |
| IMPORTING | ||
| E_SUBRC | = lv_e_subrc | |
| TABLES | ||
| T_OPPAID_WLTEL | = lt_t_oppaid_wltel | |
| T_OPPAID | = lt_t_oppaid | |
| T_OPUNPAID | = lt_t_opunpaid | |
| T_WLTEL_UNBLOCK | = lt_t_wltel_unblock | |
| EXCEPTIONS | ||
| OTHERS = 1 | ||
| . " IST_SAMPLE_T965 | ||
ABAP code using 7.40 inline data declarations to call FM IST_SAMPLE_T965
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.Search for further information about these or an SAP related objects