SAP Function Modules

CEIS_GET_CLNODE_SEARCH_PARAMS SAP Function module







CEIS_GET_CLNODE_SEARCH_PARAMS 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 CEIS_GET_CLNODE_SEARCH_PARAMS into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: CEIS
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM CEIS_GET_CLNODE_SEARCH_PARAMS - CEIS GET CLNODE SEARCH PARAMS





CALL FUNCTION 'CEIS_GET_CLNODE_SEARCH_PARAMS' "
  EXPORTING
    classtype =                 " klah-klart    Class Type
    classname =                 " klah-class    Class Number
    objecttype =                " tclao-obtab   Name of Database Table for Object
  CHANGING
    accept_unassigned_chars =   " cldar-dar_unb  Display objs without assigned values for characteristics
    .  "  CEIS_GET_CLNODE_SEARCH_PARAMS

ABAP code example for Function Module CEIS_GET_CLNODE_SEARCH_PARAMS





The ABAP code below is a full code listing to execute function module CEIS_GET_CLNODE_SEARCH_PARAMS 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).



DATA(ld_accept_unassigned_chars) = some text here

SELECT single KLART
FROM KLAH
INTO @DATA(ld_classtype).


SELECT single CLASS
FROM KLAH
INTO @DATA(ld_classname).


SELECT single OBTAB
FROM TCLAO
INTO @DATA(ld_objecttype).
. CALL FUNCTION 'CEIS_GET_CLNODE_SEARCH_PARAMS' EXPORTING classtype = ld_classtype classname = ld_classname objecttype = ld_objecttype CHANGING accept_unassigned_chars = ld_accept_unassigned_chars . " CEIS_GET_CLNODE_SEARCH_PARAMS
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_accept_unassigned_chars  TYPE CLDAR-DAR_UNB ,
ld_classtype  TYPE KLAH-KLART ,
ld_classname  TYPE KLAH-CLASS ,
ld_objecttype  TYPE TCLAO-OBTAB .


ld_accept_unassigned_chars = some text here

SELECT single KLART
FROM KLAH
INTO ld_classtype.


SELECT single CLASS
FROM KLAH
INTO ld_classname.


SELECT single OBTAB
FROM TCLAO
INTO ld_objecttype.

Contribute (Add Comments)

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 CEIS_GET_CLNODE_SEARCH_PARAMS or its description.