SAP ISP_EMPLOYEMENT_POSITIONS_READ Function Module for
ISP_EMPLOYEMENT_POSITIONS_READ is a standard isp employement positions read 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 isp employement positions read FM, simply by entering the name ISP_EMPLOYEMENT_POSITIONS_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: JL02
Program Name: SAPLJL02
Main Program: SAPLJL02
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_EMPLOYEMENT_POSITIONS_READ 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 'ISP_EMPLOYEMENT_POSITIONS_READ'".
EXPORTING
* BVNR = ' ' "
* CHECK_DATE_IN = 'X' "
* DATE_FROM_IN = SY-DATUM "
* DATE_TO_IN = 99993112 "
* ROLLE = ' ' "
* VSG_IN = ' ' "
* VSG_MA_IN = ' ' "
TABLES
JGTBV_POS_OUT = "
EXCEPTIONS
DATE_ERROR = 1 INPUT_ERROR = 2 NO_EMPLOYEMENT = 3
IMPORTING Parameters details for ISP_EMPLOYEMENT_POSITIONS_READ
BVNR -
Data type: JGTBV-BVNRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHECK_DATE_IN -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
DATE_FROM_IN -
Data type: JGTBV_POS-WDAT1Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
DATE_TO_IN -
Data type: JGTBV_POS-WDAT2Default: 99993112
Optional: Yes
Call by Reference: No ( called with pass by value option)
ROLLE -
Data type: JGTBV-JPARVWDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
VSG_IN -
Data type: JGTBV-VSGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
VSG_MA_IN -
Data type: JGTBV-VSG_MADefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_EMPLOYEMENT_POSITIONS_READ
JGTBV_POS_OUT -
Data type: RJLG05Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
DATE_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INPUT_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_EMPLOYEMENT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_EMPLOYEMENT_POSITIONS_READ 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_bvnr | TYPE JGTBV-BVNR, " SPACE | |||
| lv_date_error | TYPE JGTBV, " | |||
| lt_jgtbv_pos_out | TYPE STANDARD TABLE OF RJLG05, " | |||
| lv_input_error | TYPE RJLG05, " | |||
| lv_check_date_in | TYPE RJLG05, " 'X' | |||
| lv_date_from_in | TYPE JGTBV_POS-WDAT1, " SY-DATUM | |||
| lv_no_employement | TYPE JGTBV_POS, " | |||
| lv_date_to_in | TYPE JGTBV_POS-WDAT2, " 99993112 | |||
| lv_rolle | TYPE JGTBV-JPARVW, " SPACE | |||
| lv_vsg_in | TYPE JGTBV-VSG, " SPACE | |||
| lv_vsg_ma_in | TYPE JGTBV-VSG_MA. " SPACE |
|   CALL FUNCTION 'ISP_EMPLOYEMENT_POSITIONS_READ' " |
| EXPORTING | ||
| BVNR | = lv_bvnr | |
| CHECK_DATE_IN | = lv_check_date_in | |
| DATE_FROM_IN | = lv_date_from_in | |
| DATE_TO_IN | = lv_date_to_in | |
| ROLLE | = lv_rolle | |
| VSG_IN | = lv_vsg_in | |
| VSG_MA_IN | = lv_vsg_ma_in | |
| TABLES | ||
| JGTBV_POS_OUT | = lt_jgtbv_pos_out | |
| EXCEPTIONS | ||
| DATE_ERROR = 1 | ||
| INPUT_ERROR = 2 | ||
| NO_EMPLOYEMENT = 3 | ||
| . " ISP_EMPLOYEMENT_POSITIONS_READ | ||
ABAP code using 7.40 inline data declarations to call FM ISP_EMPLOYEMENT_POSITIONS_READ
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 BVNR FROM JGTBV INTO @DATA(ld_bvnr). | ||||
| DATA(ld_bvnr) | = ' '. | |||
| DATA(ld_check_date_in) | = 'X'. | |||
| "SELECT single WDAT1 FROM JGTBV_POS INTO @DATA(ld_date_from_in). | ||||
| DATA(ld_date_from_in) | = SY-DATUM. | |||
| "SELECT single WDAT2 FROM JGTBV_POS INTO @DATA(ld_date_to_in). | ||||
| DATA(ld_date_to_in) | = 99993112. | |||
| "SELECT single JPARVW FROM JGTBV INTO @DATA(ld_rolle). | ||||
| DATA(ld_rolle) | = ' '. | |||
| "SELECT single VSG FROM JGTBV INTO @DATA(ld_vsg_in). | ||||
| DATA(ld_vsg_in) | = ' '. | |||
| "SELECT single VSG_MA FROM JGTBV INTO @DATA(ld_vsg_ma_in). | ||||
| DATA(ld_vsg_ma_in) | = ' '. | |||
Search for further information about these or an SAP related objects