Loading IBM Resource adaptor mqjbnd.so in weblogic 11

Hi,
  We are trying to use IBM resource adaptor with weblogic 11 for MQ integration. The environment is 64 bit. In AIX environment, an error is occurring that mqjbnd native library not found. mqjbnd is a .so file extension. Is there any specific way to load .so file in weblogic? we have tried giving the path in weblogic startup script and also putting it in domain lib folder. but it is not working. Please suggest how this .so file can be loaded in weblogic. Thanks.

they use classloaders. it's too large a subject to
really get into here, but google "java classloaders"
for more info. a very handy technique to knowA quick google search didnot give any satisfactory results. Still trying..
Are you saying classes can be loaded remotely too?
Bcos, in the case mentioned above, "com.ibm.mq" classes need not exist anywhere on the local machine
Message was edited by:
raeeskader

Similar Messages

  • Restricting Delegate Classloading for Resource Adaptor

    I have an EAR application contains multilple EJB's and single Resource Adaptor. My EJB depends on some JARs which are under lib directory.
    Now the problem is that I have a JAR abc.jar which are present under my my.ear/lib directory as well as under my Resource Adaptor i.e. my.ear/plugin-ra.rar#abc.jar, both are same but I want my Resource Adaptor to use the one which is inside my my.ear/plugin-ra.rar instead of one under my.ear/lib as this JAR loads my plugin present under Resource Adaptor.
    Is there anyway I can configure my RA to use delegate=false at class loading using Application Server specific deployment descriptors, as this behaivour differs from each Application Server. This is currently working fine on jBoss 4.2.3GA without any configurations but fails on Glassfish3.0.1, WebSphere7 and WebLogic10.3.3.
    Your comments and help will be appreciated.
    Thanks,
    SJunejo

    if you enable enable-global-access-to-classes to true in weblogic-ra.xml, all classes inside RAR will be loaded in a classloader which is parent of all ear appliactions; if set to false, all classes inside RAR by default will be loaded by a sub-classloader of ear.
    jars in EAR\lib are always loaded by EAR's classloader.
    Put same jar in multiple places is not good practice any way.
    My suggestion is to re-arrange your ear/rar to always just keep one copy of each jar.

  • Version information for java  resource adaptor

    Hi,
    Iam developing a resource adaptor(RAR). I have deployed my RAR on app server. My problem is that i want to provide version information of my RAR. One way is that i do the same in log files which iam doing presently. Problem is that logging is disabled in most production environment due to performance reasons.
    Otherway is, instead of usual .log file, i write the version information in some .config file which I can create when my adaptor is loaded. Problem with this approach is that i can have mutiple RAR deployed on same app server connected to different instances of EIS. If app server has only single class loader, then this will be a problem as the RAR which is loaded later will override the previous info as only one copy of the file is created.
    Can anyone suggest me a possible way.
    Ashish

    There is noy way for you to write a simple message to the app server log file when the RAR is inited stating the version of the RAR? You also mentioned dumping the RAR version to a file. Why can't you simply write the RAR version to a unique file name by adding a date stamp or some other unique identifier so you don't overwrite the previous file? Maybe I'm missing something.

  • Error in doing container managed sign on with Resource Adaptor

    Hi,
    I have developed a Resource Adaptor. I have written a jsp file using which I want to do container managed sign on. I have followed all the steps given on bea site.
    http://e-docs.bea.com/wls/docs81/secmanage/credential_maps.html#1100282
    I have created a user in default security realm. After that I deployed my Resource Adaptor file. I defined the credential mapping for this RA with user name defined in realm & EIS user name & password. I have not defined any security role & policy for this RA.
    When I deploy my web application which consist of single jsp & web.xml , I get the following error.
    <Sep 10, 02004 12:43.29.890 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : FN_IS_SpiManagedConnectionFactory: createManagedConnection: Entered into the method.
    <Sep 10, 02004 12:43.29.906 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : javax.resource.ResourceException: : Invalid arguments passed .
    <Sep 10, 02004 12:43.29.921 PM> : ExecuteThread: '13' for queue: 'weblogic.kernel.Default' : javax.resource.ResourceException: : Invalid arguments passed .
    This simply means that my Subject & ConnectionRequestInfo are null in createManagedConnectionFactory.
    When i define a security role & policy for my RA, I get the following error.
    <Sep 10, 2004 4:58:29 PM GMT+05:30> <Warning> <Connector> <BEA-190064> <Access has been denied to ISRA_ISCF - Application: while reserving a connection.>
    <Sep 10, 02004 4:58.29.428 PM> : ExecuteThread: '14' for queue: 'weblogic.kernel.Default' : javax.resource.spi.Applica
    ionServerInternalException: Access to resource adapterISRA_ISCFhas been denied.
    ResourceException ecnountered
    javax.resource.spi.ApplicationServerInternalException: Access to resource adapterISRA_ISCFhas been denied.
    at weblogic.connector.common.internal.ConnectionPoolManager.getConnection(ConnectionPoolManager.java:654)
    at weblogic.connector.common.internal.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:106)
    at com.filenet.is.ra.cci.FN_IS_CciConnectionFactory.getConnection(Unknown Source)
    here is my jsp code.
    try
                   ConnectionFactory connectionFactory = null;
                   Connection connection = null;
                   //Get the InitialContextFactory
                   Context context = new InitialContext();
                   //Perform JNDI Lookup
                   connectionFactory =(ConnectionFactory)context.lookup ("ISCF");
                   try
                        //ConnectionSpec connectionSpec = new FN_IS_CciConnectionSpec("SysAdmin", "camelot");
                        //connection = connectionFactory.getConnection(connectionSpec);
                        connection = connectionFactory.getConnection();
                        System.out.println("getConnection successful");
                   catch(ResourceException re)
                        System.out.println("ResourceException ecnountered");
                        re.printStackTrace();
                   catch(Exception re)
                        System.out.println("Exception ecnountered");
                        re.printStackTrace();
                   System.out.println("connection created");
                   FN_IS_CciInteractionSpec interactionSpec = new FN_IS_CciInteractionSpec();
                   interactionSpec.setFunctionName("GetWorkspaces");
                   RecordFactory recordFactory = connectionFactory.getRecordFactory();
                   MappedRecord mappedRecord = recordFactory.createMappedRecord("blank");
                   Interaction interaction = connection.createInteraction();
                   //Execute the interaction
                   IndexedRecord indexedRecord = (IndexedRecord)interaction.execute(interactionSpec, mappedRecord);
                   ListIterator list = indexedRecord.listIterator();
                   while (list.hasNext())
                        System.out.println((String)list.next() + "<br>");
                   System.out.println("Done<br>");
              catch (Exception e)
                   e.printStackTrace();
                   System.out.println(" Message = " + e.getMessage());
                   System.out.println(" toString = " + e.toString());
    here iam doing lookup of the connection factory & calling getConnection() method & simply executing an interaction.
    Can anyone help me what could be the possible cause of the problem.

    You might want to post this query to one of the websphere forums.
    - Binod.

  • OpenMQ resource adaptor and OC4J

    Anyone got this to work? I get
    oracle.oc4j.admin.jmx.shared.exceptions.JMXException: Unable to get handle of descriptor information to determining EISWhen it tries to start the Adaptor.

    Hmm. OC4J seems to load the Resource Addapter (imqsra.rar) OK now. However when my test program tries to get a TopicConnection I get a thoroughly uniformative exception:
    08/05/20 08:06:50 WARNING: DeployerRunnable.run com_sun_messaging_jms_ra_ConnectionAdapter_Proxyoracle.oc4j.admin.internal.DeployerException: INFO: MQJMSRA_MC1101: constructor:Created mcId=3:xacId=6841559394539092224:Using xacf config={imqOverrideJMSPriority=false, imqConsumerFlowLimit=1000, imqOverrideJMSExpiration=false, imqAddressListIterations=1, imqLoadMaxToServerSession=true, imqConnectionType=TCP, imqPingInterval=30, imqSetJMSXUserID=false, imqConfiguredClientID=, imqSSLProviderClassname=com.sun.net.ssl.internal.ssl.Provider, imqJMSDeliveryMode=PERSISTENT, imqConnectionFlowLimit=1000, imqConnectionURL=http://localhost/imq/tunnel, imqBrokerServiceName=, imqJMSPriority=4, imqBrokerHostName=localhost, imqJMSExpiration=0, imqAckOnProduce=, imqEnableSharedClientID=false, imqAckTimeout=0, imqAckOnAcknowledge=, imqConsumerFlowThreshold=50, imqDefaultPassword=guest, imqQueueBrowserMaxMessagesPerRetrieve=1000, imqDefaultUsername=guest, imqReconnectEnabled=false, imqConnectionFlowCount=100, imqAddressListBehavior=PRIORITY, imqReconnectAttempts=6, imqSetJMSXAppID=false, imqConnectionHandler=com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler, imqSetJMSXRcvTimestamp=false, imqBrokerServicePort=0, imqDisableSetClientID=false, imqSetJMSXConsumerTXID=false, imqOverrideJMSDeliveryMode=false, imqBrokerHostPort=7676, imqQueueBrowserRetrieveTimeout=60000, imqSetJMSXProducerTXID=false, imqSSLIsHostTrusted=false, imqConnectionFlowLimitEnabled=false, imqReconnectInterval=5000, imqAddressList=mq://loki:7676/jms, imqOverrideJMSHeadersToTemporaryDestinations=false}
    08/05/20 08:20:35 oracle.oc4j.admin.internal.DeployerException: com_sun_messaging_jms_ra_ConnectionAdapter_Proxy
    08/05/20 08:20:35       at com.sun.messaging.jms.ra.ConnectionFactoryAdapter._allocateTopicConnection(ConnectionFactoryAdapter.java:295)
    08/05/20 08:20:35       at com.sun.messaging.jms.ra.ConnectionFactoryAdapter.createTopicConnection(ConnectionFactoryAdapter.java:282)
    08/05/20 08:20:35       at com.sun.messaging.jms.ra.ConnectionFactoryAdapter.createTopicConnection(ConnectionFactoryAdapter.java:264)
    08/05/20 08:20:35       at test.MessageListener.getConnection(MessageListener.java:39)
    08/05/20 08:20:35       at test.MessageListener.contextInitialized(MessageListener.java:56)
    08/05/20 08:20:35       at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1130)
    08/05/20 08:20:35       at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:738)
    08/05/20 08:20:35       at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    08/05/20 08:20:35       at com.evermind.server.Application.getHttpApplication(Application.java:545)
    08/05/20 08:20:35       at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
    08/05/20 08:20:35       at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1909)
    08/05/20 08:20:35       at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1606)
    08/05/20 08:20:35       at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    08/05/20 08:20:35       at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    08/05/20 08:20:35       at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    08/05/20 08:20:35       at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    08/05/20 08:20:35       at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    08/05/20 08:20:35       at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    08/05/20 08:20:35       at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    08/05/20 08:20:35       at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    08/05/20 08:20:35       at java.lang.Thread.run(Thread.java:595)
    08/05/20 08:20:35 WARNING: DeployerRunnable.run com_sun_messaging_jms_ra_ConnectionAdapter_Proxyoracle.oc4j.admin.internal.DeployerException: com_sun_messaging_jms_ra_ConnectionAdapter_Proxy
            at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
            at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
            at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
            at java.lang.Thread.run(Thread.java:595)Set up is without connection pool.

  • An Error Message when loading a Resource.properties File

    Hi, all:
    I tried to load a Resources.properties file in a JSP page:
    <%@ page import="java.util.*" %>
    <%
    ResourceBundle rb = null;
    try {
    rb = ResourceBundle.getBundle("Resources");
    } catch (MissingResourceException e) {
    rb = null;
    throw new RuntimeException("The resource is missing!");
    %>
    Test
    When I run it, I got the following error message:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    Any ideas what's going on here?
    Thanks
    Jeff

    Hi,
    I had a similar error just a few days ago. I could solve it by replicating the datasources again and activating the transfer structures via rs_transtru_activate_all. After that the load went fine.
    regards
    Siggi

  • How to Load the Resource Master for Generic Resources by Department?

    We are using P6 enterprise version in our company having a central database.
    Q1a.) We set the Activities view > Resource Usage Spreadsheet > Select View 1) By Resource OR 2) By Role.
    The result is the spreadsheet presents the Remaining Early Units by Resource OR by Role. Other spreadsheets behave the same way. Is it possible to view the total Remaining Early Units and not have it separated by Resource OR Role?
    Q1b.) We would like to find out the recommended structure to load Generic Resources (ie. professional and trades such as Civil Engineer, Mechanical Engineer, Carpenter, Welder etc.) for each Department (ie. 8221, 9362, 8524 etc.) into the Resource Library. Example: we would like to load Civil Engineer once for departments 8221, 9362, 8524, load Welder once for departments 9362, 8524, etc.
    We contacted Primavera Support and they pointed us to use Roles.
    Thank-you for any suggestions you may have.

    i think you could try to model it like this:
    - define a single "mech eng" role in the role tree (not too deep or even a flat list). no dept's mentioned here. keep the role tree strictly "speciality" oriented or anyway according to their technical classification.
    Role ID     Role Name
    Engr     Engineer
    .......Engr.SE     Structural Engineer
    .......Engr.EE     Electrical Engineer
    .......Engr.ME     Mechanical Engineer
    - define any number of resources (either individuals, or teams or even a combination of the two) in the resuorce tree.
    1 eng with a capacity of 8h/d, a fixed formation (team) regardless of the number of individuals would still have a capacity of 8h/d if they can only accomplish tasks together. if assigning a team of 5 means means faster for fixed workload or more for fixed duration then define a fixed team (again if this is the case) as a single resource with a capacity of 40h/d or simply define and assign the required number of individual eng's 8h/d max each. use activity duration type to switch between duration driving and non-driving resource usage.
    e.g.
    Resource ID     Resource Name     Resource Type     Default Units / Time     Max Units/Time     Primary Role     Roles
    .......*ElecEng     Electrical Engineers*     Labor     20.00h/d     20.00h/d     Electrical Engineer     Electrical Engineer
    ..............EE1BARBW     Barb Wire, Senior Electrical Engineer     Labor     10.00h/d     10.00h/d     Electrical Engineer     Electrical Engineer, Project AQ
    ..............EE2BILLS     Bill Sanders, Junior Electrical Engineer     Labor     10.00h/d     10.00h/d     Electrical Engineer     Electrical Engineer, Consultant
    .......*MechEng     Mechanical Engineers*     Labor     10.00h/d     0.00h/d     Mechanical Engineer     Mechanical Engineer
    ..............MechEng T1     mech eng team 1     Labor     8.00h/d     8.00h/d     Mechanical Engineer     Mechanical Engineer
    ..............MechEng T2     mech eng team 1     Labor     16.00h/d     16.00h/d     Mechanical Engineer     Mechanical Engineer
    .....................MechEng T2.1     ME 2.1     Labor     8.00h/d     8.00h/d     Mechanical Engineer     Mechanical Engineer, Consultant
    .....................MechEng T2.2     ME 2.2     Labor     8.00h/d     8.00h/d     Mechanical Engineer     Mechanical Engineer
    - create the necessary res to role associations. one employee or team (i.e. res) can be linked to one primary qualification and several other proffesions or specialities (i.e. roles)     
    - when assigning to activities, if a particular individual/ team is required assign directly the res. select several activities requiring mech eng, select 1 or several mech eng's and assign them (use resource security to limit user's access to certain res nodes).
    - if any res with a particular role can perform the task, assign the role. later on if you decide for a res, you can assign a particular resource through the previously assigned role. decide applicable rates and h/d between role and res.
    - you can track allocation in spreadsheets and histograms by resource or role (or by activity for both). if individual res have clear capacities, for roles you can chose between custon role limits (manual) and system calculated for each role based on res having that as primary qualification (user pref)
    - you can report by activity / WBS / project / portfolio (tracking)
    - solve over-allocation by levelling, by switching between res for the same role, etc
    - optimise duration vs. load and/or # of res/roles (and viceversa)
    Edited by: Tibi on Oct 9, 2009 9:40 PM
    Edited by: Tibi on Oct 9, 2009 9:59 PM

  • RFC calls with SAP JCO and IBM resource adapter for SAP - basic tuning

    Hi experts,
    we are working on a java portal connected to a backend system SAP by calling RFCs.
    On our first integration tests, it appears to be quite slow fetching data from SAP by calling the remote functions from the custom portal. We are using SAP JCo 3.0.6 and IBM resource adapter for SAP 7.0.0.3 to integrate SAP with our portal.
    Is there any basic tuning to achieve to improve performances or any hint of where to tune in SAP ?
    Any help would be greatly appreciated.
    Thanks a lot,
    Jamal

    Hi Jamal,
    I understand you have already checked performance issues in the SAP Server. We had some problems with certain RFC calls and it turned out to be a badly developed ABAP sentence.
    I'd recommend you to use httpwatch or another tool to check the response times from the browser, so you can point accurately where the is.
    Regards
    Francisco

  • Help!  FCP X freezes at loading compressor resources

    I purchased compressor 4 and it is installed in my applications folder.  I went to restart FCP X and the splash screen for FCP X stays on the screen saying "loading compressor resources" and won't go away.  I can quit the program via Command-Q, but am unable to do anything else.  I have rebooted, wiped .plist files, but no luck...any ideas?

    I have FCP7 installed.  If that is the problem, then I am stuck with it for now.  I have a huge amount of legacy projects, which I need to keep. 
    It is such a strange error, because everything seems to load, the elements and projects are all showing and just at the end it seems to lose contact with the external hard drive, which is a WD firewire 800.  It actually still has a hold on it, because I can't dismount it at that point, because it says it is in use by FCPX.  I haven't tried to see if I connect it with usb the problem might go away, although I saw that as a suggestion. 
    Actually in its latest reincarnation, FCPX doesn't hang, it just says there are no projects or elements because the hard drive has disappeared from its list.  It sometimes works to then force quit fcpx, and tell it not to save the window settings and then restart it.  It seems almost random as to if it loads properly or not.  Doesn't matter if I am running 10.6.8 or 10.7. whatever.  It is not so uncommon a problem, because there are a lot of posts about it.  I haven't found the definitive post with a fix though.
    I am now thinking of duplicating the project to a differnt external drive and then dismounting the external drive I have been using. 

  • Load balancing not happening on UDQ in weblogic 11g

    Hi Team,
    I have a 2 clusters with two managed servers each on different machines
    Cluster A(On machine 1)
    Managed server A (on machine 1)
    Managed server B(on machine 2)
    I have created 2 JMS servers
    JMS Server A on Managed server A
    JMS Server Bon Managed server B
    and a JMS module on Cluster A
    and JMS connection factory targeted on Cluster A and a uniform distributed queue targeted on JMS server A and JMS Server B
    But load balancing is not happening only one managed server is loaded at a time.. Using weblogic 11(aka 10.2.3)
    Tried disabling server affinity but it did not help ...Can any one please let me know how to fix this?

    Hi,
    When you say load is not balanced and reaching only one managed server.
    I assume both the UDD's targets are reachable and are visible in JNDI tree ?
    also , what kind of application is it - i,e is it clustered app that would be seen as consumers on each UDQ ?
    take a look at the app and check if its clusterred . along with that also take a look at the number of consumers on UDQ instances.
    Let me know what you find.
    Sri

  • IBM Cognos 8 BI Integration with Weblogic portal

    Hi,
    In our project we need to integrate IBM Cognos 8 BI portlets with Weblogic portal 10.3.
    1. How to integrate Cognos ?
    2. How to enable SSO between Portals & Cognos? Cognos should use the portal users credentials for authentication
    Please share me some useful links and sample code to proceed.
    Thanks & regards,
    Rajesh

    Basically I am saying that your options are
    1. Screenscraping the apps into portlets
    2. Using SSO to login to the apps, but keepin them separate
    3. Using Web Services to consume parts of the apps and exposing those as portlets
    For our application we do 2 and 3. In many cases we just create portlets that represents views into other j2ee apps. When the users click on something, we launch the j2ee app in a popup browser. The users are already signed on, and taken to a specific detail page, add page or something within the app directly.
    Hope this helps.
    Kunal

  • Reconciliation / Load from Resource

    Hey all,
    I have two LDAP resources.
    LDAP1 I can reconcile OK
    LDAP2 reconciles and IDM accounts created but all the users are deleted from the resource, the same is true if use the 'Load from resource' option.
    Both are using identical per-account workflows, userform etc.
    Any ideas out there gratefully received.
    Phil

    Hi boomers,
    I have similer requirement. If you have done it. Please throw some light on it.

  • Load servlet on startup in a cluster WebLogic Server 6.1

    I try to load my servlet on startup of Bea WebLogic Server 6.1 (SP 3) cluster.
              This load failed.
              Can you help me?
              Tank's!
              

    HOw did you specified the load-on-startup? and what error you get
              upon startup/deployment time?
              Kumar
              Giulia Esposito wrote:
              > I try to load my servlet on startup of Bea WebLogic Server 6.1 (SP 3) cluster.
              > This load failed.
              >
              > Can you help me?
              >
              > Tank's!
              >
              

  • Load from Resource in IDM 5.0 SP5

    I have installed IDM 5.0, SP 5, with Sun Java System Application Server 8. I have 2 resources, one LDAP (Sun Directory Server 5.2, SP 3) and one Active Directory.
    I have just completed a 'Load from Resource', and loaded user information from the LDAP resource, which created 43 thousand or so user objects in IDM. I have 2 questions:
    1. The load took a loooong time - 1 day, 4 hours. Is this normal? I am currently loading information for approximately 19 thousand accounts from the AD resource, which looks like it will take a similar amount of time per account (still running at the moment).
    2. Now, when I select the 'Accounts' tab in the admin console when logged in as configurator, the list of accounts never appears. The browser session (mozilla) will die after about 2 minutes. The only way I can view user account information is to select the stop button in the browser immediately after selecting the 'Accounts' tab, and then select the 'Find Users' button on the left hand pane.

    The load of the AD accounts (21,000) has now finished. This took 23 hours!!
    I have analyzed, to some extent, the load process, from the LDAP perspective, and what appears to be happening is:
    1. IDM queries LDAP for the number of account entries defined by the block count (1000 in my case) in the IDM resource definition. I suspect this is being done with an ldapsearch, perhaps with the -x and -S options, as the LDAP log details a query, then a sort on uid EVERY time the 1000 entries are retrieved. This, however, is only a minor part of the issue, as the sort takes about 5 minutes on the LDAP server. This would only account for about 200 minutes of my 1day, 4 hours.
    2. After the block of 1000 is retrieved, IDM seems to go off into limbo for about 1 hour each time, with the appserverDAS process consuming about 30-40% CPU. I have an oracle database for the indexes, and that seems to be pretty relaxed during this time - there is some activity, but not in any real anger like the application server.
    I can't analyze what's going on with the AD load, as I am not the custodian of the AD servers, and prefer to know as little as possible about them ;-)
    I suppose this is not too much of a problem, as I will only performing the 'load from resource' once when we go into production, but I am concerned about the impact of a reconcilliation. I will start one immediately, and respond with itming when it finishes.
    As for the list of users, how can I stop the account list from being the first thing accessed when I select the 'Accounts' tab? I would prefer not to have to import all accounts into a separate org just to facilitate access to the interface.
    BTW - to be consistent with the documentation, shouldn't the references to 'Accounts' within the interface really read 'Users'. As I read the documentation, a 'User' is an IDM object which may (or may not) have resource 'Accounts'. If they are to be referred to as 'Accounts', then the two Users 'Configurator' and 'Administrator' should not appear there, as they do not, by default, have a resource equivalent. Or maybe I'm just a pedant :-)
    Anyway, thanks for any help you can provide.

  • Assign loading / handling resource to location through ABAP program

    Hello Experts,
    I have a requirement where by I have to assign loading / unloading resource to a location through ABAP program. Need to assign the resource in Resources Tab in TP/VS section. Is there any function module or any method available to this?
    Responses highly appreciated. Thanks in advance
    Regards
    Sandeep Patil

    Hi all
       I have the same requirement for the end user.
      Is it a good idea update active Table of ODS behind an ABAP Program Z?, I understood that you can't have log history... and you can't delete request.. because you will not generate this..
      We actually have one ODS that contain invoices... all the fields that contain the invoice..like material, vendor, etc.. was updated according to ABAp programa that we specify on start routine, each time that we need to update these fields we need to unload fros ODS to PSA and load again with dtp...
      Let me copy more details:
    Actually, we have an DSO that is updated each week, we load the information into different PSA, all of this PSA pass to ODS for one info source and transformation rule, in this transformation rule we have an ABAP rotine that have some validation and assign some values for different fields.
    In this procees everthing look fine, actually If we need to update this information from DSO (that was loaded and the user need to update some fields) we need to download information from DSO to PSA and load again with DTP process, this was fine.
    Actually the user want that this kind of changes will be apply on line, this mean that for example all the invoices that I have actually loaded into DSO need to be analyzed and update according new parameters that they specify in other tables.
    The DSO is standard, and contain three basis tables, active, delta, modified.
    My question is: Is it possible update directly table of active records of DSO with one Z program?? is it a good idea?, We want to discard the option of unload and load information each time that they need to update certain field that are calculated or updated whit the transformation rule or load.
    Than you for your help.

Maybe you are looking for

  • Indesign CS6 Mac: Words in Italic Drop/Disappear

    What's up Group! Wondering if anyone else has seen this as we're troubleshooting a few things on our end: We have two IDCS6 (8.0.1) jobs by two different designers, on two different computers (one 10.7.5 and the other in 10.6.8), with word files from

  • I would like to buy and iPhone without a contract.

    I want to buy an iPhone for my wife, who wants and deserves one. To keep phone bills low, I would like to use it with a google phone number, and power it only with a wifi hotspot. Can just buy and iphone and use just the wifi, or is there some kind o

  • SAFARI WILL NOT LOAD IMAGES

    On my laptop safari works fine but on my G5 safari now will not load images or has a ? where images should be any help out there please

  • How to select paths with the same stroke width

    I would like to know how to select all the paths inside a document whose stroke width are equal to 0.361 points I will appreciate any help.

  • Entry was not processed because there is no changing parameter available

    Hi, I'm new to SCM area. Started a development to update the SNP Planner Codes to the Product Master with some code. For this purpose, I'm using the standard bapi - BAPI_PRDSRVAPS_SAVEMULTI2. To use this, according to the documentation of the BAPI, I