BW----List of logged on users in the Portal

Description : This code snippet gives the list of logged on users in the portal using Webdynpro for JAVA

Required jar files for this code snippet
-> webdynpro_services.jar located at <plugins folder>/com.sap.tc.webdynpro.runtime/lib
-> com.sap.security.api.jar located at <plugins folder>/com.sap.security/lib

import com.sap.tc.webdynpro.services.sal.um.api.IWDClientUser;
import com.sap.tc.webdynpro.services.sal.um.api.WDClientUser;

IWDClientUser currentUsers[] = WDClientUser.getClientUsers();
//Displaying the count of logged on users
wdComponentAPI.getMessageManager().reportSuccess("Number of logged on Users in the portal"+currentUsers.length);
for(int i = 0; i < currentUsers.length; i++)
{
if(currentUsers[i].getSAPUser() != null)
{
//Displaying the logged on users;
wdComponentAPI.getMessageManager().reportSuccess("User - "+currentUsers[i].getSAPUser().getUniqueName());
}
}
Note: I used reportSuccess statement to show the output, instead you can bind the list of users to a node and show in the Table
 

你可能感兴趣的:(java,list,table,import,plugins,output)