How create a buttons who is not a square?

Welcome. I'm creating a map of the world where individual states are divided into separate buttons (trimmed to edges and saved in jpeg). The Czech Republic-Slovakia is activated only in a small area - marked with red lines. I would add that it is the lowest placed. How to make the button be active only that area where there is an image? Otherwise asking whether it is possible to import images were not "square"?

That's not there. So the question is, can I enable that somehow?  About Calendar reports that this is version "7.0 (1841)".

Similar Messages

  • How to add button in reuse_alv not in gui status

    hi guys,
    my question how can i add button to reuse_alv not in gui_status or pf_status ? and also i have an internal table which contains a checkbox field when user select one or more check box and push button , new table will be sended to batch input program.how can i do add button part, the rest of it is done.?

    Hi,The following sample report ZUS_SDN_ALV_BUTTON_CLICK_LTXT shows a possible way how to handle the BUTTON_CLICK event in order to retrieve a longtext for a ALV entry. Please note that for the sake of simplicity I have choosen an obsolete function module for text editing (only enter numerical values otherwise the function module crashes).
    *& Report ZUS_SDN_ALV_BUTTON_CLICK_LTXT
    *& Screen '0100' contains no elements.
    *& ok_code -> assigned to GD_OKCODE
    *& Flow logic:
        * PROCESS BEFORE OUTPUT.
        * MODULE STATUS_0100.
        * PROCESS AFTER INPUT.
        * MODULE USER_COMMAND_0100.
    *& PURPOSE: Demonstrate event BUTTON_CLICK for entering long text
    REPORT zus_sdn_alv_button_click_ltxt.
    TYPE-POOLS: icon.
    TYPES: BEGIN OF ty_s_outtab.
    INCLUDE TYPE knb1.
    TYPES: button TYPE iconname.
    TYPES: line TYPE bapi_line.
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab TYPE STANDARD TABLE OF ty_s_outtab
    WITH DEFAULT KEY.
    DATA:
    gd_okcode TYPE ui_func,
    gd_repid TYPE syst-repid,
    go_docking TYPE REF TO cl_gui_docking_container,
    go_grid TYPE REF TO cl_gui_alv_grid,
    gt_fcat TYPE lvc_t_fcat,
    gt_variant TYPE disvariant,
    gs_layout TYPE lvc_s_layo.
    DATA:
    gs_outtab TYPE ty_s_outtab,
    gt_outtab TYPE ty_t_outtab.
        * CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
    PUBLIC SECTION.
    CLASS-METHODS:
    handle_button_click FOR EVENT button_click OF cl_gui_alv_grid
    IMPORTING
    es_col_id
    es_row_no
    sender.
    ENDCLASS. "lcl_eventhandler DEFINITION
        * CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
    METHOD handle_button_click.
        * define local data
    DATA:
    ld_answer(1) TYPE c,
    ls_outtab TYPE ty_s_outtab.
    CHECK ( sender = go_grid ).
    READ TABLE gt_outtab INTO ls_outtab INDEX es_row_no-row_id.
    " Note: This function module is obsolete and crashes if
    " non-numerical values are entered. Choose a more
    " appropriate way of entering the longtext.
    CALL FUNCTION 'POPUP_TO_GET_VALUE'
    EXPORTING
    fieldname = 'LINE'
    tabname = 'BAPITGB'
    titel = 'Enter Longtext'
    valuein = ls_outtab-line
    IMPORTING
    answer = ld_answer
    valueout = ls_outtab-line
    EXCEPTIONS
    fieldname_not_found = 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.
    IF ( ld_answer NE 'C' ). " 'C' = cancel
    MODIFY gt_outtab FROM ls_outtab INDEX es_row_no-row_id
    TRANSPORTING line.
    ENDIF.
        * Triggers PAI of the dynpro with the specified ok-code
    CALL METHOD cl_gui_cfw=>set_new_ok_code( 'REFRESH' ).
    ENDMETHOD. "handle_button_click
    ENDCLASS. "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
    SELECT * FROM knb1
    INTO CORRESPONDING FIELDS OF TABLE gt_outtab
    WHERE bukrs = '1000'.
    CLEAR: gs_outtab.
    gs_outtab-button = icon_change_text.
    MODIFY gt_outtab FROM gs_outtab
    TRANSPORTING button LINE
    where ( bukrs NE space ). " modify all lines
    PERFORM build_fieldcatalog.
        * Create docking container
    CREATE OBJECT go_docking
    EXPORTING
    parent = cl_gui_container=>screen0
    ratio = 90
    EXCEPTIONS
    OTHERS = 6.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        * Create ALV grids
    CREATE OBJECT go_grid
    EXPORTING
    i_parent = go_docking
    EXCEPTIONS
    OTHERS = 5.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        * Set event handler
    SET HANDLER: lcl_eventhandler=>handle_button_click FOR go_grid.
        * Display data
    gs_layout-grid_title = 'Customers'.
    CALL METHOD go_grid->set_table_for_first_display
    EXPORTING
    is_layout = gs_layout
    CHANGING
    it_outtab = gt_outtab
    it_fieldcatalog = gt_fcat
    EXCEPTIONS
    OTHERS = 4.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        * Link the docking container to the target dynpro
    gd_repid = syst-repid.
    CALL METHOD go_docking->link
    EXPORTING
    repid = gd_repid
    dynnr = '0100'
        * CONTAINER =
    EXCEPTIONS
    OTHERS = 4.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        * NOTE: dynpro does not contain any elements
    CALL SCREEN '0100'.
        * Flow logic of dynpro (does not contain any dynpro elements):
    *PROCESS BEFORE OUTPUT.
        * MODULE STATUS_0100.
    *PROCESS AFTER INPUT.
        * MODULE USER_COMMAND_0100.
    END-OF-SELECTION.
    *& Module STATUS_0100 OUTPUT
        * text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'STATUS_0100'. " contains push button "DETAIL"
        * SET TITLEBAR 'xxx'.
    CALL METHOD go_grid->refresh_table_display
        * EXPORTING
        * IS_STABLE =
        * I_SOFT_REFRESH =
        * EXCEPTIONS
        * FINISHED = 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.
    ENDMODULE. " STATUS_0100 OUTPUT
    *& Module USER_COMMAND_0100 INPUT
        * text
    MODULE user_command_0100 INPUT.
    CASE gd_okcode.
    WHEN 'BACK' OR
    'END' OR
    'CANC'.
    SET SCREEN 0. LEAVE SCREEN.
        * Refresh -> pass PAI and PBO where flushing occurs
    WHEN 'REFRESH'.
    WHEN OTHERS.
    ENDCASE.
    CLEAR: gd_okcode.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *& Form BUILD_FIELDCATALOG
        * text
        * --> p1 text
        * <-- p2 text
    FORM build_fieldcatalog .
        * define local data
    DATA:
    ls_fcat TYPE lvc_s_fcat,
    lt_fcat TYPE lvc_t_fcat.
    REFRESH: gt_fcat.
    CLEAR: lt_fcat.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name = 'KNB1'
    CHANGING
    ct_fieldcat = lt_fcat
    EXCEPTIONS
    OTHERS = 99.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    APPEND LINES OF lt_fcat TO gt_fcat.
    CLEAR: lt_fcat.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name = 'BAPITGB'
    CHANGING
    ct_fieldcat = lt_fcat
    EXCEPTIONS
    OTHERS = 99.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE lt_fcat INTO ls_fcat
    WITH KEY fieldname = 'LINE'.
    IF ( syst-subrc = 0 ).
    INSERT ls_fcat INTO gt_fcat INDEX 4.
    ENDIF.
    CLEAR: lt_fcat.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name = 'ICON'
    CHANGING
    ct_fieldcat = lt_fcat
    EXCEPTIONS
    OTHERS = 99.
    IF sy-subrc 0.
        * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE lt_fcat INTO ls_fcat
    WITH KEY fieldname = 'NAME'.
    IF ( syst-subrc = 0 ).
    ls_fcat-fieldname = 'BUTTON'.
    ls_fcat-style = cl_gui_alv_grid=>mc_style_button.
    INSERT ls_fcat INTO gt_fcat INDEX 4.
    ENDIF.
    LOOP AT gt_fcat INTO ls_fcat.
    ls_fcat-col_pos = syst-tabix.
    MODIFY gt_fcat FROM ls_fcat INDEX syst-tabix.
    ENDLOOP.
    ENDFORM. " BUILD_FIELDCATALOG[/code]
    Reward If Found Useful.

  • How to set button which is not in my application?

    hi all,
    i m new to web dynpro.i have to set the radiobutton like this my button ll be not visible if one other application through i m calling.if directly i am calling it should be visible.
    can u help me how to proceed?
    thanks,
    tania

    Hi...
    If I am getting your problem right then your requirement is ...
    1)     It should be visible if it call from your application
    2)     It should not visible if it call from different application.
    There is two different way to do this.
    a)     you can have a flag.
    b)     Change the flag true or false ( or value 01 or 02)id its call from different application
    c)     Attached that context attributes with the visible property of the radio button.
    2nd way
    i)     You can have a flag to identify, where from it is calling
    ii)     Now depending upon the flag dynamically you set the visible property of the radio button.
    iii)     Write the code at WDDOMODIFYVIEW method
    iv)     Here is some code for example
        data: rb1 TYPE REF TO CL_WD_RADIOBUTTON,
              rb2 TYPE REF TO CL_WD_RADIOBUTTON.
      rb1 ?= view->get_element( 'RADIOBUTTON' ).
      rb2 ?= view->get_element( 'RADIOBUTTON_1' ).
      get single attribute
        lo_el_fg->get_attribute(
          EXPORTING
            name =  `FLAG`
          IMPORTING
            value = lv_flag ).
      IF lv_flag eq 'TRUE'.
        rb1->set_visible( 02 ).
        rb2->set_visible( 02 ).
      ELSEIF lv_flag eq 'FALSE'.
        rb1->set_visible( 01 ).
        rb2->set_visible( 01 ).
      ENDIF.
    Please let me know if you need any help on this..
    Regards
    Satrajit

  • How to return employees who did not register?

    Hi All.
    I've tow tables, employees (for data of employees) and emp_comm(emp_no number, comm_date date) for registering coming
    emp_no in emp_comm table is a foreign key references to the primary one emp_no in employees.
    Now I tried to use this code in a report to return all employees who didn't register between tow dates (using user parameters):
    select a.FINANCIAL_NO ,  a.emp_full_name, b.xdate from
    employees a,
    (select to_date(:P_FROM,'dd/mm/yyyy') + (level-1) xdate  
    from dual
    connect by level <= to_date(:P_TO,'dd/mm/yyyy')-to_date(:P_FROM,'dd/mm/yyyy')+1
    ) b
    where (A.EMP_NO, b.xdate) not in (select EMP_NO, TO_DATE(COMM_DATE, 'DD/MM/YYYY') from EMP_COMM)
    But the previous code returns all the employees not only who not register! Why? and How to solve?
    Thank you
    Note: I'm using DB 10g, Reports 6i
    Out Of Stock

    Hello,
    in your query
    FROM    employees a
          ,(SELECT TO_DATE(:p_from,'dd/mm/yyyy') + (LEVEL - 1) xdate
            FROM    dual
            CONNECT BY LEVEL <= TO_DATE(:p_to,'dd/mm/yyyy') - TO_DATE(:p_from,'dd/mm/yyyy') + 1
            ) b
    gives a cartesian product - every employee with every date
    Since comm_date matches only a single date in b you get a NOT IN for every other date.
    Try
    SELECT  a.financial_no
          ,a.emp_full_name
    FROM    employees a
    WHERE  a.comm_date NOT BETWEEN TO_DATE(:p_from,'dd/mm/yyyy')
                AND TO_DATE(:p_to,'dd/mm/yyyy')
    What do you need b.xdate for in your example?
    BTW: Isn't comm_date a date column? TO_DATE on a date column is wrong, it might give you wrong results because it will implicitly converted to TO_DATE(TO_CHAR(comm_date),'dd/mm/yyyy') where the TO_CHAR uses the default date format.
    Regards
    Marcus

  • If a group message doesn't completely go through, how can I see who did not recieve it?

    I tried to send a mass text message (note: I have group messaging turned OFF, but I just used the field where you can send the same message to multiple recipients), however, it came back saying that "Your message was not sent. Tap "Try Again" to send this message." I know that some people recieved the text, as they replied to it, however I'm fairly certain that one or two people did not recieve it. Is there any way to figure out who did not correctly get the message from within the app? Thanks.

    Change your password, alert your credit card company and itunes support.

  • Best practice on how to handle employees who do not have a last name?

    We are a Canadian based company with some International employees. We have recently begun to enter the International employees into the HR module. This has led to some problems for employees from India who do not have both a first name and a last name as many of our downstream systems require both names.
    I'm wondering what other companies with International employees have done in this circumstance. Can someone recommend a Best Practice?  We want to ensure that whatever we do is not offensive to anyone.
    Thanks.

    Dear,
    Indian names vary from region to region. Sometimes Names also influence by religion and caste. Different languages spoken in India in different regions. This variety makes confusing differences in names and their styles.
    Now come to the point, since you are international company, while entering the names of your international employees - i would like to suggest to consider the employees names as mentioned in their passport (If they hold valid passport). In case of non availability of passports consider their bank information or any other available information so that they didnt face any further problems like visa, banking transactions etc etc.
    1. Maddepalli Venkata Ramana Rao
    In this case Maddepalli will be his surname, Venkata Ramana can be his first name and Rao can be mentioned as Second / last name.
    2. Hardev Singh
    In this case you didnt find a surname... Singh will be considered as Surname or his ethinic recognition. In this case you can enter Hardev as First name and Singh as last name.
    Make some entry fields are optional depending on the situation. Take help of an Indian origin employees help exists in your office.
    Regards,
    Syed Hussain.

  • How to find vendor who does not have transactions for last one year

    HI all,
    We have around 20000 vendors, i want to find out who does not have any transactions for last 1 year.  Any valuable suggestions on this?
    Thanks and regards
    Ramarao

    HI,
    Actually above one mehtod is very painful method. Is there any method by writing ABAP query and any other short cut method
    Thanks and regards
    Ram

  • How to Retire Employees who have not been Payed their Dues.

    Well i have a situation where by employee's assignment have been suspended or the employee is retired by the company now this company does not want to pay their dues as of same pay period as it takes some time and payments are usually issued in some future date so how can we Retire or Suspend such employees? "Usually we try to do it normal way of retiring or suspending an employee through Navigating to People >Enter & Maintain window Query the employee click on Other Button End Employement." Now the issue is...
    since the employee is being payed in some future date we are failing to see those employees(i.e. End Employement) in the Payable Module....?
    All Suggestion/Comments are appreciated.
    Regards,
    Chetan

    Ankur please note I have defined all my elements as of Last standard process.
    so does that mean that what you have suggested earlier will work fine.
    ( i.e."From the payroll point of view, While terminating , enter only Actual termination date and leave Final process date blank. This will let you process employee payroll even though he is terminated".)
    Regards,
    Chetan

  • How create a button with a certain size??

    hi
    the button I create need to have a image icon, and the size of it should remain the same no matter what happen to the size of the frame or panel. by the way, how do I calculate the size of a image I need to set to a button at run time? thank you.

    first copy and run this code, may sure u r connected to internet..
    import javax.swing.*;
    import java.awt.*;
    import java.net.*;
    public class JButtonExample extends JFrame {
      JPanel jPanel1 = new JPanel();
      JButton jButton1 = new JButton();
      public JButtonExample() {
        try {
           jButton1.setMargin(new Insets(0, 0, 0, 0));
           URL r = new URL("http://developer.java.sun.com/images/javalogo52x88.gif");
           jButton1.setIcon(new ImageIcon(r));
           jPanel1.add(jButton1);
           this.getContentPane().add(jPanel1, BorderLayout.NORTH);
        catch(Exception e) {
          e.printStackTrace();
        pack();
        show();
      public static void main(String[] args) {
        JButtonExample JButtonExample1 = new JButtonExample();
    }good luck

  • How create Linked Button on StaticText? Important!

    Hallo
    subject. examlpe: purchase order -> Vendor (Choose from list) and linked button was created in field Vendor (static text)
    Ho to do this? please help and if possible - code (for B1 2004)
    i am read this topic, but nothing was not got
    Re: Add linked button to a editText field

    SAP often use hacks to make their linkedButtons, and this is one of them...
    Normally Linked buttons only support EditText and Comboboxes...
    A workaround I'll would guess would be to:
    1 - Add the staticText
    2 - Add a hidden editText
    3 - Link a linkbutton to the hidden edittext, and make it of type ln_None
    4 - Add a value to the hidden edit text (Else the linkedbutton will not be shown)
    5 - Catch the event of press of the linkedbutton (ItemPressed), and do a manual opening of what you might need to open.
    Haven't had time to test this, but guess it will work..
    An other and more pretty option would be to use a disabled editText...

  • Create Radio button dynamically in Table column.

    HI All
       I have used following code to create radio button dynamically. but it's getting dump saying that Could not find attribute STATUS. 
    Here STATUS is the attribute of the node in View context. But why this dump is coming. 
    Please correct me if any thing worng.
      DATA: lr_radio TYPE REF TO cl_wd_radiobutton.
      DATA: lr_containr TYPE REF TO cl_wd_transparent_container.
      DATA: lr_data TYPE REF TO cl_wd_flow_data.
      IF first_time = abap_true.
        lr_containr ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
        lr_radio = cl_wd_radiobutton=>new_radiobutton(
        view = view
        id = 'RADIO'
        text = 'Enroll'
        bind_selected_key = 'STATUS'
        key_to_select = 'STATUS' ).
        lr_data = cl_wd_flow_data=>new_flow_data( element = lr_radio ).
        lr_radio->set_layout_data( lr_data ).
        lr_containr->add_child( lr_radio ).
      ENDIF.
    Thank you very much
    Ram

    Hi Rama,
    I solved it.check this code.
    i think u did mistake in creating radio button you are not passing the 
    BIND_KEY_TO_SELECT
      instead you are passing KEY_TO_SELECT.
    data:lr_column2 type ref to cl_wd_table_column,
         lr_radio type ref to cl_wd_radiobutton.
       lr_column2 = obj_table->get_column(
                   id         = 'TABLE1_PLANETYPE'
    *              INDEX      = INDEX
    lr_radio = cl_wd_radiobutton=>new_radiobutton(
    *      BIND_ENABLED        = BIND_ENABLED
           BIND_KEY_TO_SELECT  = 'STATUS'
    *      BIND_KEY_VISIBLE    = BIND_KEY_VISIBLE
    *      BIND_READ_ONLY      = BIND_READ_ONLY
           bind_selected_key   = 'STATUS'
    *      BIND_STATE          = BIND_STATE
    *      BIND_TEXT           = BIND_TEXT
    *      BIND_TEXT_DIRECTION = BIND_TEXT_DIRECTION
    *      BIND_TOOLTIP        = BIND_TOOLTIP
    *      BIND_VISIBLE        = BIND_VISIBLE
    *      ENABLED             = ABAP_TRUE
    *      EXPLANATION         = EXPLANATION
           ID                  = 'RAD1'
    *      KEY_TO_SELECT       = KEY_TO_SELECT
    *      KEY_VISIBLE         = KEY_VISIBLE
    *      ON_SELECT           = ON_SELECT
    *      READ_ONLY           = READ_ONLY
    *      STATE               = E_STATE-NORMAL
           TEXT                = 'Test'
    *      TEXT_DIRECTION      = E_TEXT_DIRECTION-INHERIT
    *      TOOLTIP             = TOOLTIP
    *      VIEW                = VIEW
    *      VISIBLE             = E_VISIBLE-VISIBLE
    lr_column2->set_table_cell_editor( the_table_cell_editor = lr_radio  ).
    Thanks,
    Suman

  • Creating rollover buttons in flash cc

    In my older version of flash the up, over, down and hit options appear along the timeline bar when I select frame.  This button timeline doesn't appear in Flash CC.  Can anyone tell me where the same function can be completed?

    You should still see the same four-frame arrangement with CC - that has not changed.   Make sure you have the timeline window opened.  Also make sure you have created a button symbol and not a movieclip or graphic symbol.

  • I have a friend who is not very savvy with computers. He works on a PC. (There may be versions for pc OS versions) I use a Mac-your website will not show the PC pages to me. How can I find the proper URL to embed in a button?

    I have a friend who is not very savvy with computers. He works on a PC. (There may be versions for pc OS versions) I use a Mac-your website will not show the PC pages to me. How can I find the proper URL to embed in a button?

    Try going to the following
    Tools->Web Developer-> Page Source.
    You can also access this by way of keyboard shortcut Ctrl + U
    The View Page Source option is also available via the right-click menu by just right-clicking inside the page window & it will be the penultimate menu item.

  • HT2534 how do you create an AppleID for a student who does not meet the minimum age requirements?

    How do you create an Apple ID for a student who does not meet the "minimum age" requirements?

    A parent/guardian has to create it and supervise its use.

  • How to Block user from Sending IM or Hide Presence of there user who is not in his department

    Hi All,
    How to Block user from Sending IM or Hide Presence of there user who is not in his department.
    Thank you

    Hi Jp,
    Method 1:
    You can use the Enhanced Privacy Mode in Lync 2013
    <section class="ocpSection">
    Enable Privacy Mode
    By default, everyone except Blocked Contacts can see your presence status. To modify the privacy settings, you can do the following:
    In the Lync main window, click the Options button.
    In the Lync - Options dialog box, click Status, and then do one of the following:
    Click I want everyone to be able to see my presence regardless of system settings (override default settings).
    Click I want the system administrator to decide - currently everyone can see my presence but this could change in the future.
    </section>
    About Enhanced Privacy Mode
    If your organization has enabled Enhanced Privacy Mode in Lync, you can choose whether to limit visibility of your presence information to only those people you’ve added to your Contacts list. You do that by selecting one of the following on the
    Options->Status window:
    I want everyone to be able to see my presence
    I only want people in my Contacts list to see my presence
    Method 2:
    Using Privacy Relationship, you can block a particular user by adding him to blocked contacts
    Anil Kumar (MCITP)
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Maybe you are looking for

  • IPhone 4's WIFI has been not working after upgraded to 6.1.3(10B329)

         My IPhone 4 was working fine with its WIFI when it is running in default IOS version, I believe it was 5.x.x version, however after I upgraded to 6.1.3(10B329) then WIFI got very aweired issues again and again.starting from then I never get my W

  • XI Problem: File to Idoc Scenario - IDOC_INBOUND_ASYNCHRONOUS

    Hi,    I'm having problems with inbound IDOCS in R/3. The idocs from XI are sent as tRFC using the FM IDOC_INBOUND_ASYNCHRONOUS and this is a problem because i have like 200 or 300 idocs to be sent at the same time and each IDOC takes like 5 minutes

  • How make Mail the default for chrome

    I'm switching from Gmail (web) to Mail under Mavericks but I can't see how to force  Chrome to recognize Mail as the default handler. In the handlers dialog there is an entry for webcal, but no other handlers, nor does there appear to be a way to add

  • Clear G/L account balance

    Hi, Initial balance uploaded into one G/L account(doc type TG). I was posted an expense entry to clear the balance(doc type SA) . But still G/L account showing open item. Please assist me to clear the balance. Moderator: Please, avoid asking basic qu

  • Rules of Oracle Server ????

    hi guys, I want to know are there any restrictions in implementing an Oracle Server in the domain. That is, according my knowledge if any client wants to connect to the server, both client & server should exist on the same domain, is that true? If no