SAP FSKB_SUBSCREEN_ITEMS_IMP_PBO Function Module for









FSKB_SUBSCREEN_ITEMS_IMP_PBO is a standard fskb subscreen items imp pbo 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 fskb subscreen items imp pbo FM, simply by entering the name FSKB_SUBSCREEN_ITEMS_IMP_PBO into the relevant SAP transaction such as SE37 or SE38.

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



Function FSKB_SUBSCREEN_ITEMS_IMP_PBO 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 'FSKB_SUBSCREEN_ITEMS_IMP_PBO'"
EXPORTING
* I_BSEG_KK = "
* I_APPEND = "
* I_EXISTING_DOC = "
* I_ACTIVETAB = "
* I_KOMU = "Single-Character Indicator
* I_BUSCS = "
I_SCVTEXT = "Program Variant Short Text
* I_SCVARIANT = "Screen variant
* I_REFRESH = ' ' "Single-Character Indicator
* I_STATUS = '1' "
* I_LSTML = "Country for tax return
* I_MAIN_SUPPRESS_DIALOG = ' ' "
* I_DOCUMENT_EXISTS = "

TABLES
T_XBKPF = "
T_XBSEG = "
* T_ERROR = "
* T_ACSCR = "Communication Structure for Field Modification SAPLFDCB
.



IMPORTING Parameters details for FSKB_SUBSCREEN_ITEMS_IMP_PBO

I_BSEG_KK -

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

I_APPEND -

Data type: XFELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_EXISTING_DOC -

Data type: EXISTING_DOC
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ACTIVETAB -

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_KOMU - Single-Character Indicator

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

I_BUSCS -

Data type: RF05A-BUSCS
Optional: Yes
Call by Reference: Yes

I_SCVTEXT - Program Variant Short Text

Data type: SHDSVTXCI-SCVTEXT
Optional: No
Call by Reference: Yes

I_SCVARIANT - Screen variant

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

I_REFRESH - Single-Character Indicator

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

I_STATUS -

Data type: CHAR1
Default: '1'
Optional: Yes
Call by Reference: Yes

I_LSTML - Country for tax return

Data type: T007A-LSTML
Optional: Yes
Call by Reference: Yes

I_MAIN_SUPPRESS_DIALOG -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DOCUMENT_EXISTS -

Data type: CHAR1
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FSKB_SUBSCREEN_ITEMS_IMP_PBO

T_XBKPF -

Data type: BKPF
Optional: No
Call by Reference: No ( called with pass by value option)

T_XBSEG -

Data type: BSEGS
Optional: No
Call by Reference: No ( called with pass by value option)

T_ERROR -

Data type: ACERRLOG
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_ACSCR - Communication Structure for Field Modification SAPLFDCB

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

Copy and paste ABAP code example for FSKB_SUBSCREEN_ITEMS_IMP_PBO 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_xbkpf  TYPE STANDARD TABLE OF BKPF, "   
lv_i_bseg_kk  TYPE BSEG, "   
lv_i_append  TYPE XFELD, "   
lv_i_existing_doc  TYPE EXISTING_DOC, "   
lv_i_activetab  TYPE C, "   
lv_i_komu  TYPE CHAR1, "   
lv_i_buscs  TYPE RF05A-BUSCS, "   
lt_t_xbseg  TYPE STANDARD TABLE OF BSEGS, "   
lt_t_error  TYPE STANDARD TABLE OF ACERRLOG, "   
lv_i_scvtext  TYPE SHDSVTXCI-SCVTEXT, "   
lt_t_acscr  TYPE STANDARD TABLE OF ACSCR, "   
lv_i_scvariant  TYPE SCVARIANT, "   
lv_i_refresh  TYPE CHAR1, "   SPACE
lv_i_status  TYPE CHAR1, "   '1'
lv_i_lstml  TYPE T007A-LSTML, "   
lv_i_main_suppress_dialog  TYPE XFELD, "   SPACE
lv_i_document_exists  TYPE CHAR1. "   

  CALL FUNCTION 'FSKB_SUBSCREEN_ITEMS_IMP_PBO'  "
    EXPORTING
         I_BSEG_KK = lv_i_bseg_kk
         I_APPEND = lv_i_append
         I_EXISTING_DOC = lv_i_existing_doc
         I_ACTIVETAB = lv_i_activetab
         I_KOMU = lv_i_komu
         I_BUSCS = lv_i_buscs
         I_SCVTEXT = lv_i_scvtext
         I_SCVARIANT = lv_i_scvariant
         I_REFRESH = lv_i_refresh
         I_STATUS = lv_i_status
         I_LSTML = lv_i_lstml
         I_MAIN_SUPPRESS_DIALOG = lv_i_main_suppress_dialog
         I_DOCUMENT_EXISTS = lv_i_document_exists
    TABLES
         T_XBKPF = lt_t_xbkpf
         T_XBSEG = lt_t_xbseg
         T_ERROR = lt_t_error
         T_ACSCR = lt_t_acscr
. " FSKB_SUBSCREEN_ITEMS_IMP_PBO




ABAP code using 7.40 inline data declarations to call FM FSKB_SUBSCREEN_ITEMS_IMP_PBO

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 BUSCS FROM RF05A INTO @DATA(ld_i_buscs).
 
 
 
"SELECT single SCVTEXT FROM SHDSVTXCI INTO @DATA(ld_i_scvtext).
 
 
 
DATA(ld_i_refresh) = ' '.
 
DATA(ld_i_status) = '1'.
 
"SELECT single LSTML FROM T007A INTO @DATA(ld_i_lstml).
 
DATA(ld_i_main_suppress_dialog) = ' '.
 
 


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!