SAP REBD_CB_OBJASS_CHDO_TKEY Function Module for
REBD_CB_OBJASS_CHDO_TKEY is a standard rebd cb objass chdo tkey 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 rebd cb objass chdo tkey FM, simply by entering the name REBD_CB_OBJASS_CHDO_TKEY into the relevant SAP transaction such as SE37 or SE38.
Function Group: REBD_CB_OBJASS_CHDO
Program Name: SAPLREBD_CB_OBJASS_CHDO
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REBD_CB_OBJASS_CHDO_TKEY 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 'REBD_CB_OBJASS_CHDO_TKEY'".
EXPORTING
I_OBJECTCLAS = "
I_TABNAME = "
I_TABKEY = "
* I_TABKEY_LONG = "
I_CREATEDATE = "
I_CREATETIME = "
IMPORTING
E_NO_TABLEKEYTEXT = "
E_TABKEYTEXT = "
E_NO_TABLEKEYGROUP = "
E_TABKEYGROUP = "
E_TABKEYGROUP_LONG = "
E_TABKEYGROUPTEXT = "
IMPORTING Parameters details for REBD_CB_OBJASS_CHDO_TKEY
I_OBJECTCLAS -
Data type: CDOBJECTCLOptional: No
Call by Reference: Yes
I_TABNAME -
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_TABKEY -
Data type: CDTABKEYOptional: No
Call by Reference: Yes
I_TABKEY_LONG -
Data type: CDTABKEYLOOptional: Yes
Call by Reference: Yes
I_CREATEDATE -
Data type: CDDATUMOptional: No
Call by Reference: Yes
I_CREATETIME -
Data type: CDUZEITOptional: No
Call by Reference: Yes
EXPORTING Parameters details for REBD_CB_OBJASS_CHDO_TKEY
E_NO_TABLEKEYTEXT -
Data type: BANK_DTE_CD_NOTABLEKEYTEXTOptional: No
Call by Reference: Yes
E_TABKEYTEXT -
Data type: BANK_DTE_CD_TABLEKEYTEXTOptional: No
Call by Reference: Yes
E_NO_TABLEKEYGROUP -
Data type: BANK_DTE_CD_NOTABLEKEYGROUPOptional: No
Call by Reference: Yes
E_TABKEYGROUP -
Data type: CDTABKEYOptional: No
Call by Reference: Yes
E_TABKEYGROUP_LONG -
Data type: CDTABKEYLOOptional: No
Call by Reference: Yes
E_TABKEYGROUPTEXT -
Data type: BANK_DTE_CD_TABLEKEYTEXTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for REBD_CB_OBJASS_CHDO_TKEY 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_i_objectclas | TYPE CDOBJECTCL, " | |||
| lv_e_no_tablekeytext | TYPE BANK_DTE_CD_NOTABLEKEYTEXT, " | |||
| lv_i_tabname | TYPE TABNAME, " | |||
| lv_e_tabkeytext | TYPE BANK_DTE_CD_TABLEKEYTEXT, " | |||
| lv_i_tabkey | TYPE CDTABKEY, " | |||
| lv_e_no_tablekeygroup | TYPE BANK_DTE_CD_NOTABLEKEYGROUP, " | |||
| lv_e_tabkeygroup | TYPE CDTABKEY, " | |||
| lv_i_tabkey_long | TYPE CDTABKEYLO, " | |||
| lv_i_createdate | TYPE CDDATUM, " | |||
| lv_e_tabkeygroup_long | TYPE CDTABKEYLO, " | |||
| lv_i_createtime | TYPE CDUZEIT, " | |||
| lv_e_tabkeygrouptext | TYPE BANK_DTE_CD_TABLEKEYTEXT. " |
|   CALL FUNCTION 'REBD_CB_OBJASS_CHDO_TKEY' " |
| EXPORTING | ||
| I_OBJECTCLAS | = lv_i_objectclas | |
| I_TABNAME | = lv_i_tabname | |
| I_TABKEY | = lv_i_tabkey | |
| I_TABKEY_LONG | = lv_i_tabkey_long | |
| I_CREATEDATE | = lv_i_createdate | |
| I_CREATETIME | = lv_i_createtime | |
| IMPORTING | ||
| E_NO_TABLEKEYTEXT | = lv_e_no_tablekeytext | |
| E_TABKEYTEXT | = lv_e_tabkeytext | |
| E_NO_TABLEKEYGROUP | = lv_e_no_tablekeygroup | |
| E_TABKEYGROUP | = lv_e_tabkeygroup | |
| E_TABKEYGROUP_LONG | = lv_e_tabkeygroup_long | |
| E_TABKEYGROUPTEXT | = lv_e_tabkeygrouptext | |
| . " REBD_CB_OBJASS_CHDO_TKEY | ||
ABAP code using 7.40 inline data declarations to call FM REBD_CB_OBJASS_CHDO_TKEY
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