Post Author: jason_west@bmc.com
CA Forum: JAVA
I have attempted several derivations of this code:
IPluginMgr boPluginMgr;IPluginInfo boPluginInfo;IInfoObjects boInfoObjects;IInfoObject boNewUser; // Retrieve the user pluginboPluginMgr = iStore.getPluginMgr( );boPluginInfo = boPluginMgr.getPluginInfo("CrystalEnterprise.User"); // Create a new infoobject collectionboInfoObjects = iStore.newInfoObjectCollection( ); // Add a new userboNewUser = boInfoObjects.add(boPluginInfo);
Any suggestions?