Useful SAP BASIS T-Codes

The following list displays the set of useful T-Codes for SAP System Administrator. These are T-Codes used by Basis Team on regular day-to-day basis.
(Any additional T-Codes are welcome :)

Continue Reading…

Create a TCODE for an ABAP Query

Assigning a T-Code to an ABAP Query can be done in two ways.  By first method, you assign Query Program Name to the T-Code. In second, you assign the Query directly to the T-Code.

It is recommended not to assign Query program name directly to trnasaction code in case of queries(prefer method 2 than method 1), because Queries are generated and may vary system by system. But I have seen first being used more.

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…

ABAP Program for Creating an ALV Grid in 3 lines

Now you can create an ALV Grid very fast; you don’t need to define a layout, a fieldcatalog, a container and all the other small things we usually define in an ALV Grid. If we don’t need to finetune the ALV Grid and just want to display a list on the screen or to the printer, here is a very simple way to proceed.

ALV Grid Output

Continue Reading…

ABAP Program Showing a progress bar in SAP

This process is very easy but a lot of programmers don’t know how to do it. You just have to call the ABAP Function Module ‘ SAPGUI_PROGRESS_INDICATOR ‘ , at the appropriate points.

Progress Bar

Continue Reading…

Page 25 of 30« First...2324252627...Last »