Application Development 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: 

export a table from rcf function

Former Member
0 Kudos

hi

rcf function

atributes : remote -enable mode

i want export internal table in source code

this my code:

DATA :BEGIN OF TXTS OCCURS 0,

BUTXT(25) TYPE C,

pbtxt(25) TYPE C,

ktext(25) TYPE C,

btext(25) TYPE C,

pgtxt(25) TYPE C,

stxt1(25) TYPE C,

pktxt(25) TYPE C,

stxt2(25) TYPE C,

stxt3(25) TYPE C,

END OF TXTS.

SELECT * into CORRESPONDING FIELDS OF TABLE TXTS FROM PA0001

WHERE PERNR = PERNR

AND BUKRS = BUKRS . . .

2 REPLIES 2

Former Member
0 Kudos

Hi,

You can use normal export statement.

create one more table similar to ur TEXTS table and write the following statement.

export TEXTS = TEXTS1 to MEMORY id 'MEMORY'.

Regards,

Muralidhar.

0 Kudos

Hi,

i don't know undertand

"create one more table similar to ur TEXTS table and write the following statement."