SAP C14S_DOCUMENT_DELETE_ALL Function Module for NOTRANSL: EHS: Löschen eines bestehenden DVS-Dokuments (Infosatz)









C14S_DOCUMENT_DELETE_ALL is a standard c14s document delete all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: EHS: Löschen eines bestehenden DVS-Dokuments (Infosatz) processing and below is the pattern details for this FM, 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 c14s document delete all FM, simply by entering the name C14S_DOCUMENT_DELETE_ALL into the relevant SAP transaction such as SE37 or SE38.

Function Group: C14S
Program Name: SAPLC14S
Main Program: SAPLC14S
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1



Function C14S_DOCUMENT_DELETE_ALL 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 'C14S_DOCUMENT_DELETE_ALL'"NOTRANSL: EHS: Löschen eines bestehenden DVS-Dokuments (Infosatz)
EXPORTING
I_DOCCAT = "Document Type
I_DOCNO = "Document number
* I_PARTDOC = '000' "Document Part
* I_VERSION = '00' "Document Version
* I_FLG_DO_COMMIT = ESP1_FALSE "

EXCEPTIONS
DOCCAT_NEEDED = 1 DOCUMENT_NOT_EXISTS = 2 DOCNO_NEEDED = 3
.



IMPORTING Parameters details for C14S_DOCUMENT_DELETE_ALL

I_DOCCAT - Document Type

Data type: DRAW-DOKAR
Optional: No
Call by Reference: No ( called with pass by value option)

I_DOCNO - Document number

Data type: DRAW-DOKNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_PARTDOC - Document Part

Data type: DRAW-DOKTL
Default: '000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VERSION - Document Version

Data type: DRAW-DOKVR
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_DO_COMMIT -

Data type: ESP1_BOOLEAN
Default: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

DOCCAT_NEEDED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

DOCUMENT_NOT_EXISTS -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

DOCNO_NEEDED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for C14S_DOCUMENT_DELETE_ALL 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_doccat  TYPE DRAW-DOKAR, "   
lv_doccat_needed  TYPE DRAW, "   
lv_i_docno  TYPE DRAW-DOKNR, "   
lv_document_not_exists  TYPE DRAW, "   
lv_i_partdoc  TYPE DRAW-DOKTL, "   '000'
lv_docno_needed  TYPE DRAW, "   
lv_i_version  TYPE DRAW-DOKVR, "   '00'
lv_i_flg_do_commit  TYPE ESP1_BOOLEAN. "   ESP1_FALSE

  CALL FUNCTION 'C14S_DOCUMENT_DELETE_ALL'  "NOTRANSL: EHS: Löschen eines bestehenden DVS-Dokuments (Infosatz)
    EXPORTING
         I_DOCCAT = lv_i_doccat
         I_DOCNO = lv_i_docno
         I_PARTDOC = lv_i_partdoc
         I_VERSION = lv_i_version
         I_FLG_DO_COMMIT = lv_i_flg_do_commit
    EXCEPTIONS
        DOCCAT_NEEDED = 1
        DOCUMENT_NOT_EXISTS = 2
        DOCNO_NEEDED = 3
. " C14S_DOCUMENT_DELETE_ALL




ABAP code using 7.40 inline data declarations to call FM C14S_DOCUMENT_DELETE_ALL

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.

"SELECT single DOKAR FROM DRAW INTO @DATA(ld_i_doccat).
 
 
"SELECT single DOKNR FROM DRAW INTO @DATA(ld_i_docno).
 
 
"SELECT single DOKTL FROM DRAW INTO @DATA(ld_i_partdoc).
DATA(ld_i_partdoc) = '000'.
 
 
"SELECT single DOKVR FROM DRAW INTO @DATA(ld_i_version).
DATA(ld_i_version) = '00'.
 
DATA(ld_i_flg_do_commit) = ESP1_FALSE.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!