Skip to Content
0
Aug 08, 2008 at 11:50 AM

can any body solve my Frame solution in BAP

33 Views

hi friends,

I am new to BSP applications. I have one problem in my BSP Application.

I have created 5 BSP pages with flow logic. just see the design...

-


Frame1


Frame 2

Frame 3

Link 1

Link 2

Link 3


This is main page.

Here in Frame 1 i displayed one BSP page ( TITLE.htm )

In Frame 2 i Displayed one more BSP page, It contains 3 links every link having source page to display. ( LIST.htm )

Now here what i want is, when i clicked any LINK of Frame 2 that link corresponding page has to display in Frame 3.

My Main Page Layout code is as followed.

<html>

<frameset id="rowss" rows = "17%,*" frameborder="yes" border="2">

TITLE.htm" scrolling="no" noresize border="4" frameborder="yes">

<frameset id="column" cols = "20%,*" frameborder="yes" border="2">

LIST.htm" scrolling="no" border="4" frameborder="yes">

<frame id="page" name="lists" scrolling="yes" scrolling="no" noresize border="4" frameborder="yes">

</frameset>

</frameset>

</html>

Here is the my Frame 2 BSP page Code

<%@page language="abap"%>

<%@extension name="htmlb" prefix="htmlb"%>

<htmlb:content design="design2003">

<htmlb:page title = "LIST OF HTML PAGES ">

<htmlb:form>

<htmlb:tree id = "PERNRDETAILS"

title = "PERNR DETAILS"

tooltip = "EMPLOYEE DETAILS"

width="196"

toggle = "X" >

<htmlb:treeNode id = "PERSONNELDETAILS"

text = "PROFILE"

tooltip= "EMPLOYE DETIALS"

isOpen = "true" >

<htmlb:treeNode id = "EMPLOYDETLS"

link = "PERSONEL.htm"

target = "page"

text = "EMPLOYEE DETAILS"

tooltip= "EMPLOYEE DETAILS"

isOpen = "true" />

<htmlb:treeNode id = "TASKS"

link = "TASKS.htm"

target = "page"

text = "TASKS TO DO"

tooltip= "TASKS"

isOpen = "true" />

<htmlb:treeNode id = "TASKSCOMPLETED"

link = "TASKSC.htm"

target = "page"

text = "TASKS COMPLETED"

tooltip= "COMPLETED TASKS"

isOpen = "true" />

</htmlb:treeNode>

</htmlb:tree>

</htmlb:form>

</htmlb:page>

</htmlb:content>

Regards,

Shankar.