SAP Function Modules

CJWB_DELETE_ELEMENTS SAP Function module







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

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


Pattern for FM CJWB_DELETE_ELEMENTS - CJWB DELETE ELEMENTS





CALL FUNCTION 'CJWB_DELETE_ELEMENTS' "
  EXPORTING
    check_only =                " rcj_markl-mark
*   dele_imp =                  " rcwbs-sel01
*   flg_popup =                 " rcwbs-sel01
*   im_flg_extern = 'X'         " c
*   no_check = SPACE            " rcj_markl-mark  No check
  TABLES
    dialtab =                   " rcj_markl     Display Table
*   act_del =                   " rcj_actind    Index structure - Activities
  EXCEPTIONS
    NOT_POSSIBLE = 1            "
    .  "  CJWB_DELETE_ELEMENTS

ABAP code example for Function Module CJWB_DELETE_ELEMENTS





The ABAP code below is a full code listing to execute function module CJWB_DELETE_ELEMENTS 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:
it_dialtab  TYPE STANDARD TABLE OF RCJ_MARKL,"TABLES PARAM
wa_dialtab  LIKE LINE OF it_dialtab ,
it_act_del  TYPE STANDARD TABLE OF RCJ_ACTIND,"TABLES PARAM
wa_act_del  LIKE LINE OF it_act_del .


DATA(ld_check_only) = some text here

DATA(ld_dele_imp) = some text here

DATA(ld_flg_popup) = some text here
DATA(ld_im_flg_extern) = 'Check type of data required'.

DATA(ld_no_check) = some text here

"populate fields of struture and append to itab
append wa_dialtab to it_dialtab.

"populate fields of struture and append to itab
append wa_act_del to it_act_del. . CALL FUNCTION 'CJWB_DELETE_ELEMENTS' EXPORTING check_only = ld_check_only * dele_imp = ld_dele_imp * flg_popup = ld_flg_popup * im_flg_extern = ld_im_flg_extern * no_check = ld_no_check TABLES dialtab = it_dialtab * act_del = it_act_del EXCEPTIONS NOT_POSSIBLE = 1 . " CJWB_DELETE_ELEMENTS
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here 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_check_only  TYPE RCJ_MARKL-MARK ,
it_dialtab  TYPE STANDARD TABLE OF RCJ_MARKL ,
wa_dialtab  LIKE LINE OF it_dialtab,
ld_dele_imp  TYPE RCWBS-SEL01 ,
it_act_del  TYPE STANDARD TABLE OF RCJ_ACTIND ,
wa_act_del  LIKE LINE OF it_act_del,
ld_flg_popup  TYPE RCWBS-SEL01 ,
ld_im_flg_extern  TYPE C ,
ld_no_check  TYPE RCJ_MARKL-MARK .


ld_check_only = some text here

"populate fields of struture and append to itab
append wa_dialtab to it_dialtab.

ld_dele_imp = some text here

"populate fields of struture and append to itab
append wa_act_del to it_act_del.

ld_flg_popup = some text here
ld_im_flg_extern = 'Check type of data required'.

ld_no_check = some text here

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