How to edit contacts in Unified Contact Store in outlook or owa for users who use Attendand Console?

Hi all,
We have Lync server 2013 with Exchange server 2013 and "Unified Contact Store" configured and working. unfortunately our reception staff who use the Attendant Console are unable to edit their contact list (this is normal as 2010 clients do not
support UCS).
According to Microsoft notes that I have read we should be able to edit the UCS contact lists in OWA, Outlook, or Lync 2013. I can get reception staff who normally use Attendant Console (AC) log in to Lync 2013, arrange their contacts then go back to AC
- this works fine. 
However as reception staff already have outlook, I would like to enable these users to be able to edit their contact lists in outlook or OWA. Does anyone know how to do this? I can't find any contact list in outlook that relates to the contact lists
in Lync.
Simon.

Hi,
For deploying Unified Contact Store, the users must log in with Lync 2013 at least once.
More details:
http://technet.microsoft.com/en-us/library/jj204963.aspx
Kent Huang
TechNet Community Support

Similar Messages

  • How can I import my archived emails from Microsoft outlook to my MAC Book Pro using MAC OS?

    How can I import my archived emails from Microsoft outlook to my MAC Book Pro using MAC OS?

    Do you have contacts turned on using the iCloud control panel in Windows control panel?

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • [HELP] How to records user who use SQLPlus or SQL editor?

    Dear Gurus,
    Is onyone know how to record user who use SQLplus or any SQL editor?
    for instance...
    user1 using SQLplus on monday august 9.30.21 PM...and I have table which record this for audit user.
    Or..
    Can I block user who connect to oracle using SQLPlus?
    If anyone know how to do this..please inform me...
    Thanks and Regards
    Erie

    You can enable Auditing (AUDIT_TRAIL) and audit at the Session Level to record Logon and Log off of a required user. This can be enabled to be recorded in the audit table or operation system file. You can also audit user statements etc.
    For example, to enable auditing connect for user UGONIC
    SQL>audit connect by UGONIC;
    TO disable it
    SQL>noaudit connect by UGONIC;
    Check in the SQL Reference for the AUDIT statement and requirements.
    If you do not want the user to connect at all via SQL*Plus, you can use PRODUCT_USER_PROFILE to disable a users access to SQL*Plus or at the lower level, disable specified SQL*Plus and SQL commands for the user. You need to run the PUPBLD.SQL script as system user (if not run yet) and add records to it as required.
    Example: After running PUPBLD.SQL. This entry stops the user UGONIC from using the drop command at the backend in SQL*Plus.
    INSERT into product_user_profile (product,userid,attribute,char_value,date_value)
    values('SQL*Plus','UGONIC','DROP','DISABLED',NULL);
    Note that if a user is already connected by the profile entry, it is not activated on that session, but on subsequent logons. Again read the requied security documentations for this.
    For both auditing, you need to set the required database intialisation parameters and know where to get the audit records (in tables, views or OS file). For instance, when using tables, you maintain and query tables like audit$ to view the logs. When using OS type logging, it is recorded on the path specified in the AUDIT_FILE_DEST init parameter (In Windows, it is logged in the Windows Event and you can view it from the event viewer).

  • How can I make GRID view the default view? The icons for view that used to be located in the upper right top of the page near the 'search library' are gone.

    How can I make GRID view the default view? The icons for view that used to be located in the upper right top of the page near the 'search library' are gone.

    99jon wrote:
    Perhaps it’s a design feature to speed up the Organizer launch.
    I am sure it is.
    - The normal use of the Organizer is not the folder view, it's the thumbnail view with an organization based on categories and folder. That way you should forget completely where your pictures are stored. Anyway, the folder view in the Explorer is not a map of the location of the different bits of your file, it's only a logical representation. That's easy to see when you are doing a defragmentation.
    - The folder view is useful even for those using normally the thumbnail view, but that is only for rare cases when you must change the folder organization, for instance moving files to another drive. The folder view is here to prevent you from changing things from the explorer and outside of the Organizer.
    - The new folder list view, which you find 'funny' is there to help better organizing using tags. Its huge advantage is that such a view is created extremely quickly by extracting the last subfolder in the media table : it's the way the database sees the folders, based on its own content,  totally ignoring the complex folder organization of your disk with media files or any unrelated other kind of data. You should use it in many cases, the main purpose being assigning tags when you have assigned descriptive folder names. I had suggested such a solution to prevent the long standing bugs in the folder view of previous versions.
    So yes, the purpose is:
    - to speed up switching modes
    - to help folder organization fans to migrate to tags organization
    - to hopefully get rid of the old folder organization bugs

  • How to edit phone number in contact?

    I'm using Skype 5.1.0.968 on latest  Mac OS and cannot figure how to edit/change/delete a phone number that I have created in the contacts list.  I've tried everything I can think of!!!

    Snowcreative gives a perfect description of the problem that Mac users of Skype version 5.3.x are facing. Here's some additional detail. If you type in a number to place a Skype-Out call and then wish to add that number to your Skype Addresses, you right click the number that appears in the left column and select "Show Profile". The profile appears with a button in the upper right corner that says "Add Contact". If you click that button Skype automatically creates a contact and the default action is: the contact is created and given the phone number as its name (in the top section of the profile, weird, but can be edited by a click), and in the second section of the profile the same PHONE number appears and is automatically labeled "Skype". This number CANNOT BE EDITED. THIS IS THE PROBLEM!! If I right click the word "Skype" nothing happens. If I right click the phone number the option that appears is "Copy" which is not helpful for editing. If I right click the chat icon, nothing happens. If I click on "Add Number" which appears in blue under the telephone number that has been labeled "Skype" then I can add another number. This is no help though because I already have added the number I want!! P.S. I checked my Address Book and none of the numbers that I add in Skype appear in my address book - so that is NOT the way around this. Skype grabs numbers from the address book, but does not add anything in the opposite direction. That would be a real mess!

  • How to edit phone numbers in contacts for text messages

    My number is blocked so others can't see my phone number.  In order to unblock my number for friends and relatives, I added *82 in front of those phone numbers in my contact list to override the block and show my number.  So here's the problem -- when I want to send a new text message to someone in my contact list (whose number is preceded by *82), I need to edit the number to remove those extra characters in order to be able to send a text message to them.  Is there any way I can edit the phone number from within the messaging function?
    Thanks.

    I am havng a similar problem that I can't figure out. I have mutiple numbers for each contact. i.e. mobile with *82, mobile without *82 for texting, home number, work number etc...  I would like for them to come up in a spicific order. The two mobile numbers first and then home and work. That way I can get to the mobile numbers first as those are most used. Also so to save time knowing that all contacts are in the same order.  So far it has been random for each contact. Some come up mobile first either with or without *82, others come up home first and some come up work first. I have tried deleting the entire contact and starting over thinking that the first number you enter becomes the primary. That didn't work. Any suggestions?
    Thanks in advance

  • How to find out the list of users who used Discoverer

    Dear All,
    We have Oracle E-Business Suite 11.5.10.2 with Disco. 4i.
    We need to know how we can find out the Employee ID, Responsibility, Org... who used discoverer during a specific period in the past ? For example the last year.
    Any help plz.
    Regards,
    Mohammad Muhtadi

    I'm not sure You can get the responsibilities or the org that was used in that specific run but as for getting when it was run and by whom...
    Try that SQL:
    select distinct
    qs.qs_doc_name workbook,
    --qs.qs_doc_details worksheet,
    case when instr(qs.qs_doc_owner,'#')=1 then substr(qs.qs_doc_owner,2,10) else qs.qs_doc_owner end workbook_owner,
    qs.qs_created_date run_date,
    case when instr(qs.qs_created_by,'#')=1 then substr(qs.qs_created_by,2,10) else qs.qs_created_by end apps_user_id,
    fu.user_name apps_user_name,
    ppf.FULL_NAME user_full_name,
    ppf.EMPLOYEE_NUMBER user_employee_number
    from
    eul_us.eul4_qpp_stats qs,
    fnd_user fu,
    per_people_f ppf
    where to_number(substr(qs.qs_created_by,2,10))=fu.user_id(+)
    and fu.employee_id=ppf.PERSON_ID
    and sysdate between ppf.EFFECTIVE_START_DATE and ppf.EFFECTIVE_END_DATE
    change the "eul_us" to the discoverer schema.
    Basically the primary data you are looking for lies in the qpp_stats table...

  • How to skip approving steps for users who are also approvers?

    We have a business need to be able to skip the approving steps for the users who are also approvers.
    For this following steps were followed :-
    1) Open .task file and go into the Assignment tab. Double click on the performer box within the routing slip, this should open the "Edit Participant Type" editor. Expand the "Advanced" section and place a check next to "specify skip rule", then click the edit icon to the right. Now enter an XPath expression that will test whether the current user is equal to the task creator.
    2) We used - isUserInRole XPath function in the "Identify Service Functions" dropdown - first param to function is the userID, the 2nd is the role name.
    We tried with hardcoded userID as well as by using
    ids:isUserInRole(/task:task/task:systemAttributes/task:updatedBy/task:id,'California')
    where 'California' is the group name (as one of the forum threads told this function works with groups).
    We also tried with swimlane roles(using bpm.getPerformer() function) but it does not work either.
    Please let me know if any one has any solution to this problem.

    session as DirectorySession = DirectorySession.currentEngineSession
    dirHum as Fuego.Fdi.DirHumanParticipant = DirHumanParticipant.fetch(session : session, id : "myUserId")
    result = hasRoleAssigned(dirHum, role : "Approver")Give that a try...
    HTH,
    -Kevin

  • When slides are updated within a MS Sharepoint slide library, how can you force an alert with the updated slide version going to users who have previous slide versions on their hard drive?

     How can you hardcode/force that when a slide within a slide library (in Sharepoint 2010) is updated, that an alert is sent to the user who downloaded the slide to their hard drive so that they may replace the outdated slide with the recently
    updated slide. There is a tic box option to set when downloading slides from a sharepoint slide library into power point that ensures alerts are sent when the presentation is opened allowing for replacement of the slide. But, it is an option. How can that
    be hardcoded are forced on all slide library users who download slides from the shrepoint library into power point? Is there a workflow that can be written in Sharepoint or an option in power point to do this? Please advise. Thanks.

    Two things to check:
    Add the network folder location as a trusted location in your Flash Global Security settings and then see if the videos will play.
    If the first suggestion doesn't work, get in touch with your network admin dudes and find out if FLV files are disabled from working over the network from that location.  Many times unless a given file format is enabled on a network, the server assumes it's not desirable and won't serve it.

  • HT204053 How about if I don't have credit card,is there anyway for me to use my apple I'd in app store?

    How can I use my applied in app store if I don't have visa card?it always tells me that my appleid hasn't been used in app store.

    When I first got my phone I took to the at&amp;t store and they set me up a free account without creditcard

  • How do i let let a website store data on my computer when i'm using firefox.

    I can change the daa storage settings in any other browser except firefox
    == This happened ==
    Every time Firefox opened
    == I dowloaded firefox

    You can change the data storage settings. See https://support.mozilla.com/en-US/kb/Options+window+-+Advanced+panel#Offline_Storage and the top of that article for how to get to the Advanced Panel and the Network tab.

  • HT4623 I am trying to update my apps with a new user ID - I have changed it in settings but how to I change it in apps store - it keeps asking me for a password for my old user id?

    I am trying to update my apps using a new user ID.  I have changed it and I can't get it to change in the App Store.  It keeps asking me for a password for my old ID??

    YOu can't update your apps with the new apple id.   All apps are tied to the apple id that was used to purchased it, you will need to enter your password from you old id to update.

  • How to edit a time machine backup to make it bootable in single user mode

    I am away from home and do not have snow leopard install disk. My MacBook just keeps loading. I have my time machine backup and I was wondering if I could make my time machine backup bootable by deleting and editing files in single user mode and then booting from the external hard drive. I have already tried a lot of things like fsck and haven't gotten it to work so I thought all you command lovers could help me edit my time machine backup to make it bootable. Maybe I could somehow install applejack from the command line too?
    P.S. Right before it broke I restarted my computer and when it was turning off, There was a blue screen with a loading symbol and when it started to turn on it just kept loading with the apple symbol, if that helps you fix the problem.

    To begin with, there is no way to make a Time Machine backup bootable.
    You say you've tried a lot of things; does that include a safe mode boot? (hold down 'shift' during startup)
    I'm not myself familiar with Applejack, so you'll need someone else to confirm this, but I believe that it should be possible to install from the command line.

  • How can I credit the $75 Apple Store Gift Card I got for purchasing my iPad Air to my iTunes account?

    I am confused with this process. The above is my question I don't know why the process asked me for a comment.

    Limnos is correct. The Apple Store gift card is used for purchasing product at the Apple Store. The iTunes gift card is used for downloading digital content. They are not interchangeable as Limnos said.

Maybe you are looking for

  • REP in Oracle Database

    Hi, I have REP report. Using this generating PDF output for Orders. Is it possible to run the REP file in Oracle Database procedure. If yes please suggest how to do. Please do the needful. Below are the versions: Forms and Reports : 10g version Edite

  • Ipod 5g Song skipping problem

    First posting on the forum so please bare with me. I have recent updated my ipod firm ware to 1.1 since i purchased the radio head phones. It would seem since then and having read a number of other posting there may be a problem with this update. Tha

  • Wrong behaviour in link generated by HTML editor

    Hi all, anybody knows if there is some bug in HTML editor used in XML Form Builder projects? We are facing the following problem: 1) we create a link by filling the html editor area in a news XML edit form 2) save and publish the news 3) in rendering

  • PAR causing vertical letterboxing (black bars)

    I recorded in HDV PAL, now I am trying to export to SD PAL (720x576)... I have exported using the Media Encoder and I get black bars on the sides (e.g. vertical letterboxing). I did a bit of research and I see that this is due to the corrected Pixel

  • "Media start" Button/quick key in final cut

    I have a very silly question - the anwswer is probably right in front on my face! When in Final cut on my MacPro Laptop - when do I hit fro "media start" and "media end?" O n regular keyboard - it's "home" and "end." In the drop down menus at the top