on 2004 Feb 05 8:40 PM
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
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 -->
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
68 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.