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

Regarding OOP

Former Member
0 Likes
381

Hi...

CLASS lcl_event_receiver DEFINITION DEFERRED.

what the above declaration means...?

What the deferred keyword does?

Regards

Sandeep Reddy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
325

Hi,

Please check that

/wg

2 REPLIES 2
Read only

Former Member
0 Likes
326

Hi,

Please check that

/wg

Read only

matt
Active Contributor
0 Likes
325

It means "load all the definition of the class lcl_event_receiver". After this statement, you can then access methods and attributes of lcl_event_receiver, even though it may be defined considerably later in the class.

matt