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

Function ISP_LOG_APPL_FOR_FIBU_GET 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_LOG_APPL_FOR_FIBU_GET'".
EXPORTING
* APPKL = 'J' "
* EVENT = 'DEB001' "
BUKRS = "
IMPORTING
ANWEN = "
RFCTYPE = "
LOGSYS = "
MAPN = "
RFNAME = "
EXCEPTIONS
NO_APPKL = 1 NO_TJU01_FOUND = 2 NO_TJU03_FOUND = 3 NO_RFCDES_FOUND = 4
IMPORTING Parameters details for ISP_LOG_APPL_FOR_FIBU_GET
APPKL -
Data type: TJU01-APPKLDefault: 'J'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EVENT -
Data type: TJU01-EVENTDefault: 'DEB001'
Optional: Yes
Call by Reference: No ( called with pass by value option)
BUKRS -
Data type: T001-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_LOG_APPL_FOR_FIBU_GET
ANWEN -
Data type: TJU07-ANWENOptional: No
Call by Reference: No ( called with pass by value option)
RFCTYPE -
Data type: RFCDES-RFCTYPEOptional: No
Call by Reference: No ( called with pass by value option)
LOGSYS -
Data type: TJU03-LOGSYSOptional: No
Call by Reference: No ( called with pass by value option)
MAPN -
Data type: TJU01-MAPNOptional: No
Call by Reference: No ( called with pass by value option)
RFNAME -
Data type: TJU01-RFNAMEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_APPKL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_TJU01_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_TJU03_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_RFCDES_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_LOG_APPL_FOR_FIBU_GET 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_anwen | TYPE TJU07-ANWEN, " | |||
| lv_appkl | TYPE TJU01-APPKL, " 'J' | |||
| lv_no_appkl | TYPE TJU01, " | |||
| lv_event | TYPE TJU01-EVENT, " 'DEB001' | |||
| lv_rfctype | TYPE RFCDES-RFCTYPE, " | |||
| lv_no_tju01_found | TYPE RFCDES, " | |||
| lv_bukrs | TYPE T001-BUKRS, " | |||
| lv_logsys | TYPE TJU03-LOGSYS, " | |||
| lv_no_tju03_found | TYPE TJU03, " | |||
| lv_mapn | TYPE TJU01-MAPN, " | |||
| lv_no_rfcdes_found | TYPE TJU01, " | |||
| lv_rfname | TYPE TJU01-RFNAME. " |
|   CALL FUNCTION 'ISP_LOG_APPL_FOR_FIBU_GET' " |
| EXPORTING | ||
| APPKL | = lv_appkl | |
| EVENT | = lv_event | |
| BUKRS | = lv_bukrs | |
| IMPORTING | ||
| ANWEN | = lv_anwen | |
| RFCTYPE | = lv_rfctype | |
| LOGSYS | = lv_logsys | |
| MAPN | = lv_mapn | |
| RFNAME | = lv_rfname | |
| EXCEPTIONS | ||
| NO_APPKL = 1 | ||
| NO_TJU01_FOUND = 2 | ||
| NO_TJU03_FOUND = 3 | ||
| NO_RFCDES_FOUND = 4 | ||
| . " ISP_LOG_APPL_FOR_FIBU_GET | ||
ABAP code using 7.40 inline data declarations to call FM ISP_LOG_APPL_FOR_FIBU_GET
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 ANWEN FROM TJU07 INTO @DATA(ld_anwen). | ||||
| "SELECT single APPKL FROM TJU01 INTO @DATA(ld_appkl). | ||||
| DATA(ld_appkl) | = 'J'. | |||
| "SELECT single EVENT FROM TJU01 INTO @DATA(ld_event). | ||||
| DATA(ld_event) | = 'DEB001'. | |||
| "SELECT single RFCTYPE FROM RFCDES INTO @DATA(ld_rfctype). | ||||
| "SELECT single BUKRS FROM T001 INTO @DATA(ld_bukrs). | ||||
| "SELECT single LOGSYS FROM TJU03 INTO @DATA(ld_logsys). | ||||
| "SELECT single MAPN FROM TJU01 INTO @DATA(ld_mapn). | ||||
| "SELECT single RFNAME FROM TJU01 INTO @DATA(ld_rfname). | ||||
Search for further information about these or an SAP related objects