SAP JIT08_READ_JITIMP_SEL Function Module for NOTRANSL: Lesen der Impulse
JIT08_READ_JITIMP_SEL is a standard jit08 read jitimp sel 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 Impulse 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 jit08 read jitimp sel FM, simply by entering the name JIT08_READ_JITIMP_SEL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIT08
Program Name: SAPLJIT08
Main Program: SAPLJIT08
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function JIT08_READ_JITIMP_SEL 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 'JIT08_READ_JITIMP_SEL'"NOTRANSL: Lesen der Impulse.
EXPORTING
* KUNNR_IV = "Customer Number
* KNREF_IV = "Cust.-Specif. Descr. of Business Partner (Plant, Stor. Loc.)
* EXTST_IV = "External Status
TABLES
JITIMP_ET = "Calls for the signal monitor
EXCEPTIONS
NO_RECORD_FOUND = 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_SAPLJIT08_001 SumJC: Enter Reference Number in EDI Message
EXIT_SAPLJIT08_002 SumJC: Maintain Reference No. in EDI Message E1EDL52
IMPORTING Parameters details for JIT08_READ_JITIMP_SEL
KUNNR_IV - Customer Number
Data type: KUNNROptional: Yes
Call by Reference: No ( called with pass by value option)
KNREF_IV - Cust.-Specif. Descr. of Business Partner (Plant, Stor. Loc.)
Data type: KNREFOptional: Yes
Call by Reference: No ( called with pass by value option)
EXTST_IV - External Status
Data type: JIT_EXTSTOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for JIT08_READ_JITIMP_SEL
JITIMP_ET - Calls for the signal monitor
Data type: JITIMPOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_RECORD_FOUND - No Entry Found
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JIT08_READ_JITIMP_SEL 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_kunnr_iv | TYPE KUNNR, " | |||
| lt_jitimp_et | TYPE STANDARD TABLE OF JITIMP, " | |||
| lv_no_record_found | TYPE JITIMP, " | |||
| lv_knref_iv | TYPE KNREF, " | |||
| lv_extst_iv | TYPE JIT_EXTST. " |
|   CALL FUNCTION 'JIT08_READ_JITIMP_SEL' "NOTRANSL: Lesen der Impulse |
| EXPORTING | ||
| KUNNR_IV | = lv_kunnr_iv | |
| KNREF_IV | = lv_knref_iv | |
| EXTST_IV | = lv_extst_iv | |
| TABLES | ||
| JITIMP_ET | = lt_jitimp_et | |
| EXCEPTIONS | ||
| NO_RECORD_FOUND = 1 | ||
| . " JIT08_READ_JITIMP_SEL | ||
ABAP code using 7.40 inline data declarations to call FM JIT08_READ_JITIMP_SEL
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