SAP FM_BW_DELTA_QUEUE_WRITE_ISPS Function Module for









FM_BW_DELTA_QUEUE_WRITE_ISPS is a standard fm bw delta queue write isps 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 fm bw delta queue write isps FM, simply by entering the name FM_BW_DELTA_QUEUE_WRITE_ISPS into the relevant SAP transaction such as SE37 or SE38.

Function Group: FMBWISPS
Program Name: SAPLFMBWISPS
Main Program: SAPLFMBWISPS
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FM_BW_DELTA_QUEUE_WRITE_ISPS 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 'FM_BW_DELTA_QUEUE_WRITE_ISPS'"
EXPORTING
I_CHGTYPE = "Change Indicator for Table (I, U, M, D)
I_ORIGIN = "Data Source (Program Form Routine)
* I_DATA_COMPLETE = ' ' "

TABLES
* T_FMIOI = "
* T_FMBL = "
* T_FMBH = "
* T_FMAVCT = "
* T_FMRBT = "
* T_FMCI = "
* T_FMCIT = "
* T_FMHICI = "
* T_WHERE_FIELDS = "
* T_FMIFIIT = "
* T_FMIFIHD = "
* T_FMIA = "
* T_BPGE = "
* T_BPJA = "
* T_BPPE = "
* T_FMBDT = "
* T_FMBDP = "

EXCEPTIONS
WRITE_ERROR = 1
.



IMPORTING Parameters details for FM_BW_DELTA_QUEUE_WRITE_ISPS

I_CHGTYPE - Change Indicator for Table (I, U, M, D)

Data type: FBW4X-CHGTYPE
Optional: No
Call by Reference: Yes

I_ORIGIN - Data Source (Program Form Routine)

Data type: FBW4X-ORIGIN
Optional: No
Call by Reference: Yes

I_DATA_COMPLETE -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FM_BW_DELTA_QUEUE_WRITE_ISPS

T_FMIOI -

Data type: FMIOI
Optional: Yes
Call by Reference: Yes

T_FMBL -

Data type: FMBCS_S_FMBL_ALL
Optional: Yes
Call by Reference: Yes

T_FMBH -

Data type: FMBH
Optional: Yes
Call by Reference: Yes

T_FMAVCT -

Data type: FMAVCT
Optional: Yes
Call by Reference: Yes

T_FMRBT -

Data type: FMRBT
Optional: Yes
Call by Reference: Yes

T_FMCI -

Data type: FMCI
Optional: Yes
Call by Reference: Yes

T_FMCIT -

Data type: FMCIT
Optional: Yes
Call by Reference: Yes

T_FMHICI -

Data type: FMHICI
Optional: Yes
Call by Reference: Yes

T_WHERE_FIELDS -

Data type: LDB_REPORT_CALL
Optional: Yes
Call by Reference: Yes

T_FMIFIIT -

Data type: FMIFIIT
Optional: Yes
Call by Reference: Yes

T_FMIFIHD -

Data type: FMIFIHD
Optional: Yes
Call by Reference: Yes

T_FMIA -

Data type: FMIA
Optional: Yes
Call by Reference: Yes

T_BPGE -

Data type: BPGE
Optional: Yes
Call by Reference: Yes

T_BPJA -

Data type: BPJA
Optional: Yes
Call by Reference: Yes

T_BPPE -

Data type: BPPE
Optional: Yes
Call by Reference: Yes

T_FMBDT -

Data type: FMBDT
Optional: Yes
Call by Reference: Yes

T_FMBDP -

Data type: FMBDP
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

WRITE_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FM_BW_DELTA_QUEUE_WRITE_ISPS 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:
lt_t_fmioi  TYPE STANDARD TABLE OF FMIOI, "   
lv_i_chgtype  TYPE FBW4X-CHGTYPE, "   
lv_write_error  TYPE FBW4X, "   
lt_t_fmbl  TYPE STANDARD TABLE OF FMBCS_S_FMBL_ALL, "   
lt_t_fmbh  TYPE STANDARD TABLE OF FMBH, "   
lt_t_fmavct  TYPE STANDARD TABLE OF FMAVCT, "   
lt_t_fmrbt  TYPE STANDARD TABLE OF FMRBT, "   
lt_t_fmci  TYPE STANDARD TABLE OF FMCI, "   
lt_t_fmcit  TYPE STANDARD TABLE OF FMCIT, "   
lt_t_fmhici  TYPE STANDARD TABLE OF FMHICI, "   
lt_t_where_fields  TYPE STANDARD TABLE OF LDB_REPORT_CALL, "   
lv_i_origin  TYPE FBW4X-ORIGIN, "   
lt_t_fmifiit  TYPE STANDARD TABLE OF FMIFIIT, "   
lt_t_fmifihd  TYPE STANDARD TABLE OF FMIFIHD, "   
lv_i_data_complete  TYPE XFELD, "   SPACE
lt_t_fmia  TYPE STANDARD TABLE OF FMIA, "   
lt_t_bpge  TYPE STANDARD TABLE OF BPGE, "   
lt_t_bpja  TYPE STANDARD TABLE OF BPJA, "   
lt_t_bppe  TYPE STANDARD TABLE OF BPPE, "   
lt_t_fmbdt  TYPE STANDARD TABLE OF FMBDT, "   
lt_t_fmbdp  TYPE STANDARD TABLE OF FMBDP. "   

  CALL FUNCTION 'FM_BW_DELTA_QUEUE_WRITE_ISPS'  "
    EXPORTING
         I_CHGTYPE = lv_i_chgtype
         I_ORIGIN = lv_i_origin
         I_DATA_COMPLETE = lv_i_data_complete
    TABLES
         T_FMIOI = lt_t_fmioi
         T_FMBL = lt_t_fmbl
         T_FMBH = lt_t_fmbh
         T_FMAVCT = lt_t_fmavct
         T_FMRBT = lt_t_fmrbt
         T_FMCI = lt_t_fmci
         T_FMCIT = lt_t_fmcit
         T_FMHICI = lt_t_fmhici
         T_WHERE_FIELDS = lt_t_where_fields
         T_FMIFIIT = lt_t_fmifiit
         T_FMIFIHD = lt_t_fmifihd
         T_FMIA = lt_t_fmia
         T_BPGE = lt_t_bpge
         T_BPJA = lt_t_bpja
         T_BPPE = lt_t_bppe
         T_FMBDT = lt_t_fmbdt
         T_FMBDP = lt_t_fmbdp
    EXCEPTIONS
        WRITE_ERROR = 1
. " FM_BW_DELTA_QUEUE_WRITE_ISPS




ABAP code using 7.40 inline data declarations to call FM FM_BW_DELTA_QUEUE_WRITE_ISPS

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 CHGTYPE FROM FBW4X INTO @DATA(ld_i_chgtype).
 
 
 
 
 
 
 
 
 
 
"SELECT single ORIGIN FROM FBW4X INTO @DATA(ld_i_origin).
 
 
 
DATA(ld_i_data_complete) = ' '.
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!