‎2008 Sep 04 2:24 PM
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.
‎2008 Sep 04 2:27 PM
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
‎2008 Sep 04 2:25 PM
Use export/import. It won't affect performance.
Regards,
Aparna Gaikwad
‎2008 Sep 04 2:27 PM
Use...
EXPORT <checkbox value> TO MEMORY ID 'web-zorder_tot'.
IMPORT <checkbox value> FROM MEMORY ID 'web-zorder_tot'.
‎2008 Sep 04 2:27 PM
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
‎2008 Sep 05 6:32 AM
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