What Is a Movement Type?
When you enter a goods movement in the system, you must enter a movement type to differentiate between the various goods movements. A movement type is a three-digit identification key for a goods movement. The following table contains examples of movement types. Continue reading
Author Archives: Spider
SAP – Classification System
SAP 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
This 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 – List interfaces implemented by an ABAP Class
This short code snippet shows how to a) get list of all interfaces implemented by given class, b) check if an interface is implemented by a class, c) list all direct implementations of given interface. Continue reading
ABAP – Working with dynamicallly accessed data
In this article I’d like to present different possible approaches on accessing data and working with it dynamically. Continue reading
ABAP – Grouping fields in field catalog
In 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.
SAP – SD Enterprise structure
Sales and Distribution covers the entire order-to-cash process chain from customer inquiry and sales order to the products delivery to customer’s destination through billing and payment collection. The components of logistics execution are integrated and include picking, packaging and shipping.
Continue reading
ABAP – Additional Fields on the Material Master
If you need to extend your Material Master view tabs then this article will show how you can do it in few simple steps. Continue reading