Mapping of AD ou's with idm org

Hello guys!
When i reconcile from AD i want the users to be created in the correct organization. For that i need to map the user AD ou with idm's organization.
Maybe i can do it messing up with acoounts[$(RESOUCE_NAME)].identity in the reconciliation user form?, splitting the identity and then taking the ou name from there?
Any ideas?
Thanks!

Hi,
I think i got this working to some extent, except the last part
I have the dn of the form for some users as:
uid=$accountId$,ou=xyz,ou=pqr,ou=abc,dc=home,dc=org
for someothers i have:
uid=accountid$, ou=mmm,ou=nnn,dc=home,dc=org
I have the put them under
Top:abc:pqr:xyz and Top:nnn:mmm respectively.
I have the followign code for this. however, there seems to be a problem and i'm not sure how to fix it
<Field name='ou1'>
<Expansion>
<remove>
<ref>accounts[Lighthouse].dn</ref>
<s>dc=home,dc=org</s>
</remove>
</Expansion>
</Field>
<Field name='split'>
<Expansion>
<split>
<ref>ou1</ref>
<s>,</s>
</split>
</Expansion>
</Field>
<Field name='org'>
<Expansion>
<contains>
<ref>split</ref>
<s>ou</s>
</contains>
<set name='org1'>
<ref>split</ref>
<i>2</i>
</set>
<set name='org2'>
<concat>
<ref>split</ref>
<i>3</i>
<s>:</s>
<ref>org1</ref>
</concat>
</set>
<set name='checknull'>
<ref>split</ref>
<i>4</i>
</set>
<set name='org3'>
<cond>
<notnull><ref>checknull</ref></notnull>
<concat>
<ref>split</ref>
<i>4</i>
<s>:</s>
<ref>org2</ref>
</concat>
</cond>
<ref>org2</ref>
</set>
</Expansion>
</Field>
<Field name='waveset.organization'>
<concat>
<s>Top:</s>
<ref>org</ref>
</concat>
</Field>
Thanks in advance for your help,

Similar Messages

  • Error creating bean with name 'org.springframework.dao.annotation.Persisten

    Hello
    I am using Hibernate 4, Spring 3 , JSF 2.0 and Weblogic 10.3.6
    When I start weblogic server and server starts successfully, however whenever it starts publishing application, I am getting the following exception.
    Error creating bean with name
    'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor#0'
      defined in ServletContext resource [/WEB-INF/applicationContext.xml]:
      Initialization of bean failed; nested exception is
      org.springframework.beans.factory.BeanCreationException:
        Caused By: org.springframework.beans.factory.BeanCreationException: Error creating
       bean with name 'entityManagerFactory'defined in ServletContext resource
       [/WEB-INF/applicationContext.xml]: Invocation of init method failed;
       nested exception is java.lang.NoSuchMethodError:
       javax.persistence.spi.PersistenceUnitInfo.getSharedCacheMode()Ljavax/persistence/
       SharedCacheMode;
    Caused By: java.lang.NoSuchMethodError:
    javax.persistence.spi.PersistenceUnitInfo.getSharedCacheMode()
    Ljavax/persistence /SharedCacheMode;    at
    org.hibernate.ejb.util.LogHelper.logPersistenceUnitInfo(LogHelper.java:38)  at
    org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:525)
    at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:72)     at  org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManager I have the following in applicationContext.xml
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">     
        <context:component-scan base-package="net.test" />
        <!-- Data Source Declaration -->
        <bean id="DataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
            destroy-method="close">
            <property name="driverClass" value="oracle.jdbc" />
            <property name="jdbcUrl" value="jdbc:oracle:thin:@server:1521:DB" />
            <property name="user" value="scott" />
            <property name="password" value="tiger" />
            <property name="maxPoolSize" value="10" />
            <property name="maxStatements" value="0" />
            <property name="minPoolSize" value="5" />
        </bean>
        <bean
            class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
        <!-- JPA Entity Manager Factory -->
        <bean id="entityManagerFactory"
            class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
            <property name="dataSource" ref="DataSource" />
            <property name="packagesToScan" value="net.test.entity" />
            <property name="jpaVendorAdapter">
                <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
                    <property name="showSql" value="true" />
                    <property name="generateDdl" value="false" />
                    <property name="databasePlatform" value="${jdbc.dialectClass}" />
                </bean>
            </property>
        </bean>
        <bean id="defaultLobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" />
        <!-- Session Factory Declaration -->
        <bean id="SessionFactory"
            class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="DataSource" />
            <property name="annotatedClasses">
                <list>
                    <value>net.test.entity.Department</value>
                    <value>net.test.entity.Employees</value>
                </list>
            </property>
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory
                    </prop>
                </props>
            </property>
        </bean>
        <!-- Enable the configuration of transactional behavior based on annotations -->
        <tx:annotation-driven transaction-manager="txManager" />
        <tx:annotation-driven transaction-manager="transactionManager" />
        <!-- Transaction Config -->
        <bean id="txManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="sessionFactory" ref="SessionFactory" />
        </bean>
        <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
            <property name="entityManagerFactory" ref="entityManagerFactory" />
        </bean>
        <context:annotation-config />   
        <bean id="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService">
            <property name="statisticsEnabled" value="true" />
            <property name="sessionFactory" value="#{entityManagerFactory.sessionFactory}" />
        </bean>
        <bean name="ehCacheManagerMBean"
            class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" />
        <bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean">
            <property name="locateExistingServerIfPossible" value="true" />
        </bean>   
        <bean id="jmxExporter" class="org.springframework.jmx.export.MBeanExporter"
            lazy-init="false">
            <property name="server" ref="mbeanServer" />
            <property name="registrationBehaviorName" value="REGISTRATION_REPLACE_EXISTING" />
            <property name="beans">
                <map>
                    <entry key="SpringBeans:name=hibernateStatisticsMBean"
                        value-ref="hibernateStatisticsMBean" />
                    <entry key="SpringBeans:name=ehCacheManagerMBean" value-ref="ehCacheManagerMBean" />
                </map>
            </property>
        </bean>
    </beans>
    pom.xml
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
              http://maven.apache.org/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>net.test</groupId>
        <artifactId>myappp</artifactId>
        <packaging>war</packaging>
        <version>1.0-SNAPSHOT</version>
        <name>myappp</name>
        <url>http://maven.apache.org</url>
        <repositories>
            <repository>
                <id>prime-repo</id>
                <name>PrimeFaces Maven Repository</name>
                <url>http://repository.primefaces.org</url>
                <layout>default</layout>
            </repository>
        </repositories>
        <properties>
            <spring.version>3.1.1.RELEASE</spring.version>
        </properties>
        <dependencies>
            <!-- Spring 3 dependencies -->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-tx</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-orm</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-test</artifactId>
                <version>${spring.version}</version>
            </dependency>
            <!-- JSF library -->
            <dependency>
                <groupId>com.sun.faces</groupId>
                <artifactId>jsf-api</artifactId>
                <version>2.1.6</version>
            </dependency>
            <dependency>
                <groupId>com.sun.faces</groupId>
                <artifactId>jsf-impl</artifactId>
                <version>2.1.6</version>
            </dependency>
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>jstl</artifactId>
                <version>1.2</version>
            </dependency>
            <!-- Primefaces library -->
            <dependency>
                <groupId>org.primefaces</groupId>
                <artifactId>primefaces</artifactId>
                <version>3.4.2</version>
            </dependency>
            <dependency>
                <groupId>org.primefaces.themes</groupId>
                <artifactId>afterwork</artifactId>
                <version>1.0.8</version>
            </dependency>
            <!-- Hibernate library -->
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-core</artifactId>
                <version>4.1.0.Final</version>
            </dependency>
            <dependency>
                <groupId>javassist</groupId>
                <artifactId>javassist</artifactId>
                <version>3.12.1.GA</version>
            </dependency>
            <dependency>
                <groupId>javax.inject</groupId>
                <artifactId>javax.inject</artifactId>
                <version>1</version>
            </dependency>
            <!-- Oracle Java Connector library -->
            <dependency>
                <groupId>com.oracle</groupId>
                <artifactId>ojdbc6</artifactId>
                <version>11.2.0.3</version>
            </dependency>
            <dependency>
                <groupId>c3p0</groupId>
                <artifactId>c3p0</artifactId>
                <version>0.9.1.2</version>
            </dependency>
            <!-- Log4j library -->
            <dependency>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
                <version>1.2.16</version>
            </dependency>
            <dependency>
                <groupId>org.testng</groupId>
                <artifactId>testng</artifactId>
                <version>6.4</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-jpamodelgen</artifactId>
                <version>1.2.0.Final</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-entitymanager</artifactId>
                <version>4.1.0.Final</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate.javax.persistence</groupId>
                <artifactId>hibernate-jpa-2.0-api</artifactId>
                <version>1.0.1.Final</version>
            </dependency>
            <dependency>
        <groupId>org.apache.myfaces.extensions.cdi.core</groupId>
        <artifactId>myfaces-extcdi-core-api</artifactId>
        <version>1.0.5</version>
        <scope>compile</scope>
    </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-ehcache</artifactId>
                <version>4.0.1.Final</version>
            </dependency>      
        </dependencies>
        <build>
            <resources>
                <resource>
                    <directory>src/main/resources</directory>
                </resource>
            </resources>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>             
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                        <compilerArgument>-proc:none</compilerArgument>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.bsc.maven</groupId>
                    <artifactId>maven-processor-plugin</artifactId>
                    <version>2.0.6</version>
                    <executions>
                        <execution>
                            <id>process</id>
                            <goals>
                                <goal>process</goal>
                            </goals>
                            <phase>generate-sources</phase>
                            <configuration>
                                <!-- source output directory -->
                                <outputDirectory>target/metamodel</outputDirectory>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </project>In Weblogic 10.3.6 I have enabled JPA2 support by adding the following in commEnv.cmd
    @rem Enable JPA 2.0 functionality on WebLogic Server
    set PRE_CLASSPATH=%BEA_HOME%\modules\javax.persistence_1.1.0.0_2-0.jar;
    %BEA_HOME%\modules\com.oracle.jpa2support_1.0.0.0_2-1.jarApplication which works on WLS 10.3.6 is http://download.oracle.com/otn/nt/middleware/11g/wls/1036/wls1036_dev.zip and the one which is not working is
    http://download.oracle.com/otn/nt/middleware/11g/wls/1036/wls1036_win32.exe.
    How can I resolve these errors and exceptions? Any help is highly appreciable.
    Thanks

    Looks like you might have a spelling error in your spring config, or are trying to set a read-only property. BdasInterfaceManagerImpl has been configured as having a method called setBdasInterfaceJdbcDao() : does it?
    By the way, we now know that you're writing code for JP Morgan - there's a slight risk that this could bite you in the @ss at some point (there are some malicious people around) you might want to take that into consideration next time!

  • ERROR: Cannot create authcontext with null org-Naming query failed  code:21

    I use OpenSSO Enterprise 8.0 Update 1 Patch1 Build 6.1(2009-June-9 12:56)
    I try to evaluate the Apache 2.2 web agent.
    It's been installed without errors, and both the OpenSSO and Apache server restarted.
    The agent profile's been created. Also, I use the default (OpenDS) configuration repository
    for OpenSSO, but an external (DSEE) user data directory.
    I think I did all the required steps with regards to both directories, since I don't see any error
    in the LDAP logs, each entry seems to be found as expected, the BIND operations are all
    successfull.
    Also, I use a sub-realm rather than the default top realm, and thus, I've modified the agent configuration
    (in the agent profile) so that the login URL is now ... /UI/Login?realm=myrealm
    When I try to access the Apache homepage, I get an error 500. The most recent OpenSSO server log file
    (...../opensso/debug/Authentication) contains the following message:
    ERROR: Cannot create authcontext with null org
    The most recent agent log file (....../apache22_agent/Agent_001/logs/debug/amAgent) has the following error:
    2009-07-07 17:08:11.992 Error 10513:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    I don't know what else I can do to debug this problem and find a solution. Any idea ?

    Thank you Shubba,
    With all available log details enabled, I now have the following messages on the agent side:
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 all: No value specified for key com.sun.identity.agents.config.profile.attribute.mapping, using default value .
    2009-07-09 10:14:51.731 Debug 5613:80149a50 NamingService: BaseService::doRequest(): Using server: http://portable.antibes.net:8080/opensso/namingservice.
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 NamingService:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <RequestSet vers="1.0" svcid="com.iplanet.am.naming" reqid="10">
    <Request><![CDATA[                                                                                                                      
      <NamingRequest vers="3.0" reqid="2" sessid=""AQIC5wM2LY4SfcyaGFgc5h9Y7/kpf4f//ml82oVfNlbWxQE=@AAJTSQACMDE=#"">                             <GetNamingProfile>                                                                                                                         </GetNamingProfile>                                                                                                                        </NamingRequest>]]> </Request>
    </RequestSet>
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest Request line: POST /opensso/namingservice HTTP/1.0
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Cookie and Headers =Host: portable.antibes.net
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Content-Length =Content-Length: 334
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Header Suffix =Accept: text/xml
    Content-Type: text/xml; charset=UTF-8
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Total chunks: 7.
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Sent 7 chunks.
    2009-07-09 10:14:51.728 Debug 5613:80149a50 NamingService: HTTP Status = 500 (Internal Server Error)
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading headers.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Server: Apache-Coyote/1.1
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Content-Type: text/html;charset=utf-8
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Date: Thu, 09 Jul 2009 08:14:51 GMT
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Connection: close
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading body content of length: 13830487939496281954
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 all: Connection::waitForReply(): returns with status success.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Completed processing the response with status: success
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: <html><head><title>Apache Tomcat/6.0.18 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException: AMSetupFilter.doFilter
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    com.iplanet.services.comm.server.PLLRequestServlet.doPost(PLLRequestServlet.java:134)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.18</h3></body></html>
    2009-07-09 10:14:51.729 Warning 5613:80149a50 NamingService: BaseService::doHttpPost() failed, HTTP error = 500
    2009-07-09 10:14:51.729 Debug 5613:80149a50 NamingService: NamingService()::getProfile() returning with error code HTTP error.
    2009-07-09 10:14:51.729 Error 5613:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    In my Tomcat server (OpenSSO server web container), I have the following errors:
    Jul 9, 2009 10:12:35 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 22746 ms
    [Fatal Error] :2:46: Element type "NamingRequest" must be followed by either attribute specifications, ">" or "/>".
    java.lang.NullPointerException
    at com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    at com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    at com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    at ...
    It seems like the problem comes from the couple of closing square brackets in the NamingRequest tag:
    </NamingRequest>]]>
    I don't know where it comes from, so if you've an idea I'd enjoy .
    Cheers,

  • CUA with HR-Org - How to assign systems for role

    Dear all,
    we are planning to use CUA with HR-Org assignment. Can please anyone explain to me how or where the system for the role comes from.
    I mean, normaly in SU01 -> Role Assignment I have in the first colum the system and in the second colum the role. It the role assigment come from HR-ORG there is always the local logical system in the system colum. This is not what we want.
    CUA is on Solution Manager, HR-ORG is replicated from R/3 HR Systeme and the user needs the roles in ECC production systeme.
    So how can we manage the system/role combination assignment?
    Thanks for any hints.
    Best regards
    Roman

    Hi,
    If I understand your problem you want to do role assignment from the HR-Org structure on a system that is using CUA.
    I have only managed this successfully when the CUA master is also the system with the HR-Org structure on it. Otherwise you have lots of issues with replicating data between systems. I did this for a UK council's SAP solution where we allocated all the roles from the HR system, including roles on ECC, SRM(EBP), CRM and BI - so it does work.
    PO13 on the system with the org. structure will only allow you to allocate a role that exists on that system, but if the roles that you are allocating are composite roles that include single roles on other systems, you can achieve this sort of business role allocation without having to go the IdM route.
    Darren Hague (no relation) gave a presentation at SAP Tech Ed 07 on such a scenario, that explains how the composites would be set up far better than I can, but in essence you use the CUA connectivity and the rights of the CUA master system (which includes the org. structure) to allocate roles on other systems / clients in your CUA landscape.
    Have a search through SAP Tech Ed 07 presentations and you should find what you are looking for.

  • How can i install google maps on an iphone 3gs with latest os

    how can i install google maps on an iphone 3gs with latest os

    Actually Apple has developed its own maps and no more have it in sync with google as it did before so now apple has its own mapping software.
    http://www.nytimes.com/2012/09/20/technology/apple-ios-6-leaves-out-googles-maps .html?_r=0

  • Error while connecting HCM with IDM

    HI SDN,
    I am now working on connecting HCM (source system) with IDM by referring the document u201C [IDM for SAP System Landscape u2013 Configuration Guide|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/706065c4-3564-2a10-2382-a52fcbd7eefb]u201D .
    In that I am following the HCM Use case implementation. I configured all the steps up to Exporting the HR data to Staging Area (Identity Store) via VDS by using a SQL query. If I say all the steps I followed it will take more time. so I request you to go through the mentioned document. While executing the report (RPLDAP_EXTRACT)  getting some Runtime error. Here is the short dump of that error.
    Short text
        "Function SPLDAP_RECEIVE_ATTRIBUTES is not available"
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLLDA_EXTRACTION" had to be terminated because it
         has
        come across a statement that unfortunately cannot be executed.
        The error occurred during an RFC call to another system.
        In the target system, a short dump has been written as well.
        More detailed information on the error cause can be found there.
    Error analysis
        An error occurred when executing a REMOTE FUNCTION CALL.
        It was logged under the name "RFC_EXTERNAL_ABORT"
    I have that particular function module in my system and my RFC test connection is also success. so i am very much confused why i am getting that error?
    can anbody help me in fixing this error?
    /* points assured*/
    Regards,
    Tamil K

    Troy, did you ever figure out why you were getting the cannot modify object class error?
    I was able to get around it by fiddling with the IDS config, but comparing that modified config against a new one (that gets the cannot modify object class error) I can't see any relevant difference...
    I'd appreciate some guidance if you have overcome this.
    Thanks. Des.

  • Can we map mutiple Account ID's with a single House Bank in OBVCU? (FI-TRM)

    Hi,
    I want to map mutiple account ID's with single house bank in OBVCU for the purpose of making Automatic Payment Transaction(F111) for my Treasury postings.
    For eg:-
    Bank Master-FI12
    House Bank  Acc ID      GL                  
    BOB         BOB01         10251030
    BOB         BOB02          23506010
    BOB         BOB71          23506380
    BOB         BOB72          23506390
    These  account IDu2019s are linked to Main Accounts.
    Maintained Sub accounts, Issue & receipt in the GL Master with numbering convention as :
    Issue Accounts ends with 1 & Receipt Accounts ends with 2
    For eg:-For account ID BOB01
    Issue A/c: 10251031
    Receipt A/c: 10251032
    Bank Determination -FBZP
    Created Payment Methods I & O,Inflow & Outflow.
    But, OBVCU, the fields in grey are House Bank,Payment Method & Currency.
    In treasury module for clearing the payment request, I want to map the House Banks and Account ID's in following manner.
    House Bank   Pay. Method  Curr       Acc ID     Bank Sub A/c
    BOB                   I               INR       BOB01     10251032
    BOB              O               INR       BOB01     10251031
    BOB               I               INR       BOB02     23506012
    BOB              O               INR       BOB02     23506011
    BOB               I               INR   BOB71     23506382
    BOB              O               INR   BOB71     23506381
    BOB                   I               INR   BOB72     23506392
    BOB              O               INR   BOB72     23506391
    But system allows me only to link a single Account ID to House Bank(BOB) and If I try to add BOB02, BOB71 and BOB72 with house bank BOB, the system will through an error message as " Target key should be different from Source key".
    I could have masked the issue/receipt in treasury  account determination as follows:-
    Eg :- Account Symbol  3 :  GL 1025103+
    But,since all the other modules except Treasury has gone live ,it is not possible to change the numbering convention or account IDu2019s.
    Kindly revert with the suggestions.
    Thanks & Regards
    Ramesh Nair

    Hi Ramesh,
    It is not the problem of linking different account ids to a single house bank, you had done assigning a payment method for a single currency to different account ids for the same house bank.
    SAP doesnt allow this scenario
    BOB I INR BOB01 10251032
    BOB O INR BOB01 10251031
    BOB I INR BOB02 23506012
    BOB O INR BOB02 23506011
    BOB I INR BOB71 23506382
    BOB O INR BOB71 23506381
    BOB I INR BOB72 23506392
    BOB O INR BOB72 23506391
    Here above you tried to assign payment method I with currency INR to different account ID's (BOB02 & BOB71) apart from BOB01 which SAP doesnt allow. You can assign a payment method with a currency to only one account id.
    HOpe u understood.
    Your criteria cant be met.
    Regards
    srikanth

  • I have problem Firefox nightly with IDM 7.3.3 Plugin ?

    i can't download with IDM CC 7.3.3 while browsing Firesox nightly
    help

    i have problem firefox nightly with idm plugin

  • My maps are not showing buildings with clarity. They have no color. It's like my maps are outdated but my ipad is fully updated. I can't get the option of views in my ipad

    My maps are not showing buildings with clarity. They have no color. It's like my maps are outdated but my ipad is fully updated. I can't get the option of views in my ipad. Like the downtown view and stuff. Please help.

    What locations are you seeing these "problems"? If the satellite photos are older or not as clear, you may see some of what you describe. Take a look at one of the major cities and see if they are also appearing as you describe. Someplace like New York, London, Paris. Those are among the cities that seem to be updated most frequently.
    Incidentally, the maps are web/cloud based and not contained within the maps app on your iPad, so regardless of the version of your app, you will still get the most current map available.

  • Configuring WenSphere - SQL Server Datasource with IdM

    Hi All -
    I am trying to configure WebSphere (6.0) Datasource (for SQl Server2000) with IdM (7.0). and I am stuck at the step where we execute setRepo command to use the datasource. It was not able to find the WsnInitialContextfactory.class earlier. But then I explicitily added some of the jars (naming.jar, jcl.jar, bootstrap.jar etc) from %WAS_HOME%\lib to the CLASSPATH. It is executing now., but still looking for some more jars.
    Has anyone done this before. if yes, can you please list the name of jars that need to be in classpath ?
    Thanks

    Hi,
    In order to do this , all you need is a http server. Once you have installed the database, wether it is 10g or 9i, You can go to the configuration page and create a DAD( database access descriptor) which will point to the database. Next in order to access the pages created in oracle , your URL will be
    http://yourhttpserver/dad/procedurename.
    where dad is the name of the DAD you just created and procedure name is the pl/sql procedure which will have embedded html statements which uses the HTP package.

  • I have an iphone 6 plus and have completed all the updates.  However I still cannot use voice texting.  I have Uconnect on my vehicle. I have read you do not have to turn on MAP it automatically turns on with bluetooth.

    I have an iphone 6 plus and have completed all the updates.  I have Uconnect on my vehicle and use have to have MAP in order for it to work.  I have read you do not have to turn on MAP it automatically turns on with bluetooth.  But it still does not work. Thank you in advance for any suggestions!!

    Hi janis77,
    Thanks for the question. After reviewing your post, it sounds like you are having trouble connecting to your car. I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    Get help using your iPhone, iPad, or iPod touch with your car stereo - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • TAM 6.1 with IDM 6.0 SP1

    I tried configurng TAM with IDM 6.0 SP1. This is the error i am getting
    Resource adapter class 'com.waveset.adapter.AccessManagerResourceAdapter' could not be instantiated: com/tivoli/pd/jutil/PDException (Unsupported major.minor version 49.0)
    The release notes for IDM do not show TAM 6.1 as compatible. Was wondering if anybody configured it successfully
    Thanks,

    I have another ? now on using NB 6.1 with IdM 8.0
    Originally, I installed the NB with LocalFiles option, but have since used the run LH command, and setRepo ....
    It did not seem to be permanent though, and in the course of a build I'm seeing
    Starting internal database server ...
    jdbc:hsqldb:hsql://127.0.0.1
    Why ?
    Also, I thought I would be able to open up a repo object (workflow or form) and then clone it, and start customizing the new object.
    Under the IDM menu the 'Open Object' and 'Download Object(s)' menu options are greyed out. Alternatively I can try to browse, using the Identity Manager Palette, but I keep getting the 'Login' dialog box and even if I've done a build, I get the exception:
    'May not login to the application Identity Manager prior to server initialization'.
    I'm obviously doing something wrong.
    Is there a way to do this correctly ?
    TIA for your help, suggestions.

  • Integration of Oracle applications with IDM

    Hi All,
    Please trow some light on how do we integrate Oracle applications with Oracle IDM(Identity Management).
    Is MRM capable of providing inbounding and outbounding webservices. If not do we have any adapters for integeating the other applications with IDM.
    What is the good practice to integrate a BPEL service with IDM.
    Thanks in advance.
    Regards,
    Naveen

    Hi,
    Have a look at this thread.
    Installation Procedure for APEX
    Installation Procedure for APEX
    Regards,
    Hussein

  • Migrating CMP EJB mapped to SQL Server table with identity column from WL

    Hi,
        I want to migrate an application from Weblogic to SAP Netweaver 2004s (7.0). We had successfully migrated this application to an earlier version of Netweaver. I have a number of CMP EJBs which are mapped to SQL Server tables with the PK as identity columns(autogenerated by SQL Server). I am having difficulty mapping the same in persistant.xml. This scenario works perfectly well in Weblogic and worked by using ejb-pk in an earlier version of Netweaver.
       Please let me know how to proceed.
    -Sekhar

    I suspect it is the security as specified in the message. E.g .your DBA set the ID columns so no user can override values in it.
    And I suggest you 1st put the data into a staging table, then push it to the destination, this does not resolve the issue, but ensures better processing.
    Arthur
    MyBlog
    Twitter

  • Mass Role Import  -- 9000 derived roles with 9 org Levels, how to get TXT

    Hello,
    I hava a problem.
    I want to use the (Mass Role Import) Bulk Role Import element in the ERM  (SAP GRC AC 5.3 )for importing SAP roles (I only found that way to import roles from SAP).
    I have 100 primary roles and more or less 9000 derived roles with 9 org Levels.
    Is there a way to get this 9000 derived roles with their 9 org Levels in a TXT file?. Or do I have to do it manually this part to insert it in the "Bulk Role Import ".
    Can someone help me?
    Thank you in advance.
    Pablo Mortera.

    Hi Mike,
    what kind of TA´s are in your role. Is it possible to integrate a "dummy" TA (without conflicting
    your SOD)?
    In my example I have CO TA´s bundled in a role:
    Role:   ZXXXX_O:CO_ORDERMANAGER_CRE - CO Order Manager Pflege
    with
    KO01 Create Internal Order ...
    KO02 Change Order ... 
    KO04 Order Manager ... 
    KOK2 Collective Proc. Internal Orders ... 
    KOK4 Aut. Collect. Proc. Internal Orders
    update this role with TA KO01 and KOKRS will be available for derivation.
    Done this manually without import in ERM.
    Reg,
    Ulrich

Maybe you are looking for

  • Any known CBO issues in 9.2.0.8?

    Hi, we have a job that runs considerably slower on 9.2.0.8 than it does on 9.2.0.5 and 10G R2. For many SQL statements it chooses a different execution plan than in the other versions and almost always a much slower one. Are there any known issues wi

  • Trouble with PIOS Printer example

    Hello gurus, I have a problem. I'm trying to run an example from the tutorial, the one that aply the PIOS Printer API, and it throws me an error (awfull by the way) like this: java.lang.ClassNotFoundException: com.sap.ip.me.api.pios.impl.connection.C

  • Apex 4 Theme and #JAVASCRIPT_CODE#

    Hi, I'm converting an application written in 3.2.1 to 4.0 and have tried a number Apex 4 themes. None of them seem to have #JAVASCRIPT_CODE# referenced. This means that my custom javascript which I had included in a Page Header - and have now moved t

  • Elements 13 has no serial number on disk, insert, or on box!  Where to find?

    Photoshop Elements 13, bought from Amazon, has no serial number on the disk sleeve, insert, or on the box!  Cannot complete installation.  What to do to get serial number?

  • Frame sizes?

    hello all. Can anyone help me understand the "logic" with frame sizes when exporting. Let me elaborate. I exported a sequence from FCP via quicktime movie. when I bring up the info window on the exported file it says 3 different things in reference t