‎2008 Mar 22 10:06 AM
COMMON_PART obsolete command and i want to know how to replace as a Template.
Thank you
‎2008 Mar 22 10:15 AM
‎2008 Mar 22 10:15 AM
‎2008 Mar 22 11:22 AM
I am not able to see the replacement.. could you suggest where it is...
It is not allowed in ABAP Objects to create common data areas using the addition COMMON PART of the statement DATA is not allowed in ABAP Objects.
Error message in ABAP Objects if the following syntax is used:
DATA BEGIN OF COMMON PART c,
...
DATA END OF COMMON PART.
Reason:
Common interface work areas for data transfer between programs and procedures are not supported in ABAP Objects. In classes only the components visible to a user are used as interfaces, i.e., visible attributes and the interface parameters of methods and events.
I want to know the replacement syntax Could any body can help me on this.
..
‎2008 Mar 31 5:20 AM
Hi ,
Using ABAP Internal Memory Import and Export we can achieve the functionality of COMMON PART.
Thank you