CUKD_XREF_OBJ_CHARC is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CUKD_XREF_OBJ_CHARC into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CUKD
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CUKD_XREF_OBJ_CHARC' "
EXPORTING
from_date = " cukb-datuv Request with lower time limit
objtype = " cuxref-objtyp Object type such as 'KLAH' for class
objkey = " cuxref-objkey Object key such as value of CLINT for class
atinn = " cuxref-atinn Internal Characteristic Number
to_date = " cukb-datuv Request with upper time limit
* dialog = SPACE " rcurs-checked Dialog?
* TABLES
* dependencies = " cukb Table of dependencies (CUKB)
EXCEPTIONS
NO_DEP_FOUND = 1 " No hits for search request
. " CUKD_XREF_OBJ_CHARC
The ABAP code below is a full code listing to execute function module CUKD_XREF_OBJ_CHARC including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_dependencies | TYPE STANDARD TABLE OF CUKB,"TABLES PARAM |
| wa_dependencies | LIKE LINE OF it_dependencies . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_from_date | TYPE CUKB-DATUV , |
| it_dependencies | TYPE STANDARD TABLE OF CUKB , |
| wa_dependencies | LIKE LINE OF it_dependencies, |
| ld_objtype | TYPE CUXREF-OBJTYP , |
| ld_objkey | TYPE CUXREF-OBJKEY , |
| ld_atinn | TYPE CUXREF-ATINN , |
| ld_to_date | TYPE CUKB-DATUV , |
| ld_dialog | TYPE RCURS-CHECKED . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CUKD_XREF_OBJ_CHARC or its description.