DN mapping rule  problem

Hi, all.
Here is problem - i try to replicate entry from Active Directory connector view
dn: cn=user, ou=123,ou=bank,o=ADCView to MetaView entry
dn: cn=user, ou=345,ou=internal users,o=Meta
I have DN mapping rule:
Selection criteria: (%objectclass%^person) and (%dn%^bank)
Distinguished Name Construction:
cn=%cn%,ou=345,ou=internal users
This is not work!
In the debug log i can see that selection criteria is False. After some investigation i have found, that attributes %dn%, %cv.dn%, %entrydn%, %cv.entrydn% are empty or does not present at all !
So, to construct my mapping rule i need the entry`s dn, where i can find it?
Entry objectclass is inetorgperson.
Thanks, Ivan V. Melekhin

r u using the AD specific or Default schema?
Cant u simply put the selection criteria as "Present" instead of "Bank" - of course since you say that dn is not available we need to see which field should provide the info.

Similar Messages

  • Gettin Error While activating Device Mapping Rule

    Hi all,
            I am getting below error while generating Device attribute mapping Rule :
    Err:Metainfo FM MMW_DM_DSMS_METH_META - Class Name not specified
    Any idea how to resolve this problem.
    Regards,
    Abhishek

    Hi Abhishek,
    Custom attributes will not be reflected under category list.
    It can be viewed by clicking 'customize'  button only in sdoe_rmm01.Do not add custom attributes part of category.
    If you have clicked 'Admin UI display'  while creating it will get reflected in the admin portal under single valued or multi valued attributes tabs .This way it allowes you to assign custom atrribute values to devices from admin portal.
    By the way when you created the other attributes.in category .how did you manage to give proper data types ?
    When you say , backward compatible, are you planning to migrate  the SyncBOs defined in MI to the current DOE?If yes , this is all that you need to do.
    Regards,
    Liji

  • UDF  for this mapping rule

    Hi Friends,
         I have one difficult issue which have one mapping rule to write user defined function. I am sending mapping rule Please give me java coding to create udf for this mapping rule which is following below:
    CRFT.COSTR = M_ORD_01 and
    CRFT.CRID = CRHE.CRID and
    CRFV.FTNO = CRFT.FTNO and
    CRFV.ATNAM = ZPPI_ORDER_SCHED_EN_DATE
    And
    CRFT.COSTR = M_ORD_01 and
    CRFT.CRID = CRHE.CRID and
    CRFV.FTNO = CRFT.FTNO and
    CRFV.ATNAM = ZPPI_ORDER_SCHED_EN_TIME
    From ATWRT of ZPPI_ORDER_SCHED_EN DATE+ ATWRT of ZPPIORDER_SCHED_EN_TIME
    In format yyyy-MM-ddTHH:mm:ss
    using this mapping rule, ATWART field can map with target field "End Time" i think.
    Actually source field is CALCULATE but this field is not in Source structure
    target field is "End Time"  this field is in Target Structure.
    I will wait for ur response
    Thanks adn regards
    Sai

    Hi Jagadish,
    This RFC is CONTROL_RECIPE_DOWNLOAD
    in this RFC, i want to map ATWRT field to Target field "End Time" with mapping rule which i had already given.
    In Graphical mapping, i am doing . but i can not get it because mapping condition is difficult. if you have any idea in graphical mapping give me early
    before that i have to give explantion about this is  date value and time value passed through this ATWRT field as different records.
    i am doing as a condition ie  first i have taken date condition. from that condition, first two fields  CRFT.COSTER and M_ORD_01 has given to "equals" funtion     like that have done remaining fileds then the output of those "equals" functions given to "and" functions finally i get one output of "and" function.  while sending DATE values from RFC this output  of "and " function.
    Like this, for Time condtion i have done mapping same way and giving a TIME values from RFC as Second record then output of this "and" function while sending second record with time value.
    here mainly i am getting problem is .....
    here i am taking source field ATWRT( in this field i am sending date format adn time format as different records) with the outputs of the mapping conditons as input vaules of another function. i dont have any idea for another function why because is first date record should be wait until the time record comes in this function.after then both vaules should concat .
    now here whenever you send date value through this field ATWRT as first record and after satishfy the date condition form mapping rule,  The date value of ATWRT should go to input of concat function. next i will send time value like date value through ATWRT as second record . It should go to another input of concat function. Then here both date value and time value concat with T  and should be come output in the format  yyyy-MM-ddTHH:mm:ss and this will go to Target field "End Time".
    I will be wait for ur possitive reply
    thanks for giving response
    Thanks adn regards
    sai

  • No document type defined  in mapping rule

    Hi,
    Information on document type is need to be loaded from SAP R/3 to BCS for reporting purpose. Customised doc type with assigned role - subassignment already defined. Problem is i still don't see the document type (fiels) for selection in mapping rule (under load from data stream).
    Any input would be appreciated. Thanks.
    Regards, Renee

    Due to reporting requirement, there are certain GLs need to be filter futher by doc type. As long as the document type is successfully extracted from SAP R/3 to BW BCS and filtering is defined in BE Analyzer, i don't need to display it in the report.
    Anyway, customised document type already created and doc type can be extracted from SAP R/3. tq

  • How to insert data in the table without  join and using mapped rule value

    1.Table SOL_K
    A B C D – Columns Name
    C D A B –Coulmns Values Defined (Rule --- Defined)
    2.SECOND table SIC_K
    SIC_ K
    A B C D
    Kamal Micky NULL MANOJ
    3 Table SIC_Mapping
    Same Columns A B C D based On Table SOL_K defined rule
    I want to insert values(from table SIC K) into table SICMapping Table with the help of first table(SOL_K)(mapped rule)
    Required Result SIC_Mapping Table
    The output will be come like this.
    A B C D — Columns Name
    NULL MANOJ Kamal Micky ---- Came based on defined Mapping Rule

    What's your database version?
    That's a funny requirement.
    How about :
    select case sol.a
              when 'A' then sic.a
              when 'B' then sic.b
              when 'C' then sic.c
              when 'D' then sic.d
           end as a
         , case sol.b
              when 'A' then sic.a
              when 'B' then sic.b
              when 'C' then sic.c
              when 'D' then sic.d
           end as b
         , case sol.c
              when 'A' then sic.a
              when 'B' then sic.b
              when 'C' then sic.c
              when 'D' then sic.d
           end as c
         , case sol.d
              when 'A' then sic.a
              when 'B' then sic.b
              when 'C' then sic.c
              when 'D' then sic.d
           end as d
    from sol_k sol, sic_k sic
    ;XQuery can do the trick too :
    SQL> SELECT *
      2  FROM XMLTable(
      3   'for $i in ora:view("SIC_K")/ROW
      4    return element r {
      5     for $j in ora:view("SOL_K")/ROW/child::*
      6     return element {name($j)} {$i/child::*[name()=$j]/text()}
      7    }'
      8   columns
      9     a varchar2(30) path 'A'
    10   , b varchar2(30) path 'B'
    11   , c varchar2(30) path 'C'
    12   , d varchar2(30) path 'D'
    13  );
    A          B          C          D
               MANOJ      Kamal      Micky
    Edited by: odie_63 on 29 juin 2011 22:07

  • What are mapping rules in sap xi/pi  ?

    hi experts
    what are mapping rules in sap xi/pi  ? how we can use this rules for special charters mapping .

    >
    praveen.tecnics wrote:
    > hi experts
    >
    > what are mapping rules in sap xi/pi  ? how we can use this rules for special charters mapping .
    to map special characters you need to use an element called CDATA in your mapping
    a special character causes an error....as XI wont be able to read it (as it is not in a proper XML format)...so to parse this character through XI without causing an eror use the CDATA....just make a search on SDN and you will find the proper use of it....
    For your info: http://www.w3schools.com/XML/xml_cdata.asp
    Regards,
    Abhishek.
    Edited by: abhishek salvi on May 20, 2009 8:52 AM

  • Selectively executing a mapping rule based on a variable value

    Hi,
    I have written a mapping rule in the following format.
    case #time_unit when 'quarter' then
    logic1
    when 'month' then
    logic2
    end
    In logic1, logic2 i again have nested case statements. Variable time_unit will have a static value hard-coded given (quarter/month) by user before execution.
    So Variable time_unit need not be checked for each row that gets transformed. It hits the performance.
    I want either logic1 or logic2 to be substituted dynamically in the mapping rule window based on the variable value.
    I cannot go for 2 seperate interfaces. How can I achieve this in ODI.
    Please help me.
    Thanks!!

    Sarah,
      I'm not aware of doing other than BPM. If you want the BPM Steps, Please refer below
      Step 1 : Receive
      Step 2 : Transformation
      Step 3 : Send (Syncronous call to the target system)
      Step 4 : Switch(Check the Payload value as per your reqmt)
      Step 5 : Transformation(Switch : False ,If the payload value is not ERROR)
      Step 6 : What you wanna do ( Switch :True)
    If you want more technically, then let me know the source and target systems, I will help you to design
    the complete flow.
    Best Regards,
    raj.

  • How to Insert data in 3 table without use of join 1table mapped rule define

    1.Table SOL_K
    A B C D – Columns Name
    C D A B –Coulmns Values Defined (Rule --- Defined)
    2.SECOND table SIC_K
    SIC_ K
    A B C D
    Kamal Micky NULL MANOJ
    3 Table SIC_Mapping
    Same Columns A B C D based On Table SOL_K defined rule
    I want to insert values(from table SIC K) into table SICMapping Table with the help of first table(SOL_K)(mapped rule)
    Required Result SIC_Mapping Table
    The output will be come like this.
    A B C D — Columns Name
    NULL MANOJ Kamal Micky ---- Came based on defined Mapping Rule

    This is the forum for issues with the SQL Developer tool. You will get better answers in the SQL and PL/SQL forum.

  • Mapping rule

    Hi,
    i have one issue on mapping rule. Please give me solution for the below mapping rule.
    Remove leading +67(0) to leave just 0
    thanks in advance
    sai

    Hi Sai,
    You can use the function formatNum for your requirment.
    Thanks and Regards,
    Sanjeev.
    PS: Award points if helpful

  • Directory Integration Platform - DN Mapping Rule

    Hi all,
    Can anyone help me with setting up the mapping in a directory synchronization profile in DIP?
    Using the GUI, the three fields required are Source Container, DIP-OID Container and DN Mapping rule.
    The containers are obvious but what is the syntax for setting the DN mapping rule? I just want to match equality on the cn attributes in each container.
    Many thanks,
    Bernie

    r u using the AD specific or Default schema?
    Cant u simply put the selection criteria as "Present" instead of "Bank" - of course since you say that dn is not available we need to see which field should provide the info.

  • Update rule problem - validation of "sales/cost w/ tax" keyfigure

    BW Gurus,
        Hi to all, i have this update rule problem at "sales/cost w/tax" keyfigure here is the senario.
        Our Goverment mandatory implemented an additional 2% tax from the original 10%, this will affect our report on sales, and also the BW "sales/cost w/ tax" key figure.
        My question is How can I validated the effectivity of the new tax? i have tax 10% from previous sales and 12% on the current sales. What "date field" can I use to validated this. I am using /BIC/CS2LIS_13_VDITM stucture to get the data i need.
    Thanks in Advance
    Joven

    Hi,
    Till to day how are extracting the data for tax(original 10%) is it available directly in 2LIS_13_VDITM ?
    Usually all taxes( condition types) can be extracted by the data source 2LIS_13_VDKON.Discuss with SD team, they may give the condition type used for different taxes.
    With rgds,
    Anil Kumar sharma .P

  • Installing ios8.2 does not resolve Google map navigation problem or gps tracking!

    Installing ios 8.2 does not resolve Google map navigation problem.

    I have tried to install both of them lots of times but in each case I receive the same in my XE.bat file:
    Instance created.
    DIM-00019: create service error
    O/S-Error: (OS 1387) Unable to add or remove a member from the local group because this member does not exist.
    Have checked OS 1387 error at Microsoft Support and as possible cause of the problem they give as follows:
    This issue can occur if the environment has a disjointed namespace (i.e. the domain has different NetBIOS and DNS names). For example, assume that the domain has a NetBIOS name of "domain.com" and a DNS name of "domain-old.com." When users are added in the Windows UI, they are displayed in the format of domain\ComputerName. However, you notice in the error log that there was an attempt to add a computer account in the format of domain-old\ComputerName. (System Center 2012 R2 Data Protection Manager install fails and generates ID: 4323: "A member could not be added")
    Tried to find out my DNS name, but it is impossible because I don't have any domain installed and my machine is not connected to it. Some other blog (Install Oracle 11gR2 on Windows) advices to work with adding my computer account to some non-real windows domain (just for the purpose of resolving the network) as well and reinstall the database then. If I undestand it right I need minimum 2 machines for this. But I own just one, where the server is based and thought that is enough to run the database... no idea ..

  • Mail rules problem

    Hi everyone
    I'm using a MacBook Pro 10.7.4, I'm having rules problems in Mail.
    I run a Graphic design and photography company, I have folders set up for 20-30 clients, when emails come in from a certain client they go straight to that client folder.
    Equally, I have a 'Personal' folder, emails from friends should go to there.
    Recently though for some reason ALL of my sent items have started to flood into a client folder, a lot of my client emails are going to a general folder and personal emails are not going to the right folders.
    Does anyone have a second to advise what might be causing this, or even better - a potential fix for this problem, it's making me a little crazy and adding to my workload daily.
    Hope to hear from you.
    best regards
    Alex

    hello. When you say the sent items flood a client folder, do you mean, duplicates, or the actual sent mail goes there?
    I have been trying to look into why periodically, things I send go into drafts folder.
    Sounds like an issue that needs updating.. maybe we should "report bug to apple" maybe..

  • Map Render  Problem !!!

    Hi.
    I´m using Web Template to generate Maps in BW 3.5.
    The formatting option that was set is "###.###,##"
    All is ok if i use low KF (until 999) but when the result is higher the system render the Map with HTML
    format "###,###.##".
    For example :
    The value 8.250,00 is read in the Map renderer as
              8,250.
    I tried to adjust using Table Interface but the template seems to ignore the code.
    Any idea to correct this issue ?
    Thanks in advance
    Eduardo
    Message was edited by: Eduardo   Silberberg

    <map_definition>
    <theme min_dist="1.0" name="COUNTRIES"/>
    <theme min_dist="1.0" name="CITIES"/>
    <theme min_dist="1.0" name="CAPITALS"/>
    </map_definition>
    Theme styling rules:
    <styling_rules>
    <rule><features style="M.CAPITAL_STYLE"></features></rule>
    </styling_rules>
    <styling_rules>
    <rule>
    <features style="M.CITY_STYLE"></features>
    <label column="NAME" style="T.CITY_STYLE">1</label>
    </rule>
    </styling_rules>
    <styling_rules>
    <rule>
    <features style="C.COUNTRY_STYLE"></features>
    <label column="CNTRY_NAME" style="T.CITY_STYLE">1</label>
    </rule>
    </styling_rules>
    I've included the styling rules as well because I see the same problem when I preview the styles using Mapbuilder. The first time I press the green preview button, they show up fine. The second time, data seems to disappear.
    I got the above definitions from Mapbuilder. I did a database query as well for the map and theme definitions. My query only returned part of the definitions, but for the styling_rules I got the following from my database query on user_sdo_themes:
    <styling_rules caching="ALL">
    Why don't I see this caching attribute on my styling rules on Mapbuilder? Also, all the styles, themes, and maps I'm using were exported from another database, so I didn't actually create them myself. However, I tried importing a country theme from a shape file and creating a base map from it myself, and I see the same problem.

  • Update rule problem('No keyfigure is set to update')

    Hi
    Iam trying to create one more update rule on a cube which is having already update rule and connected to datasource.
    But iam unable to create on it. It was giving an error i.e
    'No keyfigure is set to update'. And iam unable to see the keyfigures of second cube as it was showing only First cubes keyfigures. What can be the problem.
    Could u plz tell me how to rectify it.
    Regards
    AJay

    Hello Ajay,
    Did you ensure that you are assigning the correct Infosource or the ODS object while creating another set of update rules. Key figures, by default are set to no update. So you need to map the key figures with source key figures or you can compute a specific key figure with a formula or a routine.
    Hope this helps.
    Kind Regards,
    Shravan

Maybe you are looking for

  • New iTunes for managing apps

    Dislaimer: I am NOT an experience iTunes user! Question: How do I see my devices in a way I can manage the apps on them in the new iTunes? Background: I updated my iTunes yesterday to 11.01.12, the "new, even better" one. I understand it makes my mus

  • "Network-related or instance specific error", Works OK for Administrator

    I've been handed a legacy .Net Windows application that was previously used on Windows XP, and asked to debug a few problems encountered on Windows 7 clients.  The original developers are all gone.  I'm down to only a single error -- a seemingly comm

  • In need of a new Mac Pro, which one?

    In the market for a new Mac Pro, mainly for CS5 apps, an ocassional Final Cut project and some Modo rendering (simple work). My Mac is an early 2008 2.8 GHz 8 core with 10 gigs of RAM, rock solid performance and trouble free and I'm looking to buy a

  • A General serialized object

    Hi! I'm trying to create some server software that will allow any number of applets to connect to the server and communicate with each other. Presumably, only applets of the same type would talk together, though applets could send general string mess

  • 'FROM keyword not found where expected'error while Inserting into Text file

    Hi, I have created a simple interface for testing purpose. All it has to do is to Read the data from a Source Text file and put it into another text file (exactly the same headers as that of source) ... I am using Oracle as my staging area. But at 'I