cancel
Showing results for 
Search instead for 
Did you mean: 

tooltip at runtime

Former Member
0 Kudos

Hi all,

I am setting tooltip in table input field. i created one attribute and bindid tooltip of inputfield.

in coding..

a = ls_segment1-week7 .
      b = ls_segment1-week8.
      CONCATENATE 'Changed value between' a 'and' b
      INTO tooltip SEPARATED BY space.

* set single attribute
  lo_el_context->set_attribute(
    name =  `TOOL`
    value = tooltip ).

I am getting 'CHANGED VALUE BETWEEN AND' a value and b value is not coming?.. but i checked in debugg tooltip containes

values and text. how can we get this?

Thanks,

Venkat.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi venkat,

can u specify the types for the variables a & b.

regards,

Monishankar

Lukas_Weigelt
Active Contributor
0 Kudos

^

+ also for the variable "tooltip" please. Also, at what point do you include this coding, WDDOINIT?

Former Member
0 Kudos

Hi,

both are char4. and assagning value also char4.

thanks

venkat