SAP – Classification System

SAPSAP Classification system can be very powerful tool to provide additional information to your master data. It can be used for classifying and subsequent searching objects based on given set of characteristics describing the object.

Also with using classification system you can extend your master data without modifying the master data tables! Continue reading

ABAP – Select * (all columns) and INNER JOIN

I fyou want to select all fields of one table and just few fields of another (joined) table, you have to specify all required fields manually. It is NOT possible to write SELECT TAB_1~* TAB_2~FIELD_1 TAB_2~FIELD_2…. In this article I’ll show how to make this thing easier 🙂 Continue reading

ABAP – Add working days to a date using Factory Calendar

SAPThis article contains a code snippet showing how to add given number of WORKING days to a given starting date. To get the correct factory calendar, you have to search in Plant data. Continue reading

ABAP – Grouping fields in field catalog

SAPIn some cases you find a report with ALV output where there are maybe hundreds of fields available to be displayed. This can be VERY confusing for the user when he tries to select just few fields he wants to display but all fields are listed in one HUGE list together.

Continue reading