Client Dependent and Client independent tables
There are certain tables, in SAP, which when changed will not affect similar tables in other Clients. These are known as Client-Dependent tables. All Client-dependent tables have MANDT as their first field.
On the other hand, if a change made in one Client is reflected in another table across various Clients, then such a table is called Client-Independent. In this case, the first field of the table will not be MANDT. You need to be extra careful when changing the settings or content of these tables as this will affect all the Clients. It mostly happens with the customizing tables. when you try to configure some customizing changes and the SAP displays a pop up saying that the table is cross client. Be careful, because the changes will impact all the clients in the system.
If you like this post, you may as well like these too:
- Source Code: Working with database tables and internal tables REPORT ZSOURCE0103. * Declaration of a work area for a Dictionary tableTABLES CUSTOMERS. * Internal table used as snapshot of the database tableDATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER...
- ABAP Programs: Using internal tables as snapshots of database tables REPORT ZSOURCE1103.* Work area for a database tableTABLES CUSTOMERS.* Internal tableDATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE.* Filling the internal table with all entries of the database tableSELECT...
- What is a Client? A client is a independent unit in the SAP system from an organizational point of view. Each client has it’s own data environment. The client concept allows for the joint...



















Leave a Reply