2007 Dec 26 6:09 AM
Hi all,
Can anyone please clarify this query of mine:
There is a class CL_HTMLB_MANAGER .
This class has a method GET_EVENT.
This method has a Importing Parameter REQUEST .
Please tell me how to get the value of this parameter .
Also,please tell me how to assign this parameter to an object.
Regards,
Saurabh
2007 Dec 26 6:13 AM
hi,
check this code.
data: a type ref to CL_HTMLB_MANAGER .
CREATE OBJECT a.
CALL METHOD cl_htmlb_manager=>get_event
EXPORTING
request =
FAST_EXIT_EVENT_ID =
FAST_EXIT_EVENT_CLASS =
receiving
event =
.