Hi Vaibhav,
you can get global variable in impl class using below code.
data : lr_impl TYPE REF TO Z*****_IMPL .
data : lv_char TYPE char5.
lr_impl ?= me->CONTROLLER.
lv_char = lr_impl->ZGLOBAL. "ZGLOBAL is global variable
Regards,
Pallavi
Hi Vaibhav,
you can get global variable in impl class using below code.
data : lr_impl TYPE REF TO Z*****_IMPL .
data : lv_char TYPE char5.
lr_impl ?= me->CONTROLLER.
lv_char = lr_impl->ZGLOBAL. "ZGLOBAL is global variable
Regards,
Pallavi