How to add existing LDAP users to SMS

Hi,
I have an existing Sun Directory server with users that are synced with Sun ISW.
I have now installed the messaging server and want to add all of my existing users into the messaging server.
What is the best way to do this? Would it be to create some script of all the users and then use commadmin modify?
Seems like there would be an easier way..
TIA,
Daren

daren-s wrote:
I have an existing Sun Directory server with users that are synced with Sun ISW.
I have now installed the messaging server and want to add all of my existing users into the messaging server.Providing user-level access and accounts on messaging server requires that you have all the necessary objectclass and user directory attributes set correctly.
The easiest way to determine what you need is to use commadmin to create a user afresh and reverse engineer the attributes/objectclasses. The schema reference guide goes through what each objectclass/attribute does:
http://docs.sun.com/app/docs/doc/819-4437
You also need to provision domains so that email can be routed to these users.
What schema are you planning on using (schema 1/1.5/2)?
What is the best way to do this? Would it be to create some script of all the users and then use commadmin modify?That's pretty much what you are going to need to do.
At some juncture you need to configure the user accounts to set the users mailhost: etc. which is going to require scripting/modification of directory attributes. What method you use to update the directory (commadmin/ldapmodify/some perl module etc.) is up to you.
Seems like there would be an easier way..Any 'easier' approach was pretty much counted out when you sync'd the users across rather then provisioning them using Sun tools (delegated administrator/IDM etc.).
Regards,
Shane.

Similar Messages

  • How to Add Active Directory user to Admin Role

    Hi All,
    I am trying to figure out how to add a AD user to the Admin Role..
    I am connected to AD and can see the user (myself), however, when I try to add myself to the admin role, it says user not found.
    I go to Security Realms > myreals > Roles and Policies > Global Roles > Roles > Admin > View Role Condition.
    I see that the Administrators Group is already added. Now I click "add Conditions" and select "User" from the Predicate List and type in the user " Doe' John".
    On the next screen I get "user: John or Dow" does not exist.
    Another option could be to add the user to the Administrator group, but I couldnt figure out how to do that as well. When I navigate to the user under Users or Groups, I dont see an option to add that user to the Administrator group.
    Is it that you can only add users created in Weblogic to the Admin group?
    Any help on this will be very appreciated.
    Thanks in advance.

    I think I got it. I had to add the AD group the user is part of to the Admin role.

  • How to add existing jsp file to a project?

    I am trying out 10g developer preview. Looks like a lot of bugs are there in the tool. I would like to know how to add existing jsp file into a project. I tried the Import functionality, but it shows the option to create a project and include only Java files. Is there a way to do this? Thank you

    Just copy the files in the directory where the rest of your source file is.

  • How to add a new line in SMS(Line Break).

    Hi All,
    I need to send SMS from PL\SQL Procedure
    The problem i have been facing is that the string being passed in as sms content is not parsing a newline character.
    It shows all content in one line.
    I need to break them in several lines.
    Give me a direction how to add a new line in SMS.
    Regards,
    Raj.

    Hi,
    Sure, Here it is
    CREATE OR REPLACE PROCEDURE APPS.AUTO_SMS_RTV_REPORT
    IS
    sender          VARCHAR2(1000);
    recipient     VARCHAR2(1000);
    message          VARCHAR2(4000);
    sub          VARCHAR2(1000)     := 'HELLO';
    dt1          varchar2(1000)     := to_char(sysdate,'DD-MON-YY');
    mailhost     VARCHAR2(30) := '10.7.7.xxx';     
    mail_conn     UTL_SMTP.CONNECTION;
    v_crlf VARCHAR2(2) := CHR(13)||CHR(10);
    CURSOR cur_Rejection_Records IS
                   SELECT DISTINCT
                        rt.VENDOR_SITE_ID               ,
                        pvs.email_address     VENDOR_MAIL_ID     ,
                        pvs.PHONE          vendor_contact_no ,
                        hre.EMAIL_ADDRESS     Employee_mail_id ,
                        hre.FULL_NAME
                   FROM apps.rcv_transactions      rt,
                        apps.po_vendors           pv,
                        apps.po_vendor_sites_all     pvs,
                        apps.mtl_transaction_reasons mtr,
                        apps.fnd_user          fu,
                        apps.hr_employees          hre     
                   WHERE transaction_type = 'RETURN TO VENDOR'
                   --AND        TRUNC(rt.transaction_date) = TRUNC(SYSDATE)
                   AND     rt.vendor_id          = pv.vendor_id
                   AND     rt.vendor_site_id     = pvs.vendor_site_id
                   AND     rt.REASON_ID          = mtr.REASON_ID(+)
                   AND fu.user_id          = rt.last_updated_by
                   AND hre.EMPLOYEE_ID     = fu.EMPLOYEE_ID
                   AND TRANSACTION_ID IN (
                                  11902189,
                                  11902253,
                                  11902148)
    BEGIN
         FOR rec_Rejection_Records IN cur_Rejection_Records
         LOOP
         Begin
              sender     := '<[email protected]>';
              recipient     := rec_Rejection_Records.vendor_contact_no || '@aaaa.com';
              mail_conn := utl_smtp.open_connection(mailhost, 8025);
              utl_smtp.helo(mail_conn, mailhost);
              utl_smtp.mail(mail_conn, sender);
              utl_smtp.rcpt(mail_conn, recipient);
              utl_smtp.DATA(     mail_conn,
                                  'Date: ' || TO_CHAR(SYSDATE, 'Dy, DD Mon YYYY hh24:mi:ss') || utl_tcp.crlf ||
                                  'From: ' || sender     || utl_tcp.crlf ||
                                  'Subject: '|| sub     || utl_tcp.crlf ||
                                  'To: ' || recipient || utl_tcp.crlf ||
                                  utl_tcp.crlf ||
                                  'Dear Supplier,'||CHR(10)|| utl_tcp.crlf ||'\\\0x0A'|| -- HERE I NEED LINE BREAK
                                  'Please.'|| utl_tcp.crlf                          
              DBMS_OUTPUT.PUT_LINE('Yep !!! SMS Sent Sucessfully :) ');
              utl_smtp.quit(mail_conn);
         EXCEPTION
              WHEN UTL_SMTP.PERMANENT_ERROR THEN
                        dbms_output.put_line('Error - ' || SQLCODE || ' - ' || SQLERRM);
              WHEN OTHERS THEN
                        dbms_output.put_line('Error - ' || SQLCODE || ' - ' || SQLERRM);
         END;
         END LOOP;
    END AUTO_SMS_RTV_REPORT;
    /

  • How to add existing warehouse to the existing item in OITW

    Hi,
    Could somebody help me to resolve this problem:
    I try to add via SDK (using ItemWarehouseInfo object) existing item to existing warehouse - OITW table (our SBO v.2004 configured to not open automatically all warehouses for all items). - like via Item card user adds manually warehouse code in the stock tab. There is code i use:
    if oItems.GetByKey("ItemCode")
        oItems.WhsInfo.WarehouseCode = "WarehouseCode"
        oItems.WhsInfo.Add()
        oItems.Update()
    endif
    but SDK instead of add new record to the OITW replaces existing record with other warehouse code (like update).
    What have i do to resolve this issue ?

    Oleg,
    new records are not added in OITW when you add existing items to existing warehouses. OITW will have new records only when you create new warehouse through UI or SDK. in all transaction that follow, the respective warehouse quantity in OITW will be updated. how about using StockTransfer  object? it does what you want.
    regards,
    Binita Joshi

  • How to add a new user property and then retrieve it  from a portlet

    Trying to add a user property and then retrieve it form a remote web service?
    Add a user property and map it
    1. Create a property2. Go to Global Object Property Map3. Go to users, edit and select the new property.4. Go to User Profile Manager5. For portlets, go to the "Position Information" section and add it. (for the purpose of this test, add it to the profile section as well)6. Under the "User Profile Manager" go to the "User Information - Property Map" step in the wizard and 7. Go to the "User Information Attribute" and add the property.8. Click on the pencil to the right of it and give it a name (The name is what's going to appear in the list of user information under the portlet web service)9. Click finish10. Now create/edit the web service for the portlet from which you want to displays user properties. 11. Under the "User Information", click "add existing user Info" and select the property you want.12. From the portal toolbar, edit the user profile under "My Account" and then "Edit user Profile" and give the new property a value. 13. Test code below: ================================in C# IPortletContext context = PortletContextFactory.CreatePortletContext(Request,Response);IPortletRequest portletRequest = context.GetRequest();System.Collections.IDictionary UserInfoVariables = portletRequest.GetSettingCollection(SettingType.UserInfo);System.Collections.IDictionaryEnumerator UserInfo = UserInfoVariables.GetEnumerator();
    while(UserInfo.MoveNext()){   //to display in a listbox   ListBox1.ClearSelection();   ListBox1.Items.Add(UserInfo.Key.ToString() + ": " + UserInfo.Value);}===========================in ASP: <%Dim objSettings, dUserInfo, sEmpIDSet objSettings = Server.CreateObject("GSServices.Settings") ' get the user info settings, get employee ID from user infoSet dUserInfo = objSettings.GetUserInfoSettings
    for each item in dUserInfo response.Write "<BR>" & item & ": " & dUserInfo(item)next%>

    IPortletContext portletContext = PortletContextFactory.createPortletContext(req, res);
    IPortletRequest portletReq = portletContext.getRequest();
    String value = portletReq.getSettingValue(SettingType.Portlet,settingName);

  • How to add multiple skype users in Lync 2013?

    Dear Expert,
    I already add skype user but I can only add one by one. How do I add multiple skype users in Lync 2013
    Thank you

    Hi,
    As I konw, there is no native method to add multiple Skype users to Lync 2013 so far.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to add a new user to WLIConsole using a Web Application?

    Hi,
    I add the new users directly to WLIConsole, but I would like to do it using my web application (jpf). The changes shoud reflect in WLIConsole. How could I do that?
    Thanks in advance,
    Tatiana

    Use [SU01 and PA30|https://www.sdn.sap.com/irj/scn/advancedsearch?query=su01+pa30&cat=sdn_all]. (click on the link, there are already many threads on this subject)
    Regards

  • How to add a default user group for multiple document type's?

    Hi,
    I am trying to add same default user group for different document types when MA is created. Is there any way to setup using a single "Document Security Template"? Or I need to create different templates for different document types?
    Please confirm.
    Thanks,
    Saloni

    Hi Saloni,
    Based on what your specific requirement, it might be easier to do it with scripting.
    If you are doing it using Document Security Templates, you would have to create a Document Security Template for each of the 6 MA types and assign the default group. Create another one and leave the Document Type field blank, so it will apply to the other 4 MA types that don't have a default group.
    Regards,
    Vikram

  • How to authenticate AD LDAP user in Oracle ADF login?

    Hi All,
    I have some requirement in ADF web-application.here one simple adf application they want to authenticate with AD LDAP user, and they want to see logged user details from LDAP.
    for example after user logged in from adf login page, in next page he can able to see his details like first name,last-name,email,group,role, working phone like some details in next page.
    let me know possibles, to active this requirements.give me some solution to make this simple.
    Thanks,
    Siva

    thanks for quick reply!
    yeah just now i went through the same blow.so i decided to follow java base integration.here we need to pass username and password from UI right,while i am trying the something. I had some here with rich text binding.
    I am unable to set the username and password dynamic if I use Richtext type input text in ADF login page.
    I am newable to this integration.can you please point to some example to LDAP integration with adf using java. or if not complex can you please send me LDAP integration example which u executed(to my mail) u can get from my profile.
    thanks & Regards
    Siva

  • How to add operation system user in atable

    oracle 10g and Oracle Enterprise Linux 5.4
    i wouil like to add operation system user name in a oracle table so that i can monitor data in the particular table

    Your question is unclear.
    Check also v$session dynamic performance view may be you can get information from this view which you can pull into your custom table.
    And your query is about finding who is connected then,
    To know about the list of users that is now connected and the time when they connect to database issue the following query.
    SQL> SELECT s.username, s.program, s.logon_time
    FROM v$session s, v$process p, sys.v_$sess_io si
    WHERE s.paddr = p.addr(+)
    AND si.sid(+) = s.sid
    AND s.type = 'USER';
    USERNAME PROGRAM LOGON_TIM
    SAMI sqlplus@testerp (TNS V1-V3) 26-NOV-10
    oracle@testerp (J000) 26-NOV-10
    To know only the current session user name you can issue the following query,
    SQL> SELECT USERNAME from v$session where audsid = sys_context('userenv','sessionid');
    USERNAME
    SAMI
    To know about on which schema you are connecting issue following query.
    SQL> SELECT sys_context('USERENV', 'CURRENT_SCHEMA') FROM dual;
    SYS_CONTEXT('USERENV','CURRENT_SCHEMA')
    SAMI
    To know about the connected user user for the current session issue,
    SQL> SELECT sys_context('USERENV', 'SESSION_USER') FROM dual;
    SYS_CONTEXT('USERENV','SESSION_USER')
    SAMI
    If you use SQL*plus then simply issue,
    SQL> SHOW USER;
    USER is "SAMI"

  • How to add shortcuts to user Start Menu and Taskbar or Desktop with using Microsoft Office 2013 Config file.

    Hello,
    How can i add the shortcuts for Office 2013 feature (Word, excel, ext) to the users taskbar or desktop with using config.xml file while installing the Microsoft Office 2013 from SCCM?
    I know how to do that with OCT, but i have another problem if i use OCT. So i have to do it with Config.file, but i don't know which code can i write on config.xml file to create shortcut on desktop or taskbar...
    Regards,

    Hi
    There is a known issue about
    changing the shortcut location for an Office 2013 application:
    When you try to change the shortcut locations for Office 2013 applications in the Office Customization Tool (OCT), you receive the following error message:
    Invalid start in folder. Please try again.
    Then, you add the Start in location for Office 2013 and run a customized installation. When you double-click the shortcuts that are displayed on the desktop, Configure shortcuts does
    not work and you receive the following error message: 
    Sorry, we couldn’t find your file. Is it possible it was moved, renamed or deleted?
    To work around this issue, type a single open bracket ([) in the Start in
    field.  
    In addition, refer to the link below on "Configure shortcuts" in OCT:
    http://technet.microsoft.com/en-us/library/cc179097.aspx#Configure_shortcuts
    Regards
    Tylor Wang
    TechNet Community Support

  • How to add one more user the email notification

    Hi,
    I would like to know, how I can add 'CC' / One more user to the email notification?
    Currently system is sending email with From Address, And To address (to the user email). But I need to send email to User and one Administrator.
    Template: Create User Self Service Notification
    How can I achieve this?
    thanks

    "Set the Search Allowed property to True for any LOV result items you want to present to the user as searchable values. These items are listed in the search poplist the user sees in the LOV window.
    At a minimum you must set the Search Allowed property to True for the the result table item corresponding to the LOV field on the base page.
    This is from the devguide, I suggest you read it once at least if you have started work on the framework.
    Tapash

  • How to add existing Cellular (AT&T) data on iPad Air

    Just bought/received a new iPad Air (AT&T).
    Trying to get the AT&T data portion working.
    I go to Settings, Cellular Data, View Account, Cellular Data Account....
    I have 3 choices:
    Set UP New Account >
    Add to Existing AT&T Account> 
    Transfer Service From Another iPad>
    Since I already have 3 Iphone 5's on an UNLIMITED DATA plan with AT&T (Grandfathered-in), I chose the middle selection.
    It then asks for the following:
    Cellular Phone: Required
    Zip Code: Required
    Passcode: Required if enabled
    SSN:  Last four digits of SSN
    I entered EVERYTHING correctly, but it comes back after just a few attempts:
    We're sorry, the maximum number of authentication attempts has been exceeded.  You must wait 24-hrs before trying again.
    NOW.....Is the PASSCODE that they are referring to the AT&T PASSCODE???  Or the silly passcode to open the iPad after the finger swipe?
    This is the ONLY thing that I can think of that may have been entered incorrectly.  I was entering in my AT&T PASSCODE (4 digit) security passcode that you use to login online.
    IF they are asking for the APPLE PASSCODE that you enter after you finger swipe, then maybe that's the issue???
    HELP!!!!

    sberman,
    When I log in to the link you specified, I have to enter in my:
    USER ID:  (Phone number)
    and
    PASSWORD: (Yes much longer than 4 numbers)
    then....
    I have a PASSCODE that I must enter (4 numbers) as a further security wall.
    So....when setting up this AT&T Data plan on the iPad, it's asking for a PASSCODE (Required if enabled) I am assuming that it's the 4 digit number, and NOT the PASSWORD that is alpha-numeric and much longer.

  • How java will identifies LDAP user groups to admin/normal users -BOXIi3.1

    Hi all,
    We have successfully implemented Java interface with BOXI3.1.Now our client wants to move to LDAP Configuration in CMC.
    If we use LDAP configuration, is java login page will identify the user role(wether user is admin group/normal group).
    we have used below API for enterprise authentication:
      IEnterpriseSession enterpriseSession;
      ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
      enterpriseSession = sessionMgr.logon(userID, password, CMS, auth);
      auth=<secEnterprise>  is it enough to use auth=<secLDAP>
    or do we need to add any code/API for this requirement.
    Thanks,
    Subash

    Use secLDAP as the authentication type, and ensure both the CMS and your Java Web App Server machines can connect to the LDAP server.
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Create new line item while saving a new order

    I have a requirement to create a new line item with different item category while creating an order. i.e if the item category is ICT1, then create a new line item like item 1 but with item category ICT2. Also in the conditions tab, we need to update

  • I hate it when they change all the keyboard shortcuts. Is there a fix for these?

    I don't understand why Adobe thinks that consistency is a bad thing, but it seems that everytime they update they go jerking with my keyboard shortcuts. Last time it was Indesign, this time it Photoshop that has me complaining. Usually I can change t

  • Recordset on html document type

    Is it possible to add a Recordset on html page? I know I could convert the document to an ASP page to mke this possible, but I was wondering if it is possible to do this with converting. Cheers.

  • Newbie in SAP business one DTW

    Sir good day who's can help me About how to Create New Template using DTW and Excel. I'm a newbie and i want to learn about SAP business one. And i hope your reply will be picture..i want an format..and how to customize the table in SAP b1 bec. i wan

  • I keep getting an error code when i try to purchase a song

    my account information is correct, and the code is 42048 or simular.