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

Transfer data from one session to another

Former Member
0 Likes
688

Hello all,

I am displaying a report which shows the output with the orders numbers.suppose in report there are 10 orders i want all the ten orders and want to pass to another transaction.Is their any way to do this .Can we pass table through SET-/GET parameters.If yes how can we achieve this>

Regards

Lalit

Hello all,

I am displaying a report which shows the output with the orders numbers.suppose in report there are 10 orders i want all the ten orders and want to pass to another transaction.Is their any way to do this .Can we pass table through SET-/GET parameters.If yes how can we achieve this>

Regards

Lalit

3 REPLIES 3
Read only

Former Member
0 Likes
623

Hello!

You can use EXPORT and IMPORT MEMORY.

First you must EXPORT the value and after you must IMPORT it.

The syntaxis is:

EXPORT name_variable TO MEMORY ID 'name_memory'.

IMPORT name_variable FROM MEMORY ID 'name_memory'.

Attention! name_variable must be the same in the two transactions.

You can choose the name_memory that you want.

Read only

Former Member
0 Likes
623

export i_num from it_export to memory id 'ABC'.

import i_num to it_import from memory id 'ABC'

Read only

Former Member
0 Likes
623

Hi,

Get/Set can only be used where the parameter id for the field exists here you can use export/import to memory as already suggested.

Regards,

Himanshu Verma