cancel
Showing results for 
Search instead for 
Did you mean: 

How can i access attribes in post-exit?

Former Member
0 Kudos

We can enhance a class by pre-exit and post-exit.

But How can I access attributes of class in post-exit code???

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

For accessing attributes of class:

data lv_class type string.

lv_class = zclass=>Att

Here Att is my attribute and Zclass is Class having attribute Att.

You can access the same anywhere whether pre-exit or post-exit of webdynpro abap.

Answers (3)

Answers (3)

Former Member
0 Kudos

thx

Former Member
0 Kudos

Hi,

U can access the attribute of class as

class_name=>attribute_name

Former Member
0 Kudos

We can enhance a class by pre-exit and post-exit.

But How can I access attributes of class in post-exit code???

I am little confused , did u mean after the user actions , u want to acess ur attributes

use the WDDOAFTERACTION to access attributes thn using classname=>attrbute

regards,

amit