cancel
Showing results for 
Search instead for 
Did you mean: 

webdynpro OVS help

Former Member
0 Kudos

Dear Experts,

How to read current table line values on OVS help. because in need get F4 help depents on previous

column field value. EQTYP EQUNR r table fields i need to get EQTYP value of current table line for EQUNR OVS help.

Regards,

Anu.

Accepted Solutions (1)

Accepted Solutions (1)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

the call back object in OVS event handler contains an attribute called CONTEXT_ELEMENT, which is nothing but the context element where the F4 is pressed.

OVS_CALLBACK_OBJECT->CONTEXT_ELEMENT->GET_STATIC_ATTRIBUTES( IMPORTING STATIC_ATTRIBUTES = LS_STRUCT ).

access the fields of that particular row using

LS_STRUCT-COL1

LS_STRUCT-COL2 ..

Abhi

Answers (0)