cancel
Showing results for 
Search instead for 
Did you mean: 

BSP Iview error message : Access denied

Former Member
0 Kudos

Hi All,

We are using E-rec 600 via the standard BSPs (REQ_MNT_LST) in ECC 6.0.

The application runs fine in the browser without any problem.

I started creating BSP iview in Portal for this application. The Url is mentioned below :

http://hostname.companyname.com:8000/sap(bD1lbiZjPTIzNSZkPW1pbg==)/bc/bsp/sap/hrrcf_start_int/applic...

I have given the BSP iview properties for this application as follows :

Application Namespace : rcfLogAppl=REQ_MNT_LST

BSP Application : hrrcf_start_int

Start page : application.do

The application starts fine in Portal via BSP iview. But, however when I click on any of the drops in the application. In the status bar, it show the message : Access denied.

I tried in other browsers also. Same problem persists. I am sure that the roles at backend and permissions in Portal are set properly.

Please shade some light where I missed the steps. awaiting for your valuable inputs. thanks for your time, point assured.

Kind Regards,

Anil Kumar.

Accepted Solutions (1)

Accepted Solutions (1)

raja_thangamani
Active Contributor
0 Kudos

Do you have any pop-up in your BSP? Post your code here..

Tyy to add below Javascript.it may solve the issue..

var liBehindFirstDot = location.hostname.indexOf( "." ) + 1;
if (liBehindFirstDot > 0) {
document.domain = location.hostname.substr( liBehindFirstDot );
}

Raja T

Former Member
0 Kudos

Hi Raja,

The Portal is now in https (Secured scoket).

Is the problem making the application accesible from backend is denying ?

Will I need to configure the system object to make it work with https portal ?

or any settings in the BSP iview ?

Please share your experiences.

PS : ECC is still working on http only.

Regards,

Anil Kumar.

athavanraja
Active Contributor
0 Kudos

portal being on https and abap server on http is not the issue here.

the access denied error is a javascript error which will happen if the javascripts in the application tries to access js functions/dom elements from other frames or from other pages which are from different domains.

this requires the domain to be relaxed and when supports portal integration flag is checked the system automatically generates code which handles domain relaxation. with this check box checked you should not be having problem.

However i had the same problem even after setting portal integration flag. and my bsp application strucutre was on index.htm page and within that i had 4 frames. then i had to manually set the document.domain in index page which helped me to solve the access denied error.

Regards

Raja

Former Member
0 Kudos

Hi Raja,

The problem is now resolved.

The problem was in Portal stylesheets and sap system tray properties in BSP iview.

This was identitified, when we set the checks boxes for Internet options >>> Advanced >>> Dispaly a notification about http scripring error and show user friendly messages.

Hence, the window for access denied has prompted and under this....

it was poiting to message : sap system tray for BSP iview property with complete URL addresses for access denied.

Thanks for your help and valuable inputs.

Regards,

Anil Kumar

raja_thangamani
Active Contributor
0 Kudos

If your issue is resolved, please close the thread.

Raja T

Answers (1)

Answers (1)

raja_thangamani
Active Contributor
0 Kudos

Did you check the checkbox "Support Portal Integration" in BSP application Property tab?

Raja T

Former Member
0 Kudos

Hi Raja,

Thanks for your fast reply and responses. I checked the application and the option for Support Portal integration is being checked.

I suspect there might be any setting at browser level to allow this content run properly.

Please share your experiences. thanks for your time and valuable inputs.

Kind Regards,

Anil Kumar.