cancel
Showing results for 
Search instead for 
Did you mean: 

Property Types

Former Member
0 Kudos

Hi Experts, How can i find the property field types. Because i want to bind some properties of table and table column in context variable. but i am not able to find the type of the property values. so i am getting type mismatch while binding. It would be better u tell me how to find data type of all properties for an UI element.

Thanks a lot in advance!!!

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member205703
Participant
0 Kudos

Hi Senthil,

You can see the attributes of the class CL_WD_UIELEMENT to find the associated type for various layout elements.

For Ex.

You can use varriables of type ABAP_BOOL for enable & disable,

of type WDUI_VISIBILITY for visible & not visible property

etc.

Regards

Amol Deshmukh

Former Member
0 Kudos

hi senthil.......

you can make use of the class: cl_wd_table.

methods:

to get the design : get_design

data source : get_data_source

you can make use of many methods like above to get teh desired property.

---regards,

alex b justin

Former Member
0 Kudos

Thanks Alex i got it ... Thanks a lot