SAP MKK_BUPA_WHEREUSED_CCARD Function Module for
MKK_BUPA_WHEREUSED_CCARD is a standard mkk bupa whereused ccard 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 mkk bupa whereused ccard FM, simply by entering the name MKK_BUPA_WHEREUSED_CCARD into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKG0
Program Name: SAPLFKG0
Main Program: SAPLFKG0
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MKK_BUPA_WHEREUSED_CCARD 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 'MKK_BUPA_WHEREUSED_CCARD'".
EXPORTING
IV_OBJECTID = "Object ID
IV_RELATKEY = "Related Node
IV_TIME = "Time Interval
IV_USER = "User
TABLES
ET_NODE_TABLE = "Node
ET_ITEM_TABLE = "Pages
ET_FCODE_TABLE = "Function Codes
ET_ITEM_DATA = "
IMPORTING Parameters details for MKK_BUPA_WHEREUSED_CCARD
IV_OBJECTID - Object ID
Data type: BU_OBJECTIDOptional: No
Call by Reference: No ( called with pass by value option)
IV_RELATKEY - Related Node
Data type: TBZ5-RELATKEYOptional: No
Call by Reference: No ( called with pass by value option)
IV_TIME - Time Interval
Data type: CHAR3Optional: No
Call by Reference: No ( called with pass by value option)
IV_USER - User
Data type: SY-UNAMEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MKK_BUPA_WHEREUSED_CCARD
ET_NODE_TABLE - Node
Data type: TREEV_NODEOptional: No
Call by Reference: No ( called with pass by value option)
ET_ITEM_TABLE - Pages
Data type: BDTTREEITEMOptional: No
Call by Reference: No ( called with pass by value option)
ET_FCODE_TABLE - Function Codes
Data type: BUSFCODEOptional: No
Call by Reference: No ( called with pass by value option)
ET_ITEM_DATA -
Data type: BUS_ITEM_DATAOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MKK_BUPA_WHEREUSED_CCARD 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_iv_objectid | TYPE BU_OBJECTID, " | |||
| lt_et_node_table | TYPE STANDARD TABLE OF TREEV_NODE, " | |||
| lv_iv_relatkey | TYPE TBZ5-RELATKEY, " | |||
| lt_et_item_table | TYPE STANDARD TABLE OF BDTTREEITEM, " | |||
| lv_iv_time | TYPE CHAR3, " | |||
| lt_et_fcode_table | TYPE STANDARD TABLE OF BUSFCODE, " | |||
| lv_iv_user | TYPE SY-UNAME, " | |||
| lt_et_item_data | TYPE STANDARD TABLE OF BUS_ITEM_DATA. " |
|   CALL FUNCTION 'MKK_BUPA_WHEREUSED_CCARD' " |
| EXPORTING | ||
| IV_OBJECTID | = lv_iv_objectid | |
| IV_RELATKEY | = lv_iv_relatkey | |
| IV_TIME | = lv_iv_time | |
| IV_USER | = lv_iv_user | |
| TABLES | ||
| ET_NODE_TABLE | = lt_et_node_table | |
| ET_ITEM_TABLE | = lt_et_item_table | |
| ET_FCODE_TABLE | = lt_et_fcode_table | |
| ET_ITEM_DATA | = lt_et_item_data | |
| . " MKK_BUPA_WHEREUSED_CCARD | ||
ABAP code using 7.40 inline data declarations to call FM MKK_BUPA_WHEREUSED_CCARD
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 RELATKEY FROM TBZ5 INTO @DATA(ld_iv_relatkey). | ||||
| "SELECT single UNAME FROM SY INTO @DATA(ld_iv_user). | ||||
Search for further information about these or an SAP related objects