Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

significance of client specific and client indeprndent table

Former Member
0 Kudos

Hi I am new to SAP world.

I have just joined SAP-ABAP training.

Plz let me know significance of client specific and client indeprndent table.

Can we make client independent table in SAP IDES software.

Is their any client independent table in SAP inbuilt tables .

Thanks

4 REPLIES 4

andreas_mann3
Active Contributor
0 Kudos

Hi,

look here

1) http://help.sap.com/saphelp_47x200/helpdata/en/89/933d3c3a926614e10000000a11402f/frameset.htm

2) examples of client indep. tables developement-tables,

which are ruling for the whole system like trdir, tfdir, dd03l,, dd02l...

A.

Former Member
0 Kudos

Hi,

Almost all the application tables are client independent only.

If you define a table as Customizing table, 'C' or 'G', then those are client dependent tables. Check the attributes.

If the table type is customizable and you want to move the entries from one client to another then you have to save the table entries in a request and then get it tarnsported to other clients in your system.

Regards

Subramanian

Former Member
0 Kudos

hi,

A table can be either client-specific (applying only to a single client) or client-independent (applying to all clients in the SAP system).

· Client-independent tables

Client-independent tables contain data of general relevance, for example, SAP system control data, language indicators, and transaction codes.

· Client-specific tables

Data which only applies to one client is stored in client-specific tables. Examples of client-specific tables are tables containing application data, tables containing information about the structure of a company, and, with a limited number of exceptions (for example, language indicators), tables containing basic commercial data.

A table attribute in the Data Dictionary indicates whether a table is client-specific or client-independent (see also "Creating a Table Structure" in the ABAP/4 Dictionary guide). In client-specific tables, the client is always entered in the first key position.

hope this is helpful.

pls reward if helpful.

Former Member
0 Kudos

Hi

Please go thru this URL:

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&;

this is very useful for u.