‎2007 Jun 29 8:31 AM
hai ....
Are the ABAP programs client dependent or independent??????
Thnaks
Pavan
‎2007 Jun 29 8:32 AM
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
‎2007 Jun 29 8:32 AM
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
‎2007 Jun 29 8:33 AM
‎2007 Jun 29 8:33 AM
‎2007 Jun 29 8:40 AM
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
‎2007 Jun 29 11:12 AM
Hi Pavan,
ABAP programs are Client Independent.
Regards,
Kavitha.
‎2007 Jun 29 11:23 AM
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