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

export a table from rcf function

Former Member
0 Likes
497

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
Read only

Former Member
0 Likes
442

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.

Read only

0 Likes
442

Hi,

i don't know undertand

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