Multivalue LDAP attrinute

HI I have a multivalue LDAP attribute named changedate
Each time I have to update it I need it to be updateedlikethis
changedate-ddmmyy creation
changedate-ddmmyy termination
but this is not happening and the attribute value is overwritten
I have set it as multivalueattribute in the LDAP.
I am updating it like this
<setvar name='userupdate.global.changedate'>
<invoke name='dateToString' class='com.waveset.util.Util'>
<ref>userupdate</ref>
<s>MM/dd/yyyy</s>
</invoke>
</setvar>

HI Paul ,
Even appending is overwriting it I tried this
<setvar name='newuser.global.Historicaldate'>
<list>
               <s>s1</s>
               <s>s2</s>
               <s>creation</s>
               </list>
</setvar>
it creates account and americasonyhistoricaldate has three values s1,s2 and s3
But when we do this again
<append name='selecteduserupdate.global.Historicaldate'>
<concat>
<invoke name='dateToString' class='com.waveset.util.Util'>
<s>yyyyMMddHHmmss</s>
</invoke>
<s>-Termination</s>
</concat>
</append>
it overwrites all previous values and gives only one value
how can we get the previoulist and append it to this

Similar Messages

  • Resource account attribute names during reconciliation

    Hi,
    I need to set some attributes when creating the IDM user during initial reconcilation from an LDAP resource. I understand only the waseset and LDAP user attributes are available during the reconciliation. Does anyone know how to refer to the resource account attributes?
    I tried to put this in my proxyuser form:
    <Field name='accounts[Lighthouse].uvaDepartment'>
    <Derivation>
    <invoke name='listToString' class='com.waveset.util.Util'>
    <ref>accounts[LDAP].ou</ref>
    <s>; </s>
    </invoke>
    </Derivation>
    </Field>
    uvaDepartment is a extended attribute in the IDM schema, and ou a multivalued LDAP atribute. But uvaDepartment remains empty.
    Greetings,
    Marijke

    thanks,
    I found out the problem was caused by not setting thel user password in the resource parameters page.
    I set up a temporay form and debugged the attributes from the Active Directory. Somehow, the password has already been populated with a (random) value. To be sure, I'll use your suggestion to generate a temporary password to ensure it conforms to my own Password Policy :
            <invoke name='generatePassword'>
              <new class='com.waveset.provision.PasswordGenerator'>
                <ref>:display.session</ref>
              </new>
              <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                <rule name='UWS-RLB-Utils:GetLightHouseContext'/>
                <s>Policy</s>
                <ref>My-Password-Policy</ref>
              </invoke>
              <new class='com.waveset.object.WSUser'/>
            </invoke>

  • LDAP Data Set - Group Membership / Multivalued attributes

    Hello
    I am attempting to get a list of groups and for which a user is a member in LDAP.  I have created an LDAP datasource, and am attempting to create a new dataset.
    Details are as follows:
    Name: Roles
    Datasource: LDAP Server
    Searchbase:  ou=people,dc=example,dc=com
    Attributes:  cn, description, uid, mail, isMemberOf
    Filter: (objectclass=inetOrgPerson)
    When I look at the Data in Tree View for this, I do not get what I am expecting.  What is see is:
    DATA_DS
    -ROLES
    --Description:  Description goes here
    --CN: My Name
    --mail:  [email protected]
    --uid: [email protected]
    --isMemberOf: role1DNRole2DNRole3DNRole4DNRole5DN  (notice they are not splitting on space etc etc)
    --isMemberOf: role1DNRole2DNRole3DNRole4DNRole5DN  (notice they are not splitting on space etc etc)
    --isMemberOf: role1DNRole2DNRole3DNRole4DNRole5DN  (notice they are not splitting on space etc etc)
    --isMemberOf: role1DNRole2DNRole3DNRole4DNRole5DN  (notice they are not splitting on space etc etc)
    --isMemberOf: role1DNRole2DNRole3DNRole4DNRole5DN  (notice they are not splitting on space etc etc)
    If I have 5 roles, I see 5 isMemberOf attributes, but each value has all 5 memberships in it.
    Is there something special that I need to do with multi valued ldap attributes?
    Thank you.

    Chris,
    Brilliant! I had already enabled extended logging in OpenLDAP, but it didn't give me the answers I was looking for. I setup an OID instance (didn't want to get into packet sniffing when it's someone else's directory), captured the packets with ethereal, and there it was! I'm going to post more details about this (more on the process than the result), but here's my answer:
    Filter: (|(uniquemember=cn=user1,cn=users,dc=demo1,dc=com)(member=cn=user1,cn=users,dc=demo1,dc=com))There's more to the process, but that's the answer I needed.
    Thanks again for putting me back on track,
    Tyler

  • JNDI and LDAP Results

    I have also posted this on Novell forums and it seems to only happen when the LDAP target is eDirectory.
    I am writing a JAVA program that uses JNDI to access LDAP data sources and I have run into an interesting problem when accessing eDirectory. The issue is that when I query on objects that involve a multivalue attribute and that multivalue attribute contains a large number of values then I appear to be getting back multiple records in my JNDI result set. For example, when I am going after an object in the LDAP Directory that is a "group" and there is a multivalue object within that record called "member" and if there are large number of member values (say 30,000 or so) then I will get multiple results in the JNDI Result set for the same DN value. The first record will contain all the normal attributes plus the first 650 or so member attribute values. Subsequent records will contain only the member attribute with more values. Each record is assciated with the same DN value. When I do the same type of thing going against an Active Directory the member attribute will be returned with an id of "member;range=0-1499" indicating that a range retrieval is required to get the remaining attributes BUT with AD I only get a single record back in the result set and it is up to my code to make the appropriate calls to get the remaining records. I can understand that each LDAP provider may have a different implementation for this type of large multivalue attribute issue but I have not been able to figure out in the case of eDirectory who is doing this "chunking" of values and how it can be detected or controlled. Can anyone provide me some help understanding how this data is being returned from eDirectory? I have not been able to find an explanation doing searches on JNDI or eDirectory that explains this behavior. In the testing I have done and looking at the TCP/IP dumps it would appear that JNDI is breaking the result coming from LDAP into multiple SearchResult entries. As mentioned, each SearchResult enties contains about 650 of the multi-valued attribute results which total about 20,000 bytes of information. Whoever is doing this knows the data is for the same DN value as the DN returned for all records by SearchResult.getObject()).getNameInNamespace() is the same.

    Curious if you ever came across a good solution for this?
    I'm running up against essentially the same thing; I have an application that needs to traverse potentially tens of thousands of entries within a given search base. Sort order is unimportant, speed is important. Having the directory administrator create vlv indexes is a non-starter.
    I did notice that I could have it sort on any attribute, even an attribute not in the schema (e.g., "hooHahFoo"), and get the same performance. Also noted that sorting by "dn" is broken in DS5.1, not in DS5.2.

  • Incorrect Sender value when 'mail' attribute is multivalued

    hi,
    i've just upgraded Sun messaging server 2005Q4 from IMS 5.2 and noted some behavioural difference in the reverse_url operations.
    I've noted that reverse_url operations on the 'mail' attribute for ims5.2 seems to ignore subsequent values of this attribute if it's multivalued.
    Sun Messaging 2005Q4, however, seems to have taken into account the multiple values of the 'mail' attribute.
    This is resulting the mail's "From:" field to be using the subsequent values.
    Setup
    Account: mailtes1 (with multivalued 'mail' attribute)
    mail: [email protected]
    [email protected] (Not a configured mail domain handled by Sun messaging. Used by other applications)
    mailhost: mailsit.portnet.com.sg (for Sun messaging 2005q4)
    pnsasit1app1.portnet.com (for ims52)
    test mails are sent to the same accounts.
    Results of ./imsimta test -rewrite -debug mailtes1 on Sun Messaging 2005q4 as follows:
    *** Debug output from rewriting a forward header address:
    00:07:53.03: Rewriting: Mbox = "mailtes1", host = "portnet.com.sg", domain = "$*", literal = "", tag = ""
    00:07:53.03: Rewrite: "$*", position 0, hash table -
    00:07:53.03: Found: "$E$F$U%[email protected]$V$H"
    00:07:53.03: Rewrite failed, not envelope.
    00:07:53.03: Rewrite: "$*", position 1, hash table -
    00:07:53.03: Failed.
    00:07:53.03: Rewrite: "$*", position 0, rewrite database -
    00:07:53.03: Failed
    00:07:53.03: Rewriting: Mbox = "mailtes1", host = "portnet", domain = "portnet.com.sg", literal = "", tag = ""
    00:07:53.03: Rewrite: "portnet.com.sg", position 0, hash table -
    00:07:53.03: Found: "$U%[email protected]"
    00:07:53.03: New mailbox: "mailtes1".
    00:07:53.03: New host: "portnet.com.sg".
    00:07:53.03: New route: "png1app1-mail.portnet.com.sg".
    00:07:53.03: New channel system: "png1app1-mail.portnet.com.sg".
    00:07:53.03: Looking up host "png1app1-mail.portnet.com.sg".
    00:07:53.03: - found on channel l
    00:07:53.03: Routelocal flag set; scanning for % and !
    00:07:53.03: Rewrite rules result: [email protected]
    00:07:53.03: Checking reverse URL cache for: [email protected]
    00:07:53.03: Applying reverse URL pattern ldap:///$V?mail?sub?$Q to: [email protected]
    00:07:53.05: Resulting URL: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])([email protected]))
    00:07:53.05: mmc_open_url called to open ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg)), flags = 384
    00:07:53.05: URL with quotes stripped: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:07:53.05: LDAP URL identified
    00:07:53.05: URL context #1 will be used
    00:07:53.05: Performing URL search on: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:07:53.05: mmc_read_url result: [uid=mailtes1,ou=People,ou=ZZZ,ou=Customers, l=SGSIN, o=portnet.com]
    00:07:53.05: URL resolution returned: [uid=mailtes1,ou=People,ou=ZZZ,ou=Customers, l=SGSIN, o=portnet.com]
    00:07:53.05: mmc_read_url result: [mail] [email protected]
    00:07:53.05: URL resolution returned: [mail] [email protected]
    00:07:53.05: Attribute index: 16
    00:07:53.05: LDAP URL produced address [email protected]
    00:07:53.05: mmc_read_url result: [mail] [email protected]
    00:07:53.05: URL resolution returned: [mail] [email protected]
    00:07:53.05: Attribute index: 16
    00:07:53.05: LDAP URL produced address [email protected]
    00:07:53.05: No more result to return
    *** Debug output from rewriting a forward envelope address:
    00:07:53.05: Rewriting: Mbox = "mailtes1", host = "portnet.com.sg", domain = "$*", literal = "", tag = ""
    00:07:53.05: Rewrite: "$*", position 0, hash table -
    00:07:53.05: Found: "$E$F$U%[email protected]$V$H"
    00:07:53.05: Match, pattern = "portnet.com.sg", current = "(*domaincheck*)"
    00:07:53.05: old state = not checked.
    00:07:53.05: Domain check on portnet.com.sg.
    00:07:53.05: Added domain result 1 to cache for portnet.com.sg.
    00:07:53.05: new state = succeeded.
    00:07:53.05: New mailbox: "mailtes1".
    00:07:53.05: New host: "portnet.com.sg".
    00:07:53.05: New route: "png1app1-mail.portnet.com.sg".
    00:07:53.05: New channel system: "png1app1-mail.portnet.com.sg".
    00:07:53.05: Looking up host "png1app1-mail.portnet.com.sg".
    00:07:53.05: - found on channel l
    00:07:53.05: Routelocal flag set; scanning for % and !
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = LOGGING NOGREY NORESTRICTED RETAINSECURITYMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 = SLAVE_DEBUG
    channel flags #6 = LOCALUSER REPORTNOTARY
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = portnet.com.sg portnet.com.sg
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = png1app1-mail.portnet.com.sg
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    expandchannel =
    notificationchannel =
    dispositionchannel =
    saslswitchchannel =
    tlsswitchchannel =
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (png1app1-mail.portnet.com.sg,png1app1-mail.portnet.com.sg)) (host portnet.com.sg)
    envelope From: address = [email protected]
    name =
    mbox = mailtes1
    Results of ./imsimta test -rewrite -debug mailtes1 on ims52 as follows:
    *** Debug output from rewriting a forward header address:
    00:09:58.97: Rewriting: Mbox = "mailtes1", host = "portnet.com.sg", domain = "$*", literal = "", tag = ""
    00:09:58.97: Rewrite: "$*", position 0, hash table -
    00:09:58.97: Found: "$E$F$U%[email protected]$V$H"
    00:09:58.97: Rewrite failed, not envelope.
    00:09:58.97: Rewrite: "$*", position 1, hash table -
    00:09:58.97: Failed.
    00:09:58.97: Rewrite: "$*", position 0, rewrite database -
    00:09:58.97: Failed
    00:09:58.97: Rewriting: Mbox = "mailtes1", host = "portnet", domain = "portnet.com.sg", literal = "", tag = ""
    00:09:58.97: Rewrite: "portnet.com.sg", position 0, hash table -
    00:09:58.97: Found: "$U%[email protected]"
    00:09:58.97: New mailbox: "mailtes1".
    00:09:58.97: New host: "portnet.com.sg".
    00:09:58.97: New route: "pnsasit1app1.portnet.com".
    00:09:58.97: New channel system: "pnsasit1app1.portnet.com".
    00:09:58.97: Looking up host "pnsasit1app1.portnet.com".
    00:09:58.97: - found on channel l
    00:09:58.97: Routelocal flag set; scanning for % and !
    00:09:58.97: Rewrite rules result: [email protected]
    00:09:58.97: Checking reverse URL cache for: [email protected]
    00:09:58.97: Applying reverse URL pattern ldap:///$V?mail?sub?$Q to: [email protected]
    00:09:58.99: Resulting URL: ldap:///l%3Dsgsin%2Co%3Dportnet.com?mail?sub?(|([email protected])([email protected]))
    00:09:58.99: mmc_open_url called to open ldap:///l%3Dsgsin%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg)), flags = 256
    00:09:58.99: URL with quotes stripped: ldap:///l%3Dsgsin%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:09:58.99: LDAP URL identified
    00:09:58.99: URL context #1 will be used
    00:09:58.99: Performing URL search on: ldap:///l%3Dsgsin%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:09:58.99: mmc_read_url result: [email protected]
    00:09:58.99: URL resolution returned: [email protected]
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = LOGGING NOGREY NORESTRICTED RETAINSECURITYMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 = SLAVE_DEBUG
    channel flags #6 = LOCALUSER REPORTHEADER
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = portnet.com.sg portnet.com.sg
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = pnsasit1app1.portnet.com
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (pnsasit1app1.portnet.com,pnsasit1app1.portnet.com)) (host portnet.com.sg)
    envelope From: address = [email protected]
    name =
    mbox = mailtes1
    emails sent to mailtes1 using the Sun messaging 2005q4 service will be en-queued as '[email protected]' for sender but de-queued to mail store with '[email protected]' as sender.
    09-Dec-2007 21:00:47.38 tcp_intranet ims-ms E 1 [email protected] rfc822;[email protected] mailtes1@ims-ms-daemon
    09-Dec-2007 21:00:48.19 ims-ms D 1 [email protected] rfc822;[email protected] mailtes1@ims-ms-daemon
    Physical message file will show '[email protected]' as sender.
    Return-path: <[email protected]>
    Received: from portnet.com.sg (pnsgsit1app2.portnet.com [10.106.65.36])
    by mailsit.portnet.com.sg
    (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
    with ESMTP id <[email protected]> for
    [email protected]; Sun, 09 Dec 2007 21:00:47 +0800 (SGT)
    Received: from [10.106.65.101] (Forwarded-For: 10.10.140.109)
    by mailsit.portnet.com.sg (mshttpd); Sun, 09 Dec 2007 21:00:47 +0800
    Date: Sun, 09 Dec 2007 21:00:47 +0800
    From: [email protected]
    Subject: test
    To: [email protected]
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Mailer: Sun Java(tm) System Messenger Express 6.2-8.04 (built Feb 28 2007)
    Content-type: text/plain; charset=us-ascii
    Content-language: en
    Content-transfer-encoding: 7bit
    Content-disposition: inline
    X-Accept-Language: en
    Priority: normal
    Original-recipient: rfc822;[email protected]
    test
    Action tried.
    1) Re-order values of mail attribute as follows:
    mail: [email protected]
    [email protected]
    results from ./imsimta test -rewrite -debug mailtes1 on Sun messaging 2005q4:
    *** Debug output from rewriting a forward header address:
    00:21:45.57: Rewriting: Mbox = "mailtes1", host = "portnet.com.sg", domain = "$*", literal = "", tag = ""
    00:21:45.57: Rewrite: "$*", position 0, hash table -
    00:21:45.57: Found: "$A$E$F$U%[email protected]"
    00:21:45.57: Rewrite failed, not envelope.
    00:21:45.57: Rewrite: "$*", position 1, hash table -
    00:21:45.57: Failed.
    00:21:45.57: Rewrite: "$*", position 0, rewrite database -
    00:21:45.57: Failed
    00:21:45.57: Rewriting: Mbox = "mailtes1", host = "portnet", domain = "portnet.com.sg", literal = "", tag = ""
    00:21:45.57: Rewrite: "portnet.com.sg", position 0, hash table -
    00:21:45.57: Found: "$U%[email protected]"
    00:21:45.57: New mailbox: "mailtes1".
    00:21:45.57: New host: "portnet.com.sg".
    00:21:45.57: New route: "mailsit.portnet.com.sg".
    00:21:45.57: New channel system: "mailsit.portnet.com.sg".
    00:21:45.57: Looking up host "mailsit.portnet.com.sg".
    00:21:45.57: - found on channel l
    00:21:45.57: Routelocal flag set; scanning for % and !
    00:21:45.57: Rewrite rules result: [email protected]
    00:21:45.57: Checking reverse URL cache for: [email protected]
    00:21:45.57: Applying reverse URL pattern ldap:///$V?mail?sub?$Q to: [email protected]
    00:21:45.58: Resulting URL: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])([email protected]))
    00:21:45.58: mmc_open_url called to open ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg)), flags = 384
    00:21:45.58: URL with quotes stripped: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:21:45.58: LDAP URL identified
    00:21:45.58: URL context #1 will be used
    00:21:45.58: Performing URL search on: ldap:///l%3DSGSIN%2Co%3Dportnet.com?mail?sub?(|([email protected])(mailAlternateAddress=mailtes1@portnet.
    com.sg))
    00:21:45.59: mmc_read_url result: [uid=mailtes1,ou=People,ou=PSA,ou=Customers, l=SGSIN, o=portnet.com]
    00:21:45.59: URL resolution returned: [uid=mailtes1,ou=People,ou=PSA,ou=Customers, l=SGSIN, o=portnet.com]
    00:21:45.59: mmc_read_url result: [mail] [email protected]
    00:21:45.59: URL resolution returned: [mail] [email protected]
    00:21:45.59: Attribute index: 16
    00:21:45.59: LDAP URL produced address [email protected]
    00:21:45.59: mmc_read_url result: [mail] [email protected]
    00:21:45.59: URL resolution returned: [mail] [email protected]
    00:21:45.59: Attribute index: 16
    00:21:45.59: LDAP URL produced address [email protected]
    00:21:45.59: No more result to return
    *** Debug output from rewriting a forward envelope address:
    00:21:45.59: Rewriting: Mbox = "mailtes1", host = "portnet.com.sg", domain = "$*", literal = "", tag = ""
    00:21:45.59: Rewrite: "$*", position 0, hash table -
    00:21:45.59: Found: "$A$E$F$U%[email protected]"
    00:21:45.59: Match, pattern = "portnet.com.sg", current = "(*domaincheck*)"
    00:21:45.59: old state = not checked.
    00:21:45.59: Domain check on portnet.com.sg.
    00:21:45.59: Added domain result 1 to cache for portnet.com.sg.
    00:21:45.59: new state = succeeded.
    00:21:45.59: New mailbox: "mailtes1".
    00:21:45.59: New host: "portnet.com.sg".
    00:21:45.59: New route: "mailsit.portnet.com.sg".
    00:21:45.59: New channel system: "mailsit.portnet.com.sg".
    00:21:45.59: Looking up host "mailsit.portnet.com.sg".
    00:21:45.59: - found on channel l
    00:21:45.59: Routelocal flag set; scanning for % and !
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = LOGGING NOGREY NORESTRICTED RETAINSECURITYMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 = MASTER_DEBUG SLAVE_DEBUG
    channel flags #6 = LOCALUSER REPORTNOTARY
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = portnet.com.sg portnet.com.sg
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = mailsit.portnet.com.sg
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    expandchannel =
    notificationchannel =
    dispositionchannel =
    saslswitchchannel =
    tlsswitchchannel =
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (mailsit.portnet.com.sg,mailsit.portnet.com.sg)) (host portnet.com.sg)
    envelope From: address = [email protected]
    name =
    mbox = mailtes1
    emails sent to mailtes1 using the Sun messaging 2005q4 service will be en-queued as '[email protected]' for sender and de-queued to mail store with '[email protected]' as sender.
    10-Dec-2007 00:20:00.88 tcp_intranet ims-ms E 1 [email protected] rfc822;[email protected] mailtes1@ims-ms-daemon
    10-Dec-2007 00:20:01.63 ims-ms D 1 [email protected] rfc822;[email protected] mailtes1@ims-ms-daemon
    Physical message file will show '[email protected]' as sender.
    But this time the recipient is '[email protected]'
    Return-path: <[email protected]>
    Received: from portnet.com.sg (pnsgsit1app2.portnet.com [10.106.65.36])
    by mailsit.portnet.com.sg
    (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
    with ESMTP id <[email protected]> for
    [email protected]; Mon, 10 Dec 2007 00:20:00 +0800 (SGT)
    Received: from [10.106.65.101] (Forwarded-For: 10.10.140.109)
    by mailsit.portnet.com.sg (mshttpd); Mon, 10 Dec 2007 00:20:00 +0800
    Date: Mon, 10 Dec 2007 00:20:00 +0800
    From: [email protected]
    Subject: test mail from ims62
    To: [email protected]
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Mailer: Sun Java(tm) System Messenger Express 6.2-8.04 (built Feb 28 2007)
    Content-type: text/plain; charset=us-ascii
    Content-language: en
    Content-transfer-encoding: 7bit
    Content-disposition: inline
    X-Accept-Language: en
    Priority: normal
    Original-recipient: rfc822;[email protected]
    test
    Questions:
    1) How do i retain the functionality of using 1st value of the mail attribute as the address to be used?
    I need the address reversing to retain '@portnet.com.sg' value.
    2) I've not encountered the same problem when using ims52.
    Is there a functional diffences here?

    Hi Shane,
    Thank you for the reply.
    We tried adding a mailequivalentaddress attribute, eg [email protected] but the From field still have the value from the mail attribute, eg [email protected]. Do we still need to configure anything to make this to work?
    Besides we tried another option by doing the following:
    a. Changing the following lines in options.dat file:
    REVERSE_URL=ldap:///$V?mail?sub?$Q
    to
    REVERSE_URL=ldap:///$V$N?sub?$R
    b. We ensure that '@portnet.com.sg' is the 1st value
    c. adding a 'noreverse' keyword for the 'ims-ms' channel
    And it works without the need for the mailequivalentaddress, is this a proper implementation?
    any implications with putting 'noreverse' for ims-ms channel?
    We're now considering changing of primary address attribute used.
    Need your advise on the following:
    1) Please advise how go about configuring another attribute to store the primary address.
    2) Can we use mailAlternateAddress as the new primary address attribute?
    If a totally new attribute is needed, please advise on the requirements for the creation of this attribute to be usable by Sun Messaging 2005Q4.
    This change was mentioned in the administration guide.
    Chapter 9 The Direct LDAP Algorithm and Implementation
    Seeding the Reversal Cache
    Next the primary address and any aliases attached to the user entry are considered. This information is used to seed the address reversal cache. It plays no part in the current address translation process. First, the primary address, personal name, recipient limit, recipient cutoff, and source block limit attributes are considered. The primary address is normally stored in the �mail� attribute; another attribute can be specified by setting the LDAP_PRIMARY_ADDRESS MTA option appropriately. (The primary address reverses to itself, of course.) There is no default attribute for any of the other attributes. If you want to use them, you must specify them with the LDAP_PERSONAL_NAME, (see Vacation Autoreply Attributes) LDAP_RECIPIENTLIMIT, LDAP_RECIPIENTCUTOFF, (see Limiting Message Recipients) and LDAP_SOURCEBLOCKLIMIT (see Specifying Absolute Message Size Limits) MTA options. The corresponding domain-level recipient limit, recipient cutoff, and source block limit attributes are also considered at this point. User-level settings completely override any domain-level setting.
    Next, any secondary addresses are considered and a cache entry is made for each one. There are two sorts of secondary addresses: Those that undergo address reversal and those that do not. Both must be considered in order to properly seed the address reversal cache because of the need to check for message capture requests in all cases.
    Secondary addresses that undergo reversal are normally stored in the mailAlternateAddress attribute. Another attribute can be specified by setting the LDAP_ALIAS_ADDRESSES MTA option. Secondary addresses that do not undergo reversal are normally stored in the mailEquivalentAddress attribute. Another attribute can be specified with the LDAP_EQUIVALENCE_ADDRESSES MTA option.
    Edited by: sheeyong on Dec 10, 2007 5:25 AM

  • OIM LDAP Sync for MS LDS (ADAM) support?

    Is OIM LDAP Sync supported via OVD against MS LDS as the backend?
    Thanks.

    Just export your LDAPUser.xml and see whether any multivalue attribute <tags> are present?
    If not, then i believe you need to go ahead with Connector Approach instead of LdapSync.
    ~J

  • Access LDAP attribute from Webmail

    Hi there,
    We need to do some customizations on webmail.
    One of the things we want to do is to be able to read and write an ldap attribute outside the multivalue attribute NSWMEXTENDEDUSERPREFS.
    I've seen on "Webmail Express Customization Guide" that we can load on http startup other external attributes using a command like:
    configutil -l -o service.http.extrauserldapattrs -v myattribute:w
    on which the :w at the end means that webmail could have write access to the attribute. (Pag 71 of W.E.C. Guide)
    I've done that, but the problem is that if I try to write a new value on the attribute, the value is created on the NSWMEXTENDEDUSERPREFS as myattribute=value
    So .. It reads from one side but write to another! Any ideas how to write on the myattribute directly from webmail interface?!
    Thanks,
    Sergio Sousa

    Hi,
    have you allready tryed to read the attribute directly from the BOL in the implementation class of the view, without creating any new context node? Maybe this coding might help you:
    DATA: lr_entity        TYPE REF TO cl_crm_bol_entity,
    DATA: lv_collection TYPE REF TO if_bol_bo_col.
    DATA: lv_cat type string.
    lr_entity ?= me->typed_context->BTAdminH->collection_wrapper->get_current( ).
      TRY.
      lv_collection = lr_entity->get_related_entities( iv_relation_name = 'BTHeaderActivityExt' ).
       CATCH cx_sy_ref_is_initial.
    ENDTRY.
          lr_entity ?= lv_collection->get_current( ).
      CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_string
        EXPORTING
          iv_attr_name = 'CATEGORY'
        RECEIVING
          rv_result    = lv_cat.
    Best regards,
    Oliver

  • Help with target filter in an ACI and editing multivalue attributes

    Here is the ACI I tried to use:
    (targetattr = "*")
    (target = "ldap:///ou=xyz,dc=company,dc=com")
    (targetfilter=(objectclass=groupofuniquenames)||(objectclass=extendedobjectclass1)||(objectclass=extendedobjectcla ss2))
    (version 3.0;acl "xyzadmin privileges";
    allow (selfwrite,write,delete,add)
    (userdn = ldap:///uid=xyzadmin,ou=people,dc=company,dc=com");)
    1. Is the targetfilter syntax above correct? This does not work even when I tried the other notation
    " (|(|(objectclass=X)(objectclass=Y))(objectclass=Z)) "
    2. xyzadmin needs to update (another system creates a value initially) an 'extendedattribute' in either of the 'extendedobjectclass1/2'. This works if I set seperate ACIs. If I combine them (as above) does not work. Any solutions?
    3. Not exactly related to this. The 'extendedattribute' is a multi-value attribute. Say it has two values,
    (extendedattribute: ID1=222|ID2=333, ID1=444|ID2=-1). If I want to use ldapmodify and replace the
    'ID1=444|ID2=-1' to 'ID1=444|ID2=555', how can it be done?
    The same question can be rephrased as 'how can I replace a value amongst a set of values in a multivalued attribute with ldapmodify'? Is it possible?
    p.s.: Please don't ask to split the ID1, ID2 into 2 attributes as one of the products using the directory requires it to be that way (ID1=<vale>|ID2=<value>).

    My answer will concerne only your first query.
    Firstly, the target syntax must include the target keywork in the first portion of rule.
    Have you try these syntax ===>
    (targetfilter="(|(objectClass=groupofuniquenames)(|(objectClass=extendedobjectclass1)(objectClass=extendedobjectclass2)))")
    or
    (targetfilter="(|(objectclass=groupofuniquenames)(objectclass=extendedobjectclass1)(objectclass=extendedobjectclass2))"
    The first syntax works correctly for me.
    I hope this is help you and good luck for the rest.

  • Modifying Multivalued Attribute - Error?

    Hi All,
    Im able to update the LDAP Attributes by using modifyAttributes method, But i want to update a multivalued Attribute in the Active Directory.
    I tried using array its not working help me out...
    Jagan Thanks.....

    Just iterate through the array members and add them to the attribute. Something like:String phoneNumbers[] = {"123 456 7890","456 789 0123", "789012 3456"};
    ModificationItem[] mods = new ModificationItem[phoneNumbers.length];
    for (int i = 0;i<phoneNumbers.length;i++) {
      mods[i] = new ModificationItem(DirContext.ADD_ATTRIBUTE, new BasicAttribute("otherTelephone",phoneNumbers));
    Just be aware of the different operations that can be performed against a multi-valued attribute, clearing all of the values, replacing or deleting a single value and  appending values.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Reading multivalued attribute

    Hi,
    I have a multivalued attribute defined in LDAP and was synchronized to plumtree. After synchroinzation, the attribute with multiple values came in to plumtree and I am able to see the values of the attribute by clicking on user profile. But when I try to read the attribute using the following query only the last value is coming up.
    Here is the query I am using.
    IPortletContext portletContext = PortletContextFactory.createPortletContext(request, response);IPortletRequest portletRequest = portletContext.getRequest(); out.write("locationString = " + portletRequest.getSettingValue(SettingType.UserInfo,"ttcmytlocation"));
    In the profile of the user ttcmytlocation attribute has multiple values, but reading returns only the last value. Is there any other way to query the values? Please help!!
    Thanks.

    Use LDAP is ticked but no server specified
    Tried Selecting the server but no effect
    Every where I look in POA, Domain setting its set to the SERVER's IP address
    not DNS name!!
    Copied NAMED.NLM (just the NLM) from SP5 server - error gone but still get
    the LDAP error 81 when a
    user tries to login to GW.
    I also POA > Security - I tried setting security to LOW (which unticks LDAP)
    but still can't login
    "Anders Gustafsson" <[email protected]> wrote in message
    news:[email protected]..
    > Eric,
    >> "Starting eDirectory integrated Novell DNS Server...
    >> error:NWDSRead Failed while reading a multivalued attribute: -603
    >> Loading the configuration and zone data completed .
    >> DNS Server running "
    >>
    > OK. I assume that you have configured your POA to use the same server for
    > LDAP. If so, did you use the DNS name or IP address? If DNS name, I
    > suggest you try IP address as this takes DNS out of the picture.
    >
    > The error you are seeing indicates that you are not current on servicer
    > packs:
    > http://www.novell.com/support/search...200%2043955231
    >
    > I suggest you apply SP6 plus the post SP6 fixes after resolving your POA
    > issue and reading this:
    > http://wiki.novell.com/index.php/Nw65sp6
    >
    > - Anders Gustafsson, Engineer, CNE6, ASE
    > NSC Volunteer Sysop
    > Pedago, The Aaland Islands (N60 E20)
    >
    > Novell does not monitor these forums officially.
    > Enhancement requests for all Novell products may be made at
    > http://support.novell.com/enhancement
    >
    > Using VA 5.51 build 315 on Windows 2000 build 2600
    >

  • Jabber Windows - no phone control with LDAP Custom filter

    I am unable to control the desktop phone from the Jabber 9.1 Windows client when the CallManager LDAP Directory uses a Custom Filter.
    Has anyone else experienced this?
    If I set the LDAP Custom Filter to <none> and save, then Desktop Phone control works great.
    If I set it to use my custom filter, then trying to enable Desktop control just gives me the spinning circle, then times out to the Red X symbol.
    I do not need to resync the LDAP Directory to get the error, just enable/disable the custom filter and save.
    In both cases calling from the Computer works great.
    This is an On-Prem deployment with full MS-AD LDAP integration.
    Versions are:
    Jabber - 9.1.0 build 12296
    CUPC - 8.6.4.11900-1
    CUCM - 8.6.2.22900-9
    I upgraded to CUCM 8.6.2 SU2 last night hoping that would fix the problem, but no luck.
    The LDAP filter is one I have used in numerous other clusters with no CTI issues.
    It allows me to sync to the root directory, but only import active user accounts with an entry in the ipPhone AD attribute:
    (&((objectclass=user)(ipPhone=*))(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))
    Thanks, Randy

    Hi Randy,
    Have you specified this base filter in jabber-config.xml file? As per Admin Guide:
    "In some cases, base filters do not return query results if you specify a closing bracket in your Cisco Jabber for Windows  configuration file. For example, this issue might occur if you specify  the following base filter: (&(memberOf=CN=UCFilterGroup,OU=DN))
    To resolve this issue, remove the closing bracket; for example, (&(memberOf=CN=UCFilterGroup,OU=DN)"
    Thanks,
    Maqsood

  • How get all sAMAccountName from LDAP?

    Good day ... i'm find this ...
    declare
    -- Adjust as necessary.
    l_ldap_host VARCHAR2(256) := &&;
    l_ldap_port VARCHAR2(256) := &&;
    l_ldap_user VARCHAR2(256) := &&;
    l_ldap_passwd VARCHAR2(256) := &&;
    l_ldap_base VARCHAR2(256) := 'dc=&&,dc=&&,dc=&&';
    l_filter varchar2(100) := '(&(sAMAccountName=*))';
    l_retval pls_integer;
    l_session dbms_ldap.session;
    l_attrs dbms_ldap.string_collection;
    l_message dbms_ldap.message;
    l_entry dbms_ldap.message;
    l_attr_name varchar2(256);
    l_ber_element dbms_ldap.ber_element;
    l_vals dbms_ldap.string_collection;
    l_raw dbms_ldap.binval_collection;
    l_result varchar2(100);
    begin
    -- Choose to raise exceptions.
    dbms_ldap.use_exception := true;
    dbms_ldap.utf8_conversion := false;
    -- Connect to the LDAP server.
    l_session := dbms_ldap.init(hostname => l_ldap_host, portnum => l_ldap_port);
    l_retval := dbms_ldap.simple_bind_s(ld => l_session, dn => l_ldap_user, passwd => l_ldap_passwd);
    -- Get all attributes
    l_attrs(1) := 'sAMAccountName'; -- retrieve all attributes
    l_retval := dbms_ldap.search_s(ld => l_session
    ,base => l_ldap_base
    ,scope => dbms_ldap.scope_subtree
    ,filter => l_filter
    ,attrs => l_attrs
    ,attronly => 0
    ,res => l_message);
    if dbms_ldap.count_entries(ld => l_session, msg => l_message) > 0
    then
    -- Get all the entries returned by our search.
    l_entry := dbms_ldap.first_entry(ld => l_session, msg => l_message);
    <<entry_loop>>
    while l_entry is not null
    loop
    -- Get all the attributes for this entry.
    dbms_output.put_line('---------------------------------------');
    l_attr_name := dbms_ldap.first_attribute(ld => l_session
    ,ldapentry => l_entry
    ,ber_elem => l_ber_element);
    <<attributes_loop>>
    while l_attr_name is not null
    loop
    -- Get all the values for this attribute.
    l_vals := dbms_ldap.get_values(ld => l_session, ldapentry => l_entry, attr => l_attr_name);
    <<values_loop>>
    for i in l_vals.first .. l_vals.last
    loop
    dbms_output.put_line('ATTIBUTE_NAME: ' || l_attr_name || ' = ' || substr(l_vals(i), 1, 200));
    end loop values_loop;
    l_attr_name := dbms_ldap.next_attribute(ld => l_session
    ,ldapentry => l_entry
    ,ber_elem => l_ber_element);
    end loop attibutes_loop;
    l_entry := dbms_ldap.next_entry(ld => l_session, msg => l_entry);
    end loop entry_loop;
    end if;
    -- Disconnect from the LDAP server.
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    dbms_output.put_line('L_RETVAL: ' || l_retval);
    end;
    If i use filter '(&(sAMAccountName=*))' (me need get all 'sAMAccountName')
    ERROR at line 1:
    ORA-31202: DBMS_LDAP: LDAP client/server error: Sizelimit exceeded
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_LDAP", line 1457
    ORA-06512: at "SYS.DBMS_LDAP", line 234
    ORA-06512: at line 28
    How fix it ?
    Thanks all.
    p.s. I'm beginner Developer Oracle 10g

    Probably some workaround needed. Hopefully this one works: http://www.freelists.org/archives/oracle-l/04-2006/msg01100.html

  • Questions on LDAP w.r.t XML Publisher 5.6.2

    Hi all,
    I have 2 questions on LDAP integration w.r.t XML P 5.6.2
    1) Is OID the only supported LDAP repository? I tried to set up a Iplanet directory server against XMLP, but could not. Did I miss something, or it is not supported?
    Other than OID, any other LDAP supported?
    2) Suppose, my use-case is: I want to show some values from the database, and also in the same report, print out the user attributes from the LDAP (like email id of the user, for example) who fired the report, then is this possible?
    Thanks,
    Ambarish,

    Ok. Question 1 - I have answered myself. I could not set up SunONE Directory server against XMLP :-(
    But I could set up against openldap. :-)
    I plan to contribute to the blog in 2/3 days time on how this can be done.
    But I still need some help on the question 2. How can I create a report which has all the data from both the backend database, and well as from the LDAP repository. For example, report like:
    Report Fired By:
    EMAIL id:
    Mobile:
    (data1, data2...)
    where data1, data2 comes from the database, and email id, mobile from the LDAP.

  • LDAP supporting multiple DNS domains

    I have an environment with multiple DNS domains, and am configuring a Directory server (DS 6.3.1) to centralize various OS configuration maps including user authentication. None of the DNS domains have unique data, so I'd like to do something like storing all the real data in one suffix, then somehow have all clients look to that primary suffix. I am aware that the Solaris Native LDAP client wants to bind to a nisDomainObject that matches its DNS domain. I'm just having a hard time believing that I really need to manage all those individual suffixes when they don't have unique data requirements.
    Take as an example the following domains to be supported: foo.example.com, bar.example.com, dev.example.com, qa.example.com, prd.example.com (no hosts are actually in "example.com", they are all in subdomains). Again, all share common configuration data, same user IDs, etc - no unique maps are required.
    I created a suffix, "dc=example, dc=com", set it up with idsconfig. All is well there.
    [A] My first thought is to bind all Solaris clients, regardless of their DNS domain, to the baseDN of "dc=example, dc=com" in order to avoid having a separate suffix for each DNS domain. I tried to do this using "-a defaultSearchPath=dc=example,dc=com" with ldapclient init, but it failed with an error indicating it wants to see the nisDomainObject of its real DNS domain.
    The second though I had, which I don't believe is possible, is to find some sort of a LDAP equivalent of a symbolic link so that I could actually have an object for each DNS domain, but it would simply point back to "dc=example,dc=com". I can't find anything in the documentation which suggests this is possible, but I'd love to be wrong!
    [C] Perhaps this could be somehow done with a rats nest of SSDs, but that really seems unwieldy, right? I plan on using a fair amount of the available objects, so it would be many SSDs per suffix. Yuck.
    Can anyone comment on my above thoughts, or provide how they would go about supporting multiple DNS domains that have common configuration data?
    Thank you,
    Chris

    Ok, I answered my own question. Turns out it's pretty easy. Just use the "-a domainName=example.com" option with `ldapclient` then make sure that the FQDN of the LDAP server is available (or use its IP address). My problem was that the ldapclient overwriting nsswotch.conf was clobbering the SSL session because I used the FQDN which couldn't resolve.
    This leaves an interesting condition of having the output of "domainname" not match the DNS domain. I'm testing now to see if this causes any unexpected issues with our environmnet, but I suspect it's not a problem.

  • SSRS with DAX - parameters multivalue vs total element

    Hi all,
    I'm using SSRS on top of a SSAS tabular model to create intuitive dashboards for management department.
    One thing I'm struggling with is the lack of a "total" on parameters. What I'm doing is, based on the fact table, I create the datasets that will feed each parameter, so it only has the dimension members available on the fact table. That is fine
    performance wise, you only have 1 element and it renders very quickly.
    For a management perspective at a higher level it is important to view the totals to have the big picture of the information. In my project we are in a University, so I have the parameters Year, school (there are several schools in the university campus)
    and the course (computer sciences, math, statistics, etc).
    At first glance, if I'm a course coordinador I want to pick my course and have a global view, and I'm achiveing that, but imagine now, that I am the school coordinator, or the university coordenator.
    I want to see the aggregate values by all courses or by all schools.
    In my view I have 2 ways to do this and I come from a tradition cubes background:
    1 - I would use the all element the cubes hierarchy have on each attribute
    2 - I would use multivalue parameters with StrToSet (worse performance)
    Using DAX what is your approach?
    Best regards

    Hi AsifMehmood,
    Per my understanding you have create an SSRS report with SharePoint list, now you don’t know to create the distinct parameters by using CAML query,  right?
    For the CAML language doesn’t have any reserved word (or tag) to set this particular filter to remove duplicate results, but we can use the custom code to do this function. I have tested on my local environment and we can do that by create one hidden parameter(Param1)
    to get all the values from the fields which will  add the filter and then create another parameter(Param2) to get the distinct values based on the Param1, we use the custom code to do the deduplication.
    Step by Steps information in below thread for your reference to create the parameters and the custom code:
    "How to get distinct values of sharepoint column using SSRS"
    Other similar thread for your reference:
    https://audministrator.wordpress.com/2014/02/17/sharepoint-list-add-distinct-parameter-value/
    If your problem still exists, please feel free to ask and also try to provide us more details information.
    Regards
    Vicky Liu

Maybe you are looking for

  • Cannot create stored procedure in Azure SQL database

    When I try to create a stored procedure using Management Studio (Snippet follows use PPSC_Sky_Data go /****** Object:  StoredProcedure [dbo].[sp_RegisterProd]    Script Date: 17-02-2015 17:52:50 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON G

  • Font pack required when opening an English PDF?

    Hi, Recently I am facing a problem with Adobe Reader 10.1. A font pack is required when opening a dynamic PDF generated from Adobe LiveCycle Designer. There is no other language than English is being designed to the PDF. This scenario is only happene

  • How to stop a batch job

    Hi Folks, Please do let me know how to stop a batch job. I am having a batch job which will run a program for every 15 mins in order to update some Z-tables. I need to debug and do some investigation. Meanwhile when I am doing this debugging it may t

  • 12" PowerBook vs. iBook+Mac mini?

    I noticed the specs of each of these models and the 12" PowerBook has the exact (if not worse) specs as the last G4 mac mini: 1.5 GHz G4 167MHz Bus, 512k cache PC3200 RAM 5400 RPM hard drive ATi Radeon 9200 AGP 4x, 64MB. The 12" PowerBook's specs are

  • HELP!! Can't view canvas on tv

    I am using FCP 7 on a  27" IMAC. I connected my tv to the IMAC via the mini displayport and using the correct mini displayport to hdmi connection. I want to view the canvas on the computer AND tv but I can't figure out how to do it??? The tv shows co