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

Read from memory

Former Member
0 Likes
780

Hi Abapers,

There is one checkbox on selection screen of a standard report. bsed on this checkbox, i need to add some logic in another standard function module.. how can i read the value of checkbox? can i use set/get parameter or import/export? please give your inputs on this..

Does this affect performance anyway? kindly clarify.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
724

Hello,

You can use the EXPORT and IMPORT Commands to send To and Receive from Memory.

Example: EXPORT P_CHKBOX TO MEMORY ID 'EXPMEM'.

In your Standard Function Module,

IMPORT P_CHKBOX from Memory ID 'EXPMEM'.

Check p_check eq space.

It does not affect the Performance.

Thanks and Regards,

Venkat Phani Prasad Konduri

Hi Abapers,

There is one checkbox on selection screen of a standard report. bsed on this checkbox, i need to add some logic in another standard function module.. how can i read the value of checkbox? can i use set/get parameter or import/export? please give your inputs on this..

Does this affect performance anyway? kindly clarify.

4 REPLIES 4
Read only

Former Member
0 Likes
724

Use export/import. It won't affect performance.

Regards,

Aparna Gaikwad

Read only

Former Member
0 Likes
724

Use...

EXPORT <checkbox value> TO MEMORY ID 'web-zorder_tot'.

IMPORT <checkbox value> FROM MEMORY ID 'web-zorder_tot'.

Read only

Former Member
0 Likes
725

Hello,

You can use the EXPORT and IMPORT Commands to send To and Receive from Memory.

Example: EXPORT P_CHKBOX TO MEMORY ID 'EXPMEM'.

In your Standard Function Module,

IMPORT P_CHKBOX from Memory ID 'EXPMEM'.

Check p_check eq space.

It does not affect the Performance.

Thanks and Regards,

Venkat Phani Prasad Konduri

Read only

Former Member
0 Likes
724

hi premraj,

you can use export and import

EXPORT <checkbox value> TO MEMORY ID 'web-zorder_tot'.

IMPORT <checkbox value> FROM MEMORY ID 'web-zorder_tot'.

hope it will help you

Regards

Rahul Sharma