cancel
Showing results for 
Search instead for 
Did you mean: 

Integrating SAP iView into .NET portal

PrasannaGunji
Participant
0 Kudos

Hi,

I need to integrate an existing SAP iView into .NET based portal. I would appreciate if anybody can guide me with the prerequisites and procedure to do this.

Thanks in advance for your help.

- Prasanna

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hey Prasanna,

Can you describe the iView a little more? If it's a simple transaction iView using SAP GUI for HTML, then your considerations are:

1. know the unique URL for that SAP Portal iView and call it wth a URL-based web part

2. get the SAP Portal to issue you a logon ticket so SSO to the SAP back-end system will occur seamlessly

Step 1 is easy. You can follow these instructions to derive the default URL:

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/2d/91e33edd37de63e10000000a11405a/content.htm

or you can use quick links as described here:

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/97/b0ef8b24a64ae884f0ab246e54cae5/content.htm

Step 2 leaves you several options but I think your best bet would be find the HTTP header variable (session cookie) that's set by your .net Portal and then configure the SAP Portal to use the HeaderVariableLoginModule as part of your ticket login module stack and configure it to expect the .net variable.

Using Header Variable Login Module (written for NW04 but procedure is unchanged for NW7):

http://help.sap.com/saphelp_nw04/helpdata/en/68/5ddc40132a8531e10000000a1550b0/content.htm

Good read regarding SECURE use of Header Variable Authentication:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/069eaf4b-0901-0010-6e89-d1fcceebc...

-Kevin