Skip to Content
0
Former Member
Nov 08, 2005 at 02:45 PM

In a server proxy how can I use a INCLUDE STRUCTURE?

138 Views

Hi people!!, how can I put an internal table with an INCLUDE statement in a server proxy in abap. If I put the next code the system present me this error: Within classes and interfaces, you can only use "TYPE" to refer to ABAP , Dictionary types, not "LIKE" or "STRUCTURE".

The problem is that I need the STRUCTURE to make a APPEND.

Thanks for the help.

	
DATA: BEGIN OF bdc_tab .
        INCLUDE STRUCTURE bdcdata.

DATA: END OF bdc_tab.