How to trace out inactive email user?

Dear Sun,
In there anyway we can trace out the last login date for the webmail user?
Thanks

elson.vhliu wrote:
thanks for your help Shane, finally i able to set the parameter
but how long times it take to show in the table?When a user logs in, information will be recorded e.g.
-bash-3.00# ./imsconnutil -a
UID                   IMAP last access                 HTTP  last access              POP last access
===================================================================================================
shjorth               16/Jul/2010:04:58:46              ----NOT-RECORDED----               ----NOT-RECORDED----
testuser1               27/May/2010:09:52:00              ----NOT-RECORDED----               ----NOT-RECORDED----NOTE: In MS6.3 and above the store data for a user is accessed using the IMAP protocol (in earlier releases the mshttpd process accessed the store data directly) so the "IMAP last access" time applies for both webmail and IMAP-client access.
am i need to restart the services after the change?Yes.
Regards,
Shane.

Similar Messages

  • I have just bought iMac. Can anyone tell me how to log out of guest user so I can sign in as administrator

    Can anyone tell me how to log out of Guest User so I can log in as administrator. Just bought new imac.

    Nome Malaga wrote:
    I can't seem to find a comprehensive manual which tells me what it all does. I found my ipad manual really good for everything.
    http://support.apple.com/manuals/#imac

  • How to find out if a user is disabled in xpress code?

    I have an active sync form and I'm trying to determine as one of my checks if a user is disabled. I've tried using waveset.disabled, but that always returns null. I also tried waveset.organization to see if the user is in the 'terminate' organization, but it only always returns 'Top' and not 'Top:Terminate'
    Any ideas how I can find out if a user account is disabled?
    Thanks for any info!

    Hi,
    These two attributes you can only get in userview.
    waveset.disabled (this is always null if user is not disble else return true if user is disble)
    waveset.organization (will give you the whole org path like Top:xyz)
    take a dump of your userview and see what you are getting there.
    Use below code in you form/WF to see the userview on console
    <block trace='true'>
    <invoke name='toXml'>
    <ref>userview</ref> // user your userview object name
    </invoke>
    </block>

  • E-mailing: How to sent out an email to the Managers OUTLOOK express account

    Hi Experts,
    System is ECC6.0.
    I hv requirement that, the sales orders comes from EDI into SAP. If there is a error in material (like,
    non-sellable, not existing etc.), I need to trap this issue/error.....................fine, I did it and working fine.
    But, in next step, I need to send out an email to the manager to his/her OUTLOOOK express(NOT work flow account) email account"s inbox, with a standard specified format!!!!
    I do NOT think, work flow is necessorily involved here in this scenario!!!
    So, let me know that,
    1) Is WORK FLOW involvment i there?
    2) How to get it done that, sending out email to OUTLOOK express account with a standard format
    3) Any FMs, piece of code
    replies appreciated.
    Edited by: SAP ABAPer on Sep 6, 2008 3:34 PM
    Edited by: SAP ABAPer on Sep 6, 2008 3:35 PM

    Hello
    I can offer two proposals:
    1) Standard report RSEIDOCA is used to actively monitor IDoc processing.
    This report can be scheduled in background and reports failed IDocs. Unfortunately SAP did not offer e-mail notification together with this report which is really a shortcoming. However, I have written a modified version of this report which allows to send e-mails (see below).
    2) Another scenario we are using is to replace wrong partners/materials with dummy partners or materials ensuring that the IDoc will be processed under all circumstances. In this case we set the Purchase order number supplement (sales order -> header -> tabstrip Order Data: field VBAK-BSTZD) = 'ERR'.
    Using a condition (transaction VOFM ) we trigger an ORDRSP IDoc if a new sales order has BSTZD = 'ERR'. This IDoc is forwared to SAP-XI and translated into an e-mail to the customer service.
    The crucial parts of my report ZRSEIDOCA are shown below (adjust selection screen and notification routine):
    ...*    perform show_act_moni.
    **    PERFORM send_notification.
        PERFORM _send_email_notification.
        MESSAGE s596.
      ELSE." keine Benachrichtigung
        MESSAGE s597.
      ENDIF.
    *&      Form  _SEND_NOTIFICATION
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM _send_email_notification.
    * define local data
    * All activities done via facade CL_BCS!
      DATA: lo_send_request       TYPE REF TO cl_bcs.
      DATA: lt_text               TYPE bcsy_text.
      DATA: lo_document           TYPE REF TO cl_document_bcs.
      DATA: lo_sender             TYPE REF TO cl_sapuser_bcs.
      DATA: lo_recipient          TYPE REF TO if_recipient_bcs.
      DATA: lo_bcs_exception      TYPE REF TO cx_bcs.
      DATA: lx_sent_to_all        TYPE os_boolean.
      DATA: ls_edidc              TYPE edidc,
            lo_idoc               TYPE REF TO zcl_idoc,
            lif_idoc              TYPE REF TO zif_idoc,
            ls_text               TYPE soli,
            ld_text(50)           TYPE c,
            ld_subject            TYPE so_obj_des,
            ld_date(10)           TYPE c,
            ld_time(8)            TYPE c.
      TYPES: BEGIN OF ty_s_idocdata.
      INCLUDE TYPE vbak AS vbak RENAMING WITH SUFFIX _vbak.
      INCLUDE TYPE kna1 AS kna1 RENAMING WITH SUFFIX _kna1.
      TYPES: END OF ty_s_idocdata.
      DATA: ls_idocdata   TYPE ty_s_idocdata.
      TRY.
    *     -------- create persistent send request ------------------------
          lo_send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document -------------------------------
    *     create document from internal table with text
    **      APPEND 'Hello world!' TO lt_text.
    **      lo_document = cl_document_bcs=>create_document(
    **                      i_type    = 'RAW'
    **                      i_text    = lt_text
    **                      i_length  = '12'
    **                      i_subject = 'test created by ZRSEIDOCA' ).
          ld_subject = 'IDoc Monitoring'.
          WRITE syst-datum TO ld_date DD/MM/YYYY.
          WRITE syst-uzeit TO ld_time.
          CONCATENATE ld_subject syst-slset
            INTO ld_subject SEPARATED BY space.
          CONCATENATE ld_subject ':' INTO ld_subject.
          CONCATENATE ld_subject ld_date 'at' ld_time
            INTO ld_subject SEPARATED BY space.
          LOOP AT i_edidc INTO ls_edidc.
            " Create IDoc instance
            CLEAR: lo_idoc,
                   ls_idocdata.
            lo_idoc = zcl_idoc=>create_by_idoc_control( ls_edidc ).
            IF ( lo_idoc IS BOUND ).
              lif_idoc ?= lo_idoc.
              CALL METHOD lif_idoc->get_specific_data
                CHANGING
                  c_data = ls_idocdata.
            ELSE.
            ENDIF.
            WRITE ls_edidc-docnum TO ls_text-line NO-ZERO.
            CONDENSE ls_text-line.
            IF ( ls_idocdata-vbak IS NOT INITIAL ).
              CONCATENATE 'POnumber' ls_idocdata-bstnk_vbak
                INTO ld_text SEPARATED BY '='.
              CONCATENATE ls_text-line ld_text
                INTO ls_text-line SEPARATED BY space.
              WRITE ls_idocdata-bstdk_vbak TO ld_text DD/MM/YYYY.
              CONCATENATE 'POdate' ld_text
                INTO ld_text SEPARATED BY '='.
              CONCATENATE ls_text-line ld_text
                INTO ls_text-line SEPARATED BY space.
              IF ( ls_idocdata-kunnr_vbak IS NOT INITIAL ).
                CONCATENATE 'Customer' ls_idocdata-kunnr_vbak
                  INTO ld_text SEPARATED BY '='.
                CONCATENATE ls_text-line ld_text
                  INTO ls_text-line SEPARATED BY space.
              ENDIF.
              IF ( ls_idocdata-name1_kna1 IS NOT INITIAL ).
                CONCATENATE '(' ls_idocdata-name1_kna1 ')'
                  INTO ld_text.
                CONCATENATE ls_text-line ld_text
                  INTO ls_text-line SEPARATED BY space.
              ENDIF.
            ENDIF.
            APPEND ls_text TO lt_text.
          ENDLOOP.
          lo_document = cl_document_bcs=>create_document(
                          i_type    = 'RAW'
                          i_text    = lt_text
    **                      i_length  = '12'
                          i_subject = ld_subject ).
    *     add document to send request
          CALL METHOD lo_send_request->set_document( lo_document ).
    *     --------- set sender -------------------------------------------
    *     note: this is necessary only if you want to set the sender
    *           different from actual user (SY-UNAME). Otherwise sender is
    *           set automatically with actual user.
          lo_sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD lo_send_request->set_sender
            EXPORTING
              i_sender = lo_sender.
    *     --------- add recipient (e-mail address) -----------------------
    *     create recipients - please replace e-mail address !!!
          LOOP AT o_email.
            lo_recipient = cl_cam_address_bcs=>create_internet_address(
                                              o_email-low ).
    *       add recipient with its respective attributes to send request
            CALL METHOD lo_send_request->add_recipient
              EXPORTING
                i_recipient = lo_recipient
                i_express   = 'X'.
          ENDLOOP.
    *     ---------- send document ---------------------------------------
          TRY.
              CALL METHOD lo_send_request->set_status_attributes
                EXPORTING
                  i_requested_status = 'N'  " suppress delivery confirmation
                  i_status_mail      = 'E'.
            CATCH cx_send_req_bcs .
          ENDTRY.
          TRY.
              CALL METHOD lo_send_request->set_send_immediately
                EXPORTING
                  i_send_immediately = 'X'.
            CATCH cx_send_req_bcs .
          ENDTRY.
          CALL METHOD lo_send_request->send(
            EXPORTING
              i_with_error_screen = 'X'
            RECEIVING
              result              = lx_sent_to_all ).
          IF lx_sent_to_all = 'X'.
            WRITE text-003.
          ENDIF.
          COMMIT WORK.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
        CATCH cx_bcs INTO lo_bcs_exception.
          WRITE: text-001.
          WRITE: text-002, lo_bcs_exception->error_type.
          EXIT.
      ENDTRY.
    ENDFORM.
    Regards
      Uwe

  • How to find out list of users and their access on Sharepoint

    Hello Everyone
    How can i find out list of users and what access they have on SharePoint site? I want to create table with list of the users and their access?
    Thanks

    you can get the report using below powershell scripts. first one gives list of users in a site collection level.
    The second link generates the permissions reports for each user.
    http://techtrainingnotes.blogspot.com/2010/12/sharepoint-powershell-script-to-list.html
    https://sp2010userperm.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to find out list of users who have access to particulat SID

    HI
    How to find out the list of users who has access, to a particular SID?
    Satish.

    jurjen,
    Thanks for replying, actually i was trying to navigate and execute the report using, SUIM...
    could you help me to find out the list of users who has access to a particular system.. using SUIM.
    satish.

  • How to find out if a user has a deferred task

    In my WF, I will add a deferred task to a user. If that user already has a deferred task then i want to skip it. How do we find out if a user already has a deferred task? Thanks

    This should help you
    <notnull>
    <ref>view.accounts[Lighthouse].properties.tasks[taskname]</ref>
    </notnull>

  • How to find out if a user is logged into a windows XP or VISTA machine

    Hi,
    Could somebody please tell me how to find out remotely over a LAN, whether a user is logged into a computer that is running windows XP/VISTA or not? How can this be programmatically done if we know the name of the remote machine?
    Thanks.
    Ravisara

    Hi,
    Thanks for all the replies.
    Actually it seems that my question has either been misunderstood or has been badly phrased by me.
    What I want to know precisely is the way to find out if a user is logged into a machine or not. Say for example in a LAN there are three computers called A, B and C. If my Java program is running on machine C, how can the program check whether a user is logged into machine A? Assuming JRE is present in all three machines, the machines have as their OS windows XP or VISTA and all machines are connected to a windows domain(Windows 2003 server based network)
    The idea here is to identify all the computers in a network that users are not logged into and then to remotely shutdown those computers in order to minimize wastage of electricity(preferably after a particular time of the day in an organization).
    Any replies would be much appreciated.
    Kind regards,
    Ravisara

  • How to find out what computers user logged on? (not at the moment but history)

    Domain Controller: Windows 2012 R2 - Unfortunately, I don't manage DC but my own OU (computers and users)
    I have a user working mid-night shift reporting that he received error message "The group policy client service fail the logon, access denied". He is using multiple PC and he did not remember which PC gave him the error message. How do I find out
    which computers he logged on? I have access to my domain OU. I can manage my own Computers and Users objects in my domain (no domain controller in my department)
    I searched internet but most of them are finding out which computer user is currently logging on - not the history, thanks.
    Thang Mo

    To fix this error, please follow the steps given below and check if it helps you to resolve the issue :
    1. Logon to the machine with a machine administrator account (assuming this issue is with a domain account, if not logon to the machine using another account with administrative privilege).
    2. Move the machine to a work-group from domain. (If it was part of one work-group then change it to another one or join a domain.) You could do this through Control Panel\System and Security\System and then Change Settings.
    3. Restart the machine and logon with a machine administrator account.
    4. Delete your user profile data (or move it a different location) completely from c:\users. "C" in my case is system directory but if you have a different one then use that one.
    5. Join the machine back to domain account (or to work-group that the machine was originally joined to), and restart the machine.
    6. Logon with your domain account that you were having trouble with. Keep fingers crossed.
    If all goes well, you should be logged on.
    Coming to the second query, if the user are in DC, you can try our free tool
    Lepide last logon reporter that will help you to get the logon details by specifying Domain Name/IP of the Domain Controller,  User Name, Common Name and Last Logon Time.
    Lepide - Simplifying IT Management

  • How to change an inactive email address in icloud?

    I just bought a new iphone 6 plus however during start up, I entered an old/inactive email address in icloud and during creation of apple id. I manage to restore to factory settings and get started again using new email address and apple id. However, I cannot change the original email address in icloud and moreover, I cannot find Facetime icon (maybe restricted by service provider since I am currently in Saudi Arabia). Please help. Thanks in advance.  

    That's simply not possible. If you used an inactive address you wouldn't be able to continue and verify the address, which means that iCloud cannot yet be set up using that address.

  • How to figure out list of users registered to POOL?

    Hello ,
    We have a remote site and user registers to that remote site SBA/LYNC FE directly. Now i wanted to figure out if there is any way through which i can check how many users are registered to that remote FE ??
    Is there any command for the same?
    Thanks

    Hi,
    You can also run: Get-CsUser | Get-CsUserPoolInfo to receive user pool information.
    Best Regards,                               
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to trace a particular database user  ?

    Everyone knows that there is an Oracle username "SCOTT" in all the database installation.
    How to enable tracing for the SCOTT user, so I can can get all the tracing info of the user SQL's
    Note: I know I can get the sid,serial# info and trace a particular session id, but here i wanted to trace the entire user SCOTT, no matter how many Sessions he opens.
    Help me with this !!!!

    Phil,
    The one what you listed tracing by service name is interesting, correct me if I understood it wrong way.
    Lets say:
    Database Host name: ABC_HOST
    Database Instance & DB: ABC
    Port 1521
    Now I have 3 computers connecting to this database using the following TNSnames.ora
    ====================================
    ABC =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = abc_host)
    (Port = 1521)
    (CONNECT_DATA = (SID = ABC)
    ======================================
    Now based on your suggestion you are saying that one computer from which I wanted to trace
    the database sessions, I can create a new entry in the tnsnames.ora as follows:
    ====================================
    ABCTRACE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = abc_host)
    (Port = 1521)
    (CONNECT_DATA = (SID = ABC)
    ======================================
    Now using the DBMS monitor package i can do this to start tracing DBMS_MONITOR.serv_mod_act_trace_enable('ABCTRACE') )
    Correct me if I am wrong

  • How to find out Inactive customers

    Hi,
    I have a report which shows the customers detail. But I have to filter out the customers who are inactive that having no orders for the last 2 years.
    How to find those customers and filter out in the report?
    Thanks,
    Ezhil.

    Hi,
    Can you please clarify in more detail. And I think a Functional Consultant in your team will be the best person to tell you what exactly you have to do. Besides, are you talking about sales orders when you are saying orders. If that's true then is it your requirement that filter out those customers who is not sold-to-party for all the sales order created in last 2 years?
    In that case, you can simply implement this by querying on corresponding DB table.
    Thanks,
    Mainak

  • How to find out if a user has no more resource accounts?

    I want to check to see if a user has no more resource accounts tied to it. The only resource account left is Lighthouse and nothing else.
    Do you know how I do this?
    Thanks

    I was able to find disabled users using the below code. Does anyone know how I can find users who have only Lighthouse account and nothing else? I want to add this to the search criteria.
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='queryObjectNames'/>
    <Argument name='type' value='User'/>
    <Argument name='single' value='false'/>
    <Argument name='attributes'>
    <map>
    <s>lhdis</s>
    <s>true</s>
    </map>
    </Argument>
    </Action>

  • How to find out number of users in an organization?

    Can you show me how I can find the total number of users in an organization please? Paging through is not an optimal way since there are alot of users.

    DamonL wrote:
    (be careful if you have a lot though!)That's an understatement. :) If you have a LOT of users in your organization doing a search on the organization just to find the user count will bog down the IDM server for several minutes.

Maybe you are looking for

  • Html link to a named anchor within a PDF file?

    So, I want a link on a web page to hop to a specific part of a pdf file. Same thing as using named anchors really. The issue I see here is that the web pag (link) has no real notion of pdf's implementation of anchors, so how could it know to utilise

  • Table doesnt exist

    im trying to retrieve values from database and plot a graph. I downloaded jfreechart and invoke a method frm there. its a program where user choose an item from drop down list, this item is actually the tables from my database, and a textbox where th

  • Meaning of WARNING

    I sent a complaint to Readers Digest using Safari and got the following: ERROR: register_globals is enabled in your PHP environment! Warning: Cannot modify header information - headers already sent by (output started at /home/kbrown21/public_html/wp-

  • Hiding Price of the Materials in Output Form

    Hi, A business unit doing brokerage, don't want to show the prices of materials at item level in the Quotation they send to the customer. What settings are to  be done in Condition Type for achieving this ? Please give the details ASAP. Warm Regards,

  • Disallowing Pr commitment or budget limit block at the PR level

    Hi gurus, Hope this thread finds you in a good condition. my issue is we have a project created as an internal order. Further we have a budget of lets say 10000 usd assigned to it and ofcourse the commitment is active for the order and the order type