cancel
Showing results for 
Search instead for 
Did you mean: 

TableView in PopUpWindow

Former Member
0 Kudos
108

I have created a contact management system for one of our customer on SAP EP 5.0.

Now i want to implement a matchcode search function in the application.

i want to present the result of the matchcode search in a tableview in a seperate popupwindow in the portal.(like the date picker function).

has anyone ever tried something like that???

Best Regards,

Thomas Kuri

Accepted Solutions (0)

Answers (1)

Answers (1)

Oliver_S
Product and Topic Expert
Product and Topic Expert
0 Kudos

I do not recommend popup windows, because you loose control about what the user is doing with this window.

This is why it is only in EP50 generally possible, in EP60 only with LOW_SAFETY settings.

Better is to program a dedicated iview for the searchresults.

But technically its possible (direct coding no htmlb control for this):

<!-- Begin

function popUp(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=600,left = 340,top = 212');");

}

// End -->

</script>

<!-- STEP TWO: Paste this onLoad event handler into the BODY tag -->

<BODY onLoad="javascript:popUp('sdn.sap.com')">

<!-- Script Size: 0.73 KB -->