Application Development and Automation 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: 
Read only

client data dependent or independent

Former Member
0 Likes
774

hi experts,

i have one doubt. now iam working in client 100.iam creating some sales order ,deliveries and billing documents.is it implies any impact on the client having th realtime data.

we have the data in client 600. is my work disturb any database tables here.

because iam testing all the functiomodules what i have in client 100. later i have to check in 600.

advance thanks ....right answers are rewarded

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
735

No the data that you are creating in client 100 will have no impact on client 600

Only if you change the code or the structure of the table could there be any changes because these are client independent.

The data which you are creating are client dependent and hence will have no effect on other clients.

6 REPLIES 6
Read only

Former Member
0 Likes
736

No the data that you are creating in client 100 will have no impact on client 600

Only if you change the code or the structure of the table could there be any changes because these are client independent.

The data which you are creating are client dependent and hence will have no effect on other clients.

Read only

Former Member
0 Likes
735

HI,

Do not worry, the Data is Client Dependent, so there will be no effect in the other client

Regards

Sudheer

Read only

Former Member
0 Likes
735

if the database table have a field called MANDT as the key field, the data in that particular table will be client dependant or else client independant

Suppose u have two clients say ,

client 1 - 600

client 2 - 800

Client independent means not dependent upon client. For example a report is client independent.ie, a report (zex1) which is created in client 600 can be accessed in both clients 600 and 800 and viceversa.

Client dependent means dependent upon client. For example script is client dependent ie, If u create a script (zscript1) in client 600 then, that script is accessible in client 600 only, we cannot access it in client 800 and viceversa.

If u want to access it in client 800 we have to transport it

Similarly , tables which are having mandt field is client dependent and which does not have mandt field are client independent.

Regards,

Santosh

Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
735

The data is client dependent so the changes will not be reflected in the other clients as long as u do not transport the changes.

Read only

Former Member
0 Likes
735

Hi,

Data is client independent. nothing will have id you test in 100 and then in 600.

Similarly , tables which are having mandt field is client dependent and which does not have mandt field are client independent.

If you change the structure of the table only then it will be changed, orelse i will not depend on the client, it is client independent.

Read only

Former Member
0 Likes
735

data created in one client doesnot reflect in other client as most of the database tables maintain MANDT fields due to which data is client dependent....So, if u create in 100, there won't be any affect in 600.