Tracking logon user's IP address

Hi gurus,
We are implementing an external facing portal in EP 7.0. As part of audit trail, we need to track the IP address of the user logging into the portal. While I have been going through the default activity report provided + configuration of new reports, nowhere do i find the mention of tracking the client IP address. I went thru Prakash's blog on Writing your own portal statistics tool, and was wondering if we do have to take up such a customization in logo.par?
I am seeking suggestions on how to track and record the client IP address once a user logons into the portal.
regards,
S Rudra

Hi,
Thanks for the single reply to the question .. not to mention awarded good points too ... configuring the way mentioned gives the details into the standard log file.... one has top again filter out the details
I solved the problem myself ... HOW .... here it goes
But I was looking to get custom report, to get the login userid, IPaddress and time of access.... built a custom class to write the details into a text file and stored it into a server location ... then I modified the masthead par to implement the same ... not the logon.par ... currently working to get the output in download excel file ...
Cheers!!!!

Similar Messages

  • Track a user's IP address

    I have gotten multiple offensive messages and calls from a user who is using false names of a couple different people I know. I know this person knows me and goes to my school. I want to track this person, and find out who it is. I have an incling but I cannot just assume. I want to know. The people he is immitating want to know. This is getting out of control and I want to find this person immediately. Please help me track the user names: basshead876 and basketballa469 
    Please! I do not want their usernames being deleted, I want to find out where they are coming from. This is a serious matter and I want to get to the bottom of this. Please get back to me with some information or anything at all. 
    Thank you. 
    Breonna

    if you really feel that this is a serious matter, and can be considered as a form of harassment, you may indeed to report this incident to your local police. Then they can contact Skype if your local police may need information for their investigation.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • How to track the user who deleted the info object.

    Dear Gurus,
    In our BI system one info object has got deleted.  If I need to track the user who has deleted that how can I track it(in which DBtable).  And the complication is one user ID is being used by many people, in this case how can I track that from which machine the Info Object has been deleted(if there is any possibility to track the machines by IP address).
    Kindly let me know if there is any procedure to find it out. Your help will be rewarded with a great honour.
    Regards
    Mohan Kumar

    Hi dear,
    you have to go in SLG1 transaction, and then select
    Object: RSD
    Subobject: IOBJ_DEL
    External ID: (put here the name of your deleted IO)
    Then choose a time range...and voilà, you can find the user who deleted the IO...
    Hope it helps!
    Bye,
    Roberto
    About the IP...look at USR41 table, but I think it's a bit difficult fo find data referred to the past...
    If you haven't activated logon auditing in SM19...

  • RFC adapter: Dynamic logon user

    I need to have a RFC adapter where the SAP logon user is taken from an incoming SOAP request, e.g. the logon user in the RFC adapter has to be dynamically changed.
    Is there any suggestions to handle this issue? And do anybody know if SAP is releasing a RFC adapter handling this issue in near future?
    /Brian

    One solution is to modify the RfcAFBean module on the module tab of the RFC adapter.
    But this work around requires that each SAP function module adds a user field, so you can map the SOAP request user to this user field.
    Another draw back is that you have to create you own pool of channels to keep track of which user is using which channel(s).
    /Brian

  • Tracking VPN user connectivity

    Is there an easy way on the ASA to track user connectivity statistics? I have found that I can get a syslog record when a user connects / disconnects but am looking for an elegant way to track a bit more. On the old Concentrator there used to be a log entry when a user disconnected that gave things like time connected and the amount of data transferred. I would like to figure out a way to duplicate this on the ASA and maybe even add the IP addressed they received from the DHCP pool? I though this might be part of accounting but that appears to be more for radius integration than keeping track of user usage.
    Thoughts or suggestions on how to accomplish this?
    Brent

    Cisco Security Manager product collects and stores such information (along with a lot of other things). It's a pretty hefty product though and probably more than you want to spend for doing just that one thing.
    You can use a general purpose SNMP management tool like PRTG to grab all the data as well. I know it has out of the box sensors for Cisco ASA VPN connections and users. I'm not sure if it also collects the amount of data transferred.

  • How to collect intranet user's MAC address from web part on document library

    I need the best solution for the following problem:
    Let's say for an intranet application just to do customization through a web part on a document library we need to collect MAC address of all user's machine who tries to access the particular document library. 
    main point to achieve is we want to give access only to few users to a particular document library. I think if we get unique mac address then also purpose can be solved. Is there any other way apart from mac?
    In SharePoint 2013 on premise application what is the best way to do this customization? early reply is highly appreciated.
    Thanks,

    Hi,
    Why do you need this?  SharePoint runs on top of ASP.NET so its limited to what ASP.NET can do.  A quick google returns results like:
    http://www.codeproject.com/Questions/303612/How-to-get-Mac-Address-of-Client-Machine-in-asp-ne
    It's highly unlikely you can achieve this, back to my first question - why?  Maybe you can achieve the requirement in a more supportable manner.  I'm assuming you want to track the user.
    Thanks
    Dave
    My SharePoint Blog - http://www.davehunter.co.uk Twitter -
    @davehunter

  • How do I use JSP to track online user

    Hi,
    I am using JPSs to build a website,and I want these JSPs to detect and display how many users are active browsing on my website and their usernames.I know I can use session to track cocurrent users online,but I had to use some external class to do that,so my Q is that is there pure JSP solution for this without use bean or call other class?
    Thanks!
    John

    Okay,
    I am fairly new to the whole JSP thing, but I
    I understand what you are saying by putting the login
    names into a vector. What I don't understand is how
    you would set up the vector. I know this isnt going
    to be syntactically correct but for example - :
    In my file Logon.jsp lets say I have the following
    code:
    Vector v = new Vector();
    String LoginName = session.getValue("login");
    v.add(LoginName);
    Now the problem I see with this code is that
    t everytime someone logs in, Vector v is going to be
    reset to a new empty vector and instead of adding to
    an already existing vector, this code would just only
    be able to hold at most, one login name. Where would
    I declare my vector and how do I prevent it from being
    wiped out? I am new to this, so please dont bash me
    too hard.
    EdThis is why you would want to use an external class.
    Write a class which has the vector as an instance variable.
    The class should have a method to add to the vector
    when someone logs in and remove them when they log out.
    Use the <jsp:useBean ... scope='application'> tag in your JSP.
    This will make the class available to all JSPs in the application.
    The first time your class is called it is instantiated.
    After the first call it is read from the application object and
    is not re-instantiated. You can call your add/remove methods from
    a scriptlet in the JSP.

  • My laptop will not start - it's telling me that "the logon user interface dll csgina.dll fail to loa

    My Laptop will not start - it's a 4 year PC and it's runing on XP.
    When I start I get this message" The Logon USer Interface DLL failed to load - Contact your administratoe to replace the DLL or restore the original".
    How do I fix so I can start my windows.
    Thanks,

    Hello -
    Try this:
    - When you receive the error message that is described in the "Symptoms" section, click Restart.
    - Press F8 repeatedly as your computer begins to restart. This triggers the Windows Advanced Options menu.
    - Use the arrows on your keyboard to select Last Known Good Configuration, and then press ENTER.
    (Also, You can try Safe Mode and do a "System Restore" from there.)
    ***Last Resort, you will have to edit the registry and this may prevent your computer from booting***
    - boot your system and tap away at F8
    - Select Safe Mode
    - After Windows loads into safe mode.
    - Start >> Run >> “regedit” Press Enter.
    - Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon
    - Look for the GinaDLL Key
    - Select and delete this key and this key ONLY. DO NOT delete the entire Winlogon folder of keys.
    - Close Regedit with the RED "X"and reboot the machine
    ****Although I am an HP employee, I am speaking for myself and not for HP.****
    ****Click the White Kudos star to say thanks****
    ****Please mark "Accept As Solution" if it solves your problem****

  • Can I sync two iPads with different users and email addresses on the same computer

    Can I sync two IPads with different users and email addresses on the same computer.

    yes, just make sure you turn off auto-sync to keep everything organized before you try syncing
    on a pc
    edit > preferences > devices - 'prevent ipads, iphones, and ipods from syncing automatically' needs to be checked

  • Changed my Apple User Name (email address) and home sharing no longer works?, Changed my Apple User Name (email address) and home sharing no longer works?

    I've had the 2nd generation Apple TV since this past October when it was released and it has worked fine until I recently changed my Apple User Name (email address). After changing my user name my Apple TV and iPhone 4 no longer find my shared network. Home sharing is enabled on all devices, including my Sony Vaio Laptop, iPhone4, and Apple TV 2nd generation. Everything else has remained constant, including service provider, router, modem, and internet security (Trend Micro). Also, my library is on a networked hard drive, which didnt seem to make a difference before, but I figured I'd mention it. Any thoughts?
    Thanks.

    Winston,
    Thank you for the information.  He confirmed that the ID and password are the same on every device.  This only started happending when he changed his User Name with Apple. 
    --Itunes is running on a Windows Vista Machine (Sony Vaio)
    --He has an Apple TV (2nd Gen)
    --He has an iPhone 4
    Can you tell me more about the technologies that apple uses to make "homesharing" work?  Do you think he may need to remove then re-install Bonjour?

  • Custom report toshow the "Last Logon User Name"

    Is it possible to create a custom report to display the "Last Logon User Name" field that appears in the Properties of each computer object ?

    Yes, download the RDL file and modify the report. If the user name is not in one of the current datasets, then you have to add it first.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • How to track WebUI users in GUI

    Hi,
    I want to track users in GUI who are login via WebUI . Is there any way to track the users in GUI who are working in WebUi like which report they are running, whether their session is active or stuck
    We are using CRM 7.0
    Regards,
    Puskar

    Thanks for update,
    Now I am checking with development team to develop the functionality to register in a custom table which track webui users in GUI, Because my actual requirement is to implement a long term solution for the table lock issue
    We want a solution where Service Requests will be automatically unlocked after 30 minutes if no process is running. As some times users are complaining that Service Requests locked in following cases
    u2022     Network volatility: When Network is not instable
    u2022     When Network cable is unplugged
    u2022     When user doesnu2019t follow the correct way to navigate around Webclient
    Beset Regards,
    Puskar

  • Last Logon User name query attribute not populating

    I have created a query that looks for all desktops in my environment and returns the hostname of the PC, the computer system model, and the last logon user name of each machine.  The problem is about 200 PCs do not have the last logon user name field
    populated.  The remaining 350 desktops and all laptops are reporting this.  I have been looking at this for the last several days but cannot find a reason why.  I verifed the PC have had at least one person log into them.  I thought maybe
    it is an issue with the SCCM client on the PCs so I have tried unistalling/reinstalling the client on a few machines.  After the reinstall is complete, the query shows my domain account as last logged into that PC, as I would expect.  However, no
    matter how many times I log into and out of the same PC with a different domain account, the query doesn't show this.  Can anyone help with some direction with this?  I am running Config Manager 2012 SP1 CU2.
    Thanks in advance.
    Mike G

    Audit logon events it set to capture success and failures.  The Heartbeat Discovery is set to send every week.
    Check your DDM log on site server and look for any error messages.
    I personally run my heartbeat discovery every day.
    You can try to adjust your discovery interval and see if that helps. If you can run it manually and it works, I can't think of anything that it would prevent it from working site wide with currently scheduled interval.
    Also, if you have adjusted your aged data maintenance tasks, this is something worth noting:
    The default schedule for Heartbeat Discovery is set to every 7 days. If you change the heartbeat discovery interval, ensure that it runs more frequently than the site maintenance task Delete
    Aged Discovery Data, which deletes inactive client records from the site database. You can configure the Delete Aged Discovery Data task
    only for primary sites.
    http://technet.microsoft.com/en-us/library/gg712308.aspx#BKMK_HeartbeatDisc

  • How to capture the Windows logon user

    Hi. How I can to capture the Windows logon user for the browser.
    I have a procedure on webtoolkit, and when I call the proc I pass the user of application, I need check if the net user is the same.
    Thanks

    if you have to take the user name of the server machine it is just
    System.getProperty("user.name");if you want to retrive the username from the client machine
    then look at this thread
    http://forum.java.sun.com/thread.jspa?threadID=766416&messageID=4370490#4370490

  • The user profile service service failed to logon user profile cannot be loaded on Windows 7 Home Premium

    Good Afternoon Everyone,
    I am not technologically savvy as a result I'm having trouble understanding previous posts on "The user profile service service failed to logon user profile cannot be loaded." Lingo on domain reset etc, not sure that this pertains to solving my  issue
    ... I cant even get pass the sign in page let alone make changes. I am having this issue with my Dell Studio XPS 1340 with Windows 7 Home Premium. If anyone can provide their two cents I would greatly appreciate.
    Very Respectfully,
    Jesse

    "Jesse.soto1" wrote in message news:1e164fdf-7370-45c0-9bc7-3b58278121c3...
    Good Afternoon Everyone,
    I am not technologically savvy as a result I'm having trouble understanding previous posts on "The user profile service service failed to logon user profile cannot be loaded." Lingo on domain reset etc, not sure that this pertains to solving my  issue
    ... I cant even get pass the sign in page let alone make changes. I am having this issue with my Dell Studio XPS 1340 with Windows 7 Home Premium. If anyone can provide their two cents I would greatly appreciate.
    Very Respectfully,
    Jesse
    Home Premium cannot logon to a Domain, nor can it be set to try it.
    when you get the logon window, try hitting the three-finger salute )Ctrl+Alt+Del) twice – it may bring up the old-style login window – enter your credentials there.
    Noel Paton | Nil Carborundum Illegitemi |
    CrashFixPC | The Three-toed Sloth

Maybe you are looking for

  • How can i delete emails from my iphone or ipad one time and have it be deleted on all my devices?

    I have an iphone and ipad and want to be able to delete an email on one time and have it delete it all all my devices, including my MacBook Pro. I have Cloud set up.

  • Loaded data is not yet visible in Reporting (see long text)

    hello all I have the next problem : in transaction RSA1, with infocube 0SD_C03 (Sales: Overview) click right/option/manage. appear the next message "Loaded data is not yet visible in Reporting (see long text)", when execute the rollup, show the next

  • HOUSE BANK CONFIGURATION

    Hi Experts In my client  number of bank accounts  maintained with each bank which is configured as House bank is more than one in almost alll the cases. Client is interested for check printing for each bank account maintained with the bank be it auto

  • Advanced Routing with WRT120N

    Hi there. A few months ago I configured my former router (WRT54G2) for a OpenVPN. I forwarded the port 1194 and in Advanced Routing I used to have this configuration: Route Name: openVPN Destination LAN IP: 192.168.10.0 Subnet Mask: 255.255.255.128 D

  • Web Service to xml to bls to xacute query formatting

    Hi. I have a BLS calling a web service which returns a data set in the xMII XML format. I take that output and put it in a xml transaction output property and try to read it with an xacute query. (obviously I will be doing more manipulations to the d