2008 Nov 21 4:43 AM
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.
2008 Nov 21 4:54 AM
Hi sonu,
use SET PARAMETER and GET PARAMETER
regards
Ramchander Rao.K
2008 Nov 21 4:54 AM
Hi sonu,
use SET PARAMETER and GET PARAMETER
regards
Ramchander Rao.K
2008 Nov 21 4:58 AM
>
> 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.
2008 Nov 21 5:02 AM
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