In this article, I will take you through with creating the custom login module for SAP NetWeaver Portal 7.5 version. Though you can find the details of the process on the help.sap.com but here you will get to know each step in more detailed and exemplary way.
Reason is, when I tried to search for myself, there were no such blog available (or at-least I could not find), so here is the one which would be useful for all.
Pre-requisites:
Since we will be creating and deploying custom login module (hereinafter referred to as clm) for Portal 7.5, we will be using the below combinations
Java SE Development Kit 8u201 (64 bit) (any other version will also work)
Download link: https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Set JAVA_HOME environment variable
jar file (64 bit)
Download link: https://launchpad.support.sap.com/#/softwarecenter/search/java%2520connector visit this link and scroll until you find below mentioned. Obviously, you will need S Id and necessary download authorizations.
Unzip it and then within the unzipped folder go to javadoc -> intro.html. Open this file and then click on Installation link. There you will see all settings need to perform. Will look something like below.
Once environment variables are set as per above link, start command prompt and run following commands.
cd\
echo %classpath% (this should return you path of your sapjco3.jar file)
java -version (you should see that java is properly set now if below comes)
NWDS 7.5 SP 14 (any other SP level will also work)
Download link: https://wiki.scn.sap.com/wiki/display/Java/NWDS+Download+Links visit this link and bottom you will find 750 link. Obviously, you will need S Id and necessary download authorizations.
Building Code for Custom Login Module:
- Open Developer Studio
- Windows -> Preferences -> SAP AS Java
Add the SAP system here where you would like your code to deploy. Then click on ‘Apply and Close’.
- Windows -> Preferences -> Installed JREs. Check here if developer studio is pointing to correct JRE.
- Windows -> Preferences -> Build Path -> Classpath Variables. Check here if sapjco3.jar is referenced here. If not, add like below.
- Go to NWDI Under Local Development -> My Components, create 3 development components of type Java, External Library, Enterprise Archive
In my case,
cpbwloginmodule -> is the java dc project
cpbwextlib -> is the external library dc project
cebwear -> is the enterprise archive dc project
- Working on cpbwextlib
- Add the below listed jar files to the libraries folder, build the project afterwards.com.sap.security_2.0.0.120131113424.jariaik_jce.jarsap.com~tc~je~clientlib~impl.jarsap.com~tc~logging~java~impl.jarsapjco3.jarservlet-api-2.5.jar
- Go to Component Properties -> Public Parts tab and create 2 new public parts. One for assembly and another on for compilation.
- Right click on assembly public part and select Manage Entities. Add all jar files to it. Repeat the same step for compile public part as well. You should see something like below. Also, set permissions as Unrestricted Access for both public parts.
- Go to Permissions tab and set the Entity Forwarding Allowed checkbox as selected.
- Build the dc again & done with this dc.
- Work on cpbwloginmodule
- Go to Component Properties -> Dependencies tab and add cpbwextlib (External Library project) as dependency to this project.
- Within the project, create a java class which will hold all the code for your custom login module. In my case, it is like below.Imp: You can keep any name of the java class.Tip: You can use any standard file and customize it for your purpose. This way you will save time to write all root methods which you will need not to touch normally.
- Build the project and then Export it as JAR file. You can create the JAR file within the project folder structure as below
- Your project structure will look like something like this afterwards. Build the project.
- Work on cpbwear
- Go to Component Properties -> Dependencies tab and add cpbwloginmodule (java project) as dependency to this project.
- Build the project. This will generate the ear file.
- Open the ear file using WinRar and add the jar and the xml file created within java project to this ear file.
- Deploy the ear file Imp: DO NOT BUILD the ear project again or else a new ear will be generated. You will lose jar file and xml file added. In case if you need to, you need to redo addition of these files every-time
Configuration
- Go to potal netweaver administrator (nwa) -> configuration -> Authentication and Single Sign-on
- Inside this, go to Authentication -> Login Modules. Search your custom login module either by using Display Name or Class Name which you have entered in the xml file.
- Below you will see the same options and values you have added in the xml file. So this confirms your custom login module has been deployed correctly.
- Now, go back to Components, select ticket and click on edit button.
- Add your newly created custom login module as shown below and set Flag as Optional. These flags and other module flags can be changed based on your requirements. Afterwards, click Save.
And that’s it. Your done with developing and configuring your custom login module. Try to login and see if all works as planned.
Troubleshooting
To see if your login module is working fine, you can go to Troubleshooting -> Logs and Traces -> Security Troubleshooting Wizard. There, select Authentication from the drop-down and start the diagnostics. Try to use your custom login module now. Once done, stop the diagnostics and see the error log. It will show all the required information.
In this blog, I have tried to be as explanatory as possible. Still, there could be more ways to do any specific action but this one works perfectly. Please do let me know in comments if you seek code help as well.