cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Logon Page in 7.3

Soumya
Active Participant
0 Kudos


Hi Experts,

Need your guidance in Logon Page customisation.

We have a customised logon page, which has a extra input field visible based on the URL, the portal is being accessed by.

Code:

boolean isExtURL = LocationAccessCheck.isExternalURL(request.getRequestURL().toString());

The "LocationAccessCheck" is a java file which does the camparison of the url part after "//" with "userfriendlyurl.com" It never considers the protocol part.

The value - true / false determines whether the field is visible or not.

The code was / is working fine in http protocol - http://<userfriendlyurl.com>

But now https has been implemented and the URL is https://<userfriendlyurl.com> and this boolean value is never getting to TRUE. Hence the custom field is never getting visible.

The changes are done in logonPage.jsp. Please advise.

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

Soumya
Active Participant
0 Kudos

SAP Note - 1578040 has the solution.

Identical changes have to be done in logonPage.jsp and certLogonPage.jsp.

https refers to certLogonPage.jsp while generating logon screen.

https refers to logonPage.jsp

Customizing EP 7.31 custom logon page : works i... | SCN - is helpful.

Thanks

Soumya
Active Participant
0 Kudos

With reference to: , could somebody help please.