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: 

How to share data across sessions?

Former Member
0 Kudos

Hi ABAPers,

I have a requirement in my project where I need to share data across sessions. Currently he have approaches like:-

1) Shared Memory Concept

2) Writing to Database

3) Writing to ABAP memory using EXPORT-IMPORT

But due to security reasons of my organisation, I am not allowed to use the above approaces. Please provide me any leads for this requirement.

The main requirement goes as follows:-

I navigate from one application to another. The new application opens in another session. I have a bunch of data that needs to be passed to the new session.

NOTE: Please provide solutions which doesn't involve the above mention approaches.

Many Regards,

Sonu.

1 ACCEPTED SOLUTION

former_member1245113
Active Contributor
0 Kudos

Hi sonu,

use SET PARAMETER and GET PARAMETER

regards

Ramchander Rao.K

3 REPLIES 3

former_member1245113
Active Contributor
0 Kudos

Hi sonu,

use SET PARAMETER and GET PARAMETER

regards

Ramchander Rao.K

0 Kudos

>

> Hi sonu,

>

> use SET PARAMETER and GET PARAMETER

>

> regards

> Ramchander Rao.K

Hi Ramchander,

Thanks for the quick reply. You answer is ghelpful but my requirement is to pass a big table from one application to another. The SET PARAMETER causes an error of the data to be passed is more than 20 characters. It throws an error:-

SET_PARAMETER_ID_TOO_LONG: Key longer than 20 characters.

Regards,

Ravi.

0 Kudos

Hi sonu,

to best of my knowledge it is the name of the SET PARAMETER id only

NOT THE CONTENT OF THE INTERNAL TABLE.

The system proposes default table called INDX type HK

USE CAN USE THIS.

Please take the key word documenation help

regards

Ramchander Rao.K