ABAP Program with Editable ALV Grid Contents

Using ALV Grid is always beneficial in terms operations and activities we can perform on the data. It even allow us to download data in various formats. But when compared to Table Control, its main disadvantage is, un-editable / read-only data.

Here is a simple program to make certain cells of an ALV grid control editable.

Editable Table Grid

Editable Table Grid

 

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…

ABAP Program to display SAP Data in 3-Dimension

SAP support for graphics are pretty nice, but hardly used by programmers. This should be treated as an additional tool for making MIS reports more friendly. There are many functions provided by SAP for Graphical display. Lets have a look at a pretty simple but interesting code (with a pretty nice output) which could be used as your starter code for SAP Graphics. 

 

3-D Graphics

3-D Graphics

Continue Reading…

Difference between “‘” and “`” in ABAP

A basic difference: still I find that most of the programmer hardly uses string literal. String literal is generally a forgotten case.

A character sequence within single quote characters (‘) is a char literal, while within (`) is a string literal. That is especially important for trailing spaces: a string literal preserves the trailing space while a char literal ignores them.

This can be best understood by the following example:
Continue Reading…

ABAP Program to List Programs without T-Codes

The following program lists the ABAP programs with out any transaction code (or not assigned to a transaction code).

Program List without T-Code
Program List without T-Code

Continue Reading…

Page 7 of 16« First...56789...Last »