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 dependent

Former Member
0 Likes
817

hai ....

Are the ABAP programs client dependent or independent??????

Thnaks

Pavan

1 ACCEPTED SOLUTION
Read only

former_member196280
Active Contributor
0 Likes
777

Only SAPscripts and Stanadard Text are client dependent, which means? you have to copy them/move them in various cleints.... rest all are client independent.

Regards,

SaiRam

6 REPLIES 6
Read only

former_member196280
Active Contributor
0 Likes
778

Only SAPscripts and Stanadard Text are client dependent, which means? you have to copy them/move them in various cleints.... rest all are client independent.

Regards,

SaiRam

Read only

Former Member
0 Likes
777

Hi,

Programs -client independent

Thanks,

Anitha

Read only

Former Member
0 Likes
777

Hi,

abap programs are client independent.

rgds,

bharat.

Read only

Former Member
0 Likes
777

hi pavan,

programs are client indepnedent.

sap scripts are client dependent.

most of sap objects are client independent

tables may be dependent or independent. [depends on sy-mandt field]

i.e mandt field is given then it is for specific client or golbal.

if useful reward some points.

with regards,

Suresh.A

Read only

Former Member
0 Likes
777

Hi Pavan,

ABAP programs are Client Independent.

Regards,

Kavitha.

Read only

0 Likes
777

ABAP programs are client Independant. Any table which has a key field MANDT will be client dependant. Sapscripts are stored in Tables called STXH and STXL. These tables have MANDT as a field. That is why it is client dependant. If you create a table which does not have MANDT field and if you store data inside that from a client, you will be able to see the same data in other clients also.

Similarly if you write a program in one client, you will be able to see the same code from every clients. That is why it is called as client independant