SAP ISB_FCC_TR_DERI_DEV_TOP Function Module for IS-B: TOP-OF-PAGE Ausgaben für Devisen in der MK-Steuerung
ISB_FCC_TR_DERI_DEV_TOP is a standard isb fcc tr deri dev top SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-B: TOP-OF-PAGE Ausgaben für Devisen in der MK-Steuerung 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 isb fcc tr deri dev top FM, simply by entering the name ISB_FCC_TR_DERI_DEV_TOP into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBM5
Program Name: SAPLJBM5
Main Program: SAPLJBM5
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_FCC_TR_DERI_DEV_TOP 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 'ISB_FCC_TR_DERI_DEV_TOP'"IS-B: TOP-OF-PAGE Ausgaben für Devisen in der MK-Steuerung.
EXPORTING
IP_SUETYP = "Übernahmetyp
CHANGING
CP_HEADER = "TOP-OF-PAGE Info
CP_FIELDS_STATUS = "Ausgabestatus der Stamm, Kopf u. Pos. F.
TABLES
CTP_ACTION = "'Ausführbare' Zeilen
CTP_SELECTION = "Änderbare Seletktionen
CTP_APPL_FIELDS = "Komponentenspezifische Felder
IMPORTING Parameters details for ISB_FCC_TR_DERI_DEV_TOP
IP_SUETYP - Übernahmetyp
Data type: JBTMK_SUETYPOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISB_FCC_TR_DERI_DEV_TOP
CP_HEADER - TOP-OF-PAGE Info
Data type: SLIS_T_LISTHEADEROptional: No
Call by Reference: No ( called with pass by value option)
CP_FIELDS_STATUS - Ausgabestatus der Stamm, Kopf u. Pos. F.
Data type: JBTMK_FIELDS_STATUSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_FCC_TR_DERI_DEV_TOP
CTP_ACTION - 'Ausführbare' Zeilen
Data type: JBTMK_ACTION_LINESOptional: No
Call by Reference: No ( called with pass by value option)
CTP_SELECTION - Änderbare Seletktionen
Data type: JBTMK_SELECTION_LINESOptional: No
Call by Reference: No ( called with pass by value option)
CTP_APPL_FIELDS - Komponentenspezifische Felder
Data type: JBTMK_APPL_FIELDSOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_FCC_TR_DERI_DEV_TOP 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_cp_header | TYPE SLIS_T_LISTHEADER, " | |||
| lv_ip_suetyp | TYPE JBTMK_SUETYP, " | |||
| lt_ctp_action | TYPE STANDARD TABLE OF JBTMK_ACTION_LINES, " | |||
| lt_ctp_selection | TYPE STANDARD TABLE OF JBTMK_SELECTION_LINES, " | |||
| lv_cp_fields_status | TYPE JBTMK_FIELDS_STATUS, " | |||
| lt_ctp_appl_fields | TYPE STANDARD TABLE OF JBTMK_APPL_FIELDS. " |
|   CALL FUNCTION 'ISB_FCC_TR_DERI_DEV_TOP' "IS-B: TOP-OF-PAGE Ausgaben für Devisen in der MK-Steuerung |
| EXPORTING | ||
| IP_SUETYP | = lv_ip_suetyp | |
| CHANGING | ||
| CP_HEADER | = lv_cp_header | |
| CP_FIELDS_STATUS | = lv_cp_fields_status | |
| TABLES | ||
| CTP_ACTION | = lt_ctp_action | |
| CTP_SELECTION | = lt_ctp_selection | |
| CTP_APPL_FIELDS | = lt_ctp_appl_fields | |
| . " ISB_FCC_TR_DERI_DEV_TOP | ||
ABAP code using 7.40 inline data declarations to call FM ISB_FCC_TR_DERI_DEV_TOP
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