Is there any way to find the data type of page attributes in BSP? Theres a method in cl_bsp_page class get_attribute().This returns a value type any.
Is it possible to find the data type from it?
CALL METHOD page->get_attribute
EXPORTING
name = <field>-name
IMPORTING
value = lv_value.
How should i declare lv_value so that I get the correct data type that value returns?
Can anyone suggest any solution?