SAP Function Modules

CAD_PARTS_DELETE SAP Function module







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

Associated Function Group: CADR
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM CAD_PARTS_DELETE - CAD PARTS DELETE





CALL FUNCTION 'CAD_PARTS_DELETE' "
  EXPORTING
    catalog_guid =              " cad_parts-catalog_guid  Standard Material Catalog GUID
    part_guid =                 " cad_parts-part_guid  Standard Material GUID
*   flag_commit = 'X'           " sadr-flag     Checkbox
*   flag_commit_and_wait = 'X'  " sadr-flag     Checkbox
  IMPORTING
    error_flag =                " errorflag     Error in Confirmation
    .  "  CAD_PARTS_DELETE

ABAP code example for Function Module CAD_PARTS_DELETE





The ABAP code below is a full code listing to execute function module CAD_PARTS_DELETE 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_error_flag  TYPE ERRORFLAG .


SELECT single CATALOG_GUID
FROM CAD_PARTS
INTO @DATA(ld_catalog_guid).


SELECT single PART_GUID
FROM CAD_PARTS
INTO @DATA(ld_part_guid).


SELECT single FLAG
FROM SADR
INTO @DATA(ld_flag_commit).


SELECT single FLAG
FROM SADR
INTO @DATA(ld_flag_commit_and_wait).
. CALL FUNCTION 'CAD_PARTS_DELETE' EXPORTING catalog_guid = ld_catalog_guid part_guid = ld_part_guid * flag_commit = ld_flag_commit * flag_commit_and_wait = ld_flag_commit_and_wait IMPORTING error_flag = ld_error_flag . " CAD_PARTS_DELETE
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_error_flag  TYPE ERRORFLAG ,
ld_catalog_guid  TYPE CAD_PARTS-CATALOG_GUID ,
ld_part_guid  TYPE CAD_PARTS-PART_GUID ,
ld_flag_commit  TYPE SADR-FLAG ,
ld_flag_commit_and_wait  TYPE SADR-FLAG .


SELECT single CATALOG_GUID
FROM CAD_PARTS
INTO ld_catalog_guid.


SELECT single PART_GUID
FROM CAD_PARTS
INTO ld_part_guid.


SELECT single FLAG
FROM SADR
INTO ld_flag_commit.


SELECT single FLAG
FROM SADR
INTO ld_flag_commit_and_wait.

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