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

Syntax error

Former Member
0 Likes
580

We are upgrading from 4.6 to 6.0.

the statemant is having a problem now.

IMPORT i_tmp FROM MEMORY ID 001.

Please suggest.

error message : "001" must be a character-type field (data type C, N, D, or T) .

There is no declaration for '001'.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
565

how about this:

IMPORT i_tmp FROM MEMORY ID '001'.

best,

wg

4 REPLIES 4
Read only

Former Member
0 Likes
566

how about this:

IMPORT i_tmp FROM MEMORY ID '001'.

best,

wg

Read only

Former Member
0 Likes
565

Hi,

I´m working with same version (6) and the the sintax is:

IMPORT XXXXX FROM MEMORY ID 'xxxxx'.

The ID is of the type c.

regards

Cardoso

Read only

Former Member
0 Likes
565

Hi,

the memory id should be of character type.

use: Import itab from memory id 'table'.

regards

Kannaiah

Read only

0 Likes
565

Thanks all