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: 

Import sentence

former_member622551
Participant
0 Kudos

Hello Everybody,

I need a data that is stored in ABAP memory. This field is in a table called RL03T that is in the DSEG area of abap memory.

Is there any way to get this field?

The abap memory is like this:

No Type TypeName Program Size Content

45 TABL RL03T SAPML03T 42 1616 |\0\0\0\0\x01\0\x0C\0\0\0\0\x01\0\x0C

I hace made an import sentence but it does not work.

The sentence is : import v_rl03t from memory id 'RL03T'.

Any help?

Thanks!

1 ACCEPTED SOLUTION

former_member195402
Active Contributor
0 Kudos

Hi,

I think RL03T is just a simple structure and not a table with several entries. In this case when SAPML03T is loaded, try

field-symbols: <RL03T> type rl03t.
assign ('(SAPML03T)RL03T') to  <RL03T> .

Regards,

Klaus

2 REPLIES 2

former_member191735
Active Contributor
0 Kudos

Is there data available in the memory id? Find out export and put a break point and check after the import.

Try out with check points to find out where the data is cleared between export statement and your import statement.

former_member195402
Active Contributor
0 Kudos

Hi,

I think RL03T is just a simple structure and not a table with several entries. In this case when SAPML03T is loaded, try

field-symbols: <RL03T> type rl03t.
assign ('(SAPML03T)RL03T') to  <RL03T> .

Regards,

Klaus