cancel
Showing results for 
Search instead for 
Did you mean: 

scrolling table Web dynpro abap.

ananth_anni
Participant
0 Kudos

Hi Frnds,

HI have created table i need for that scroll vertically and horizontally , as per frnds suggestion keeping in webdynpro application adding the parameters wddonavigator but its getting error can any please explain clearly and any screen shots regards tyo that .

thanks.

Accepted Solutions (0)

Answers (2)

Answers (2)

ananth_anni
Participant
0 Kudos

THANKS TO REPLAY

Former Member
0 Kudos

Hi ,

Use following parameter in your web dynpro application,

Parameter: WDTABLENAVIGATION

Value:SCROLLBAR

Warm regards,

Atul

ananth_anni
Participant
0 Kudos

Sry when i am assiging that i am getting error msg .please assign standard parameters like.

Former Member
0 Kudos

Hi ananth,

I think the problem with patch levels.

U can go through this Link : [http://help.sap.com/saphelp_nw70/helpdata/EN/7b/fb57412df8091de10000000a155106/content.htm].

Thanks & Regards,

Naga Prakash

ananth_anni
Participant
0 Kudos

hi prakash ,

thanks by seeing that link only i am already tried i am getting error when assigng the parameter in web application. please slect standard parameter like that .

ananth_anni
Participant
0 Kudos

Method ONACTIONSHOW_HIDE

*THIS IS CODE FOR SHOW AND HIDE THE INPUT FIED BUT GETTING ERROR IS

*set_attribute_property doesnot exit similar ly get_attribute_property and set attribute is there like that getting error for this code*

. DATA lo_nd_radio_node1 TYPE REF TO if_wd_context_node.

DATA lo_el_radio_node1 TYPE REF TO if_wd_context_element.

DATA lw_index TYPE I.

DATA lo_el_radio_node1_1 TYPE ref to if_wd_context_element.

  • navigate from <CONTEXT> to <RADIO_NODE1> via lead selection

lo_nd_radio_node1 = wd_context->get_child_node( name = wd_this->wdctx_radio_node1 ).* call method get lead selection index to get index

CALL METHOD lo_nd_radio_node1->get_lead_selection_index

receiving

index = lw_index. lo_el_radio_node1_1 = wd_context->get_element( ). If lw_index = 1. * call method set attribute property and pass value as 'X' to show

call method lo_el_radio_node1_1->set_attribute_property

exporting

attribute_name = 'FIRST_NAME_1'

property = 1

value = 'X'.

  • call method set attribute property and pass value as 'X' to show

call method lo_el_radio_node1_1->set_attribute_property

exporting

attribute_name = 'LAST_NAME_1'

property = 1

value = 'X'. Else.* call method set attribute property and pass value as SPACE to HIDE

call method lo_el_radio_node1_1->set_attribute_property

exporting

attribute_name = 'FIRST_NAME_1'

property = 1

value = space.* call method set attribute property and pass value as SPACE to HIDE

call method lo_el_radio_node1_1->set_attribute_property

exporting

attribute_name = 'LAST_NAME_1'

property = 1

value = space. Endif.