cancel
Showing results for 
Search instead for 
Did you mean: 

cretaing some pages

Former Member
0 Kudos

Hi,

I am planning to create some web page, in where there has to be some text boxes, some list box , text area some buttons, some radion buttons and finnally some links. and my second page should show the all enterted values in the next page.

May I know how to do that through NW EP.

Thanks in advance,

regards,

Rahul

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Rahul,

For your requirement you can do by JSP Dyn Page,

1.In your Requirement you have to create <b>2 JSP pages</b>(1-show page & 2-display page) in JSP Dyn Page.

2.from the first JSP page(Show page) u get all controls what you needed from <b><a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/d0/55074155bcf26fe10000000a1550b0/frameset.htm">HTMLB Visible Controls</a> </b>

3.<b>Get the values in controller</b> and <b>set it to Bean</b>.

4.Then from the bean <b>get the value to 2nd JSP page that is display JSP page</b>.

Regards,

Mythili

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Rahul,

U can achieve ur task by creating jsp dynpages.

1.First create a jsp dynpage project in NWDS with two jsp pages.

2.Have ur elements(<a href="http://help.sap.com/saphelp_nw70/helpdata/en/d0/55074155bcf26fe10000000a1550b0/frameset.htm">HTMLB</a>) in ur first page.Write onClick event for all elements.

3.Write event handling methods in the component and get the values from jsp then store them in the bean.

4.Get the stored values from bean in the second jsp.

Refer the following link u will get a sample code to display the values in the second page from first page (refer the links available in this page)

http://help.sap.com/saphelp_nw70/helpdata/en/95/cfa441cd47a209e10000000a155106/frameset.htm

Regards,

Tamil K

Former Member
0 Kudos

Hello Rahul,

What you are talking about is any web server technology like JSP. What values you feed on the first page, on submit of the form <b>go into the Request</b> and on the next JSP, <b>you have the response object print them</b>. Now there are many ways to go about this.

Suiting your need, I would suggest you create a <b>WebModule project in NWDS</b> and after creation and deployment you can run the application <b>standalone</b> through a browser or create a URL iView pointing to the same application.

To create a <b>webmodule project</b> check: http://help.sap.com/saphelp_nw04/helpdata/en/02/40bb3ee5bf7173e10000000a114084/content.htm

Please revert with any queries and if it helped kindly reward with points.

Thanks.