SAP BAPI_DSOURCE_BULK_SUPPORTED Function Module for Determine detailed information about a data source (RSDS)
BAPI_DSOURCE_BULK_SUPPORTED is a standard bapi dsource bulk supported SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determine detailed information about a data source (RSDS) 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 bapi dsource bulk supported FM, simply by entering the name BAPI_DSOURCE_BULK_SUPPORTED into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDS_BAPI
Program Name: SAPLRSDS_BAPI
Main Program: SAPLRSDS_BAPI
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_DSOURCE_BULK_SUPPORTED 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 'BAPI_DSOURCE_BULK_SUPPORTED'"Determine detailed information about a data source (RSDS).
EXPORTING
DATASOURCE = "DataSource
SOURCESYSTEM = "Source System
DSHEADERATTR = "DataSource (RSDS) - Header Attributes
DSHIERATTR = "DataSource (RSDS) - Hierarchy Attributes
CUSTOMERDEFINED = "Indicator for customer-specific object
IMPORTING
BULK_IS_SUPPORTED = "BULK supports X =
TABLES
* DATASOURCEFIELDS = "DataSource Fields
IMPORTING Parameters details for BAPI_DSOURCE_BULK_SUPPORTED
DATASOURCE - DataSource
Data type: BAPIDSHEADER-DATASOURCEOptional: No
Call by Reference: No ( called with pass by value option)
SOURCESYSTEM - Source System
Data type: BAPIDSHEADER-SOURCESYSTEMOptional: No
Call by Reference: No ( called with pass by value option)
DSHEADERATTR - DataSource (RSDS) - Header Attributes
Data type: BAPIDSHEADERATTROptional: No
Call by Reference: No ( called with pass by value option)
DSHIERATTR - DataSource (RSDS) - Hierarchy Attributes
Data type: BAPIDSHIEROptional: No
Call by Reference: No ( called with pass by value option)
CUSTOMERDEFINED - Indicator for customer-specific object
Data type: BAPI6104-CUSTOMERDEFINEDOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BAPI_DSOURCE_BULK_SUPPORTED
BULK_IS_SUPPORTED - BULK supports X =
Data type: BAPI_BUPA_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_DSOURCE_BULK_SUPPORTED
DATASOURCEFIELDS - DataSource Fields
Data type: BAPIDSFIELDOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BAPI_DSOURCE_BULK_SUPPORTED 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_datasource | TYPE BAPIDSHEADER-DATASOURCE, " | |||
| lt_datasourcefields | TYPE STANDARD TABLE OF BAPIDSFIELD, " | |||
| lv_bulk_is_supported | TYPE BAPI_BUPA_FLAG, " | |||
| lv_sourcesystem | TYPE BAPIDSHEADER-SOURCESYSTEM, " | |||
| lv_dsheaderattr | TYPE BAPIDSHEADERATTR, " | |||
| lv_dshierattr | TYPE BAPIDSHIER, " | |||
| lv_customerdefined | TYPE BAPI6104-CUSTOMERDEFINED. " |
|   CALL FUNCTION 'BAPI_DSOURCE_BULK_SUPPORTED' "Determine detailed information about a data source (RSDS) |
| EXPORTING | ||
| DATASOURCE | = lv_datasource | |
| SOURCESYSTEM | = lv_sourcesystem | |
| DSHEADERATTR | = lv_dsheaderattr | |
| DSHIERATTR | = lv_dshierattr | |
| CUSTOMERDEFINED | = lv_customerdefined | |
| IMPORTING | ||
| BULK_IS_SUPPORTED | = lv_bulk_is_supported | |
| TABLES | ||
| DATASOURCEFIELDS | = lt_datasourcefields | |
| . " BAPI_DSOURCE_BULK_SUPPORTED | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_DSOURCE_BULK_SUPPORTED
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 DATASOURCE FROM BAPIDSHEADER INTO @DATA(ld_datasource). | ||||
| "SELECT single SOURCESYSTEM FROM BAPIDSHEADER INTO @DATA(ld_sourcesystem). | ||||
| "SELECT single CUSTOMERDEFINED FROM BAPI6104 INTO @DATA(ld_customerdefined). | ||||
Search for further information about these or an SAP related objects