Retrieve Deleted Programs in SAP

SAP has a limited provision for retrieving deleted programs. Let us have a look into the steps for the retrieval.

 

Continue Reading…

Finding Obsolete BAPIs in SAP

 

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

Obsolete BAPIs

 

Continue Reading…

Embed SAP View in an ABAP Program

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.

 

Embed View in Program
Embed View in Program

 

Continue Reading…

Transport SAP Table contents

In the initial ABAP learning periods, I had faced the difficulty of transporting the Table data from one system to another.  I had to MANUALY copy, Master data from one system to another; as was unaware of this feature in SAP, that allow us to transport the data/table contents automatically from one system to another.
Transport Request with Table Contents Attached

Transport Request with Table Contents Attached

Let’s check out the steps for the same.

Continue Reading…

Conversion Routine in SAP

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”.

Continue Reading…

Page 3 of 41234