Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Event firing in a bsp application using html

Former Member
0 Kudos

hi all,

how to fire an event in a bsp application page.

my first page contains this code in event handler tab.

But it is not working.Can any one pls tell me what is the problem.

case event_id.

when 'select'.

navigation->next_page( 'TOVENDORLOGIN' ).

when others.

the event select is linked with a button and when user click the button,it should take the user to next page having navigation

TOVENDORLOGIN.please reply asap.

endcase.

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos
case event_id.

   when 'select'.

navigation->goto_page( 'TOVENDORLOGIN.htm' ).

use the above code, use goto_page

3 REPLIES 3

Former Member
0 Kudos

Hi,

Please try the below link

Link: [http://help.sap.com/saphelp_nw2004s/helpdata/en/6e/ba5732fec9ff40a5de3c0f25171f88/content.htm]

Regards,

Surinder

former_member188685
Active Contributor
0 Kudos
case event_id.

   when 'select'.

navigation->goto_page( 'TOVENDORLOGIN.htm' ).

use the above code, use goto_page

Former Member
0 Kudos

what is the event to capture the data from an input field.and how i can capture it.