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 get this value?

0 Kudos

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

1 REPLY 1

Former Member
0 Kudos

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 =

.