Retrieve Deleted Programs in SAP
Posted by Admin, under ABAP, DDIC, Quick ReferenceSAP has a limited provision for retrieving deleted programs. Let us have a look into the steps for the retrieval.
ABAP Tutorials, Guides, Training, Manuals
SAP has a limited provision for retrieving deleted programs. Let us have a look into the steps for the retrieval.
With introduction of ECC6.0, there goes some function modules/BAPIs with the old version. The following procedure defines the steps for displaying Obsolete BAPIs.

Obsolete BAPIs
We can also embed View of a Table in a program. SAP have provided a set of standard function modules for achieving the goal and by passing the initial values required to do this, we can accomplish that.
In this example, we will use the function module SE16N_INTERFACE to call the new standard table display.


Transport Request with Table Contents Attached
Let’s check out the steps for the same.
Write this simple code.
REPORT ZFIELDCONV.
data: d_auart LIKE vbak-auart.
d_auart = ‘TA’.
WRITE d_auart.
What the result output on screen do you expect, “TA”? No, the result will be “OR”.