SAP ABAP Syntax for Delete Program

Basic form

DELETE REPORT prog.

Effect

Deletes some components (source code, attributes, text elements and generated version) of the program specified in the field prog .

The return code value is set as follows:


SY-SUBRC = 0 The program was deleted.
SY_SUBRC = 4 The program does not exist.

Note

This statement deletes neither the variants nor the documentation.
Normally, you should use the function module RS_DELETE_PROGRAM to delete a program.


DELETE - delete text elements

Basic form

DELETE TEXTPOOL prog LANGUAGE lg.

Effect

Deletes all text elements of the program specified in the field prog for the language specified in the field lg from the library.

If you use the value '*' for lg , the text elements of all languages are deleted.

Example

Delete all text elements of the program PROGNAME in the language "English":

No comments :

Post a Comment