SAP BSFC_KEY_GET Function Module for Get Key Fields for Table
BSFC_KEY_GET is a standard bsfc key get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Key Fields for Table 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 bsfc key get FM, simply by entering the name BSFC_KEY_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: BSFC
Program Name: SAPLBSFC
Main Program: SAPLBSFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BSFC_KEY_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 'BSFC_KEY_GET'"Get Key Fields for Table.
TABLES
* T_TBSFC000 = "Facts Capture: Question Sequence
* T_L_TABKEY001T = "Structure for Table Name and Key
* T_L_TABKEY002 = "Structure for Table Name and Key
* T_L_TABKEY002T = "Structure for Table Name and Key
* T_TBSFC000T = "Facts Capture: Question Sequence Text
* T_TBSFC001 = "Facts Capture: Question
* T_TBSFC001T = "Facts Capture: Question Text
* T_TBSFC002 = "
* T_TBSFC002T = "Facts Capture: Answer Text
* T_L_TABKEY000 = "Structure for Table Name and Key
* T_L_TABKEY000T = "Structure for Table Name and Key
* T_L_TABKEY001 = "Structure for Table Name and Key
TABLES Parameters details for BSFC_KEY_GET
T_TBSFC000 - Facts Capture: Question Sequence
Data type: TBSFC000Optional: Yes
Call by Reference: Yes
T_L_TABKEY001T - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
T_L_TABKEY002 - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
T_L_TABKEY002T - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
T_TBSFC000T - Facts Capture: Question Sequence Text
Data type: TBSFC000TOptional: Yes
Call by Reference: Yes
T_TBSFC001 - Facts Capture: Question
Data type: TBSFC001Optional: Yes
Call by Reference: Yes
T_TBSFC001T - Facts Capture: Question Text
Data type: TBSFC001TOptional: Yes
Call by Reference: Yes
T_TBSFC002 -
Data type: TBSFC002Optional: Yes
Call by Reference: Yes
T_TBSFC002T - Facts Capture: Answer Text
Data type: TBSFC002TOptional: Yes
Call by Reference: Yes
T_L_TABKEY000 - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
T_L_TABKEY000T - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
T_L_TABKEY001 - Structure for Table Name and Key
Data type: ICL_BSFC_TABKEYOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for BSFC_KEY_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: | ||||
| lt_t_tbsfc000 | TYPE STANDARD TABLE OF TBSFC000, " | |||
| lt_t_l_tabkey001t | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY, " | |||
| lt_t_l_tabkey002 | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY, " | |||
| lt_t_l_tabkey002t | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY, " | |||
| lt_t_tbsfc000t | TYPE STANDARD TABLE OF TBSFC000T, " | |||
| lt_t_tbsfc001 | TYPE STANDARD TABLE OF TBSFC001, " | |||
| lt_t_tbsfc001t | TYPE STANDARD TABLE OF TBSFC001T, " | |||
| lt_t_tbsfc002 | TYPE STANDARD TABLE OF TBSFC002, " | |||
| lt_t_tbsfc002t | TYPE STANDARD TABLE OF TBSFC002T, " | |||
| lt_t_l_tabkey000 | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY, " | |||
| lt_t_l_tabkey000t | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY, " | |||
| lt_t_l_tabkey001 | TYPE STANDARD TABLE OF ICL_BSFC_TABKEY. " |
|   CALL FUNCTION 'BSFC_KEY_GET' "Get Key Fields for Table |
| TABLES | ||
| T_TBSFC000 | = lt_t_tbsfc000 | |
| T_L_TABKEY001T | = lt_t_l_tabkey001t | |
| T_L_TABKEY002 | = lt_t_l_tabkey002 | |
| T_L_TABKEY002T | = lt_t_l_tabkey002t | |
| T_TBSFC000T | = lt_t_tbsfc000t | |
| T_TBSFC001 | = lt_t_tbsfc001 | |
| T_TBSFC001T | = lt_t_tbsfc001t | |
| T_TBSFC002 | = lt_t_tbsfc002 | |
| T_TBSFC002T | = lt_t_tbsfc002t | |
| T_L_TABKEY000 | = lt_t_l_tabkey000 | |
| T_L_TABKEY000T | = lt_t_l_tabkey000t | |
| T_L_TABKEY001 | = lt_t_l_tabkey001 | |
| . " BSFC_KEY_GET | ||
ABAP code using 7.40 inline data declarations to call FM BSFC_KEY_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.Search for further information about these or an SAP related objects