cancel
Showing results for 
Search instead for 
Did you mean: 

Table Interface / Web: value from free characteristic

Former Member
0 Kudos

Hi,

i am using 2 queries. In the first query i got the free characteristic "calendar year month". Now i created a link with table interface to jump to the second query. With this link i would like to filter query 2 with calendar year month from query 1. How can i get the value from the calendar year month? With drill down there is no problem to get the value in method CHARACTERISTIC_CELL. But with free characteristics this is not so easy.

Any ideas?

Regards,

M. Erbil

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Erbil,

You can use GET_STATE_INFO method to get the value of calendar year/month.

Cheers,

Kartheek

Former Member
0 Kudos

Hi Kandikuppa,

but how can i do that exactly? You got an example for 0CALMONTH?

Regards,

M. Erbil

Former Member
0 Kudos

Hi Erbil,

Please find below the usage of GET_STATE_INFOS,

DATA l_sx_axis_data TYPE rsrds_t_axis_data.

CALL METHOD me->GET_STATE_INFOS

IMPORTING

E_T_SLICER = l_sx_axis_data.

You can get the 0CALMONTH from the above resultset.

Cheers,

Kartheek