Tracking user

Hi all,
Is there any way to keep track of users who has changed the db.Let, there is a table where any user can insert,update or delete data. Is there any way to identify the user who have done that?
thanks in advance.

You can track user activities by either:
setting up Audit on specific objects on certain users.
tracking activities from the redo log file / archivelog file by means of the logminer.
~ Madrid

Similar Messages

  • Tutorial - how to track user progress in a Captivate movie

    I wanted to start working with the new scripting capabilities
    in Captivate 4 and thought a good first project would be to create
    a set of variables and custom actions and execute the actions based
    on the state of the variables. I wrote up a description/walkthrough
    with screenshots and the source .cp is downloadable here:
    http://elearninglive.com/wordpress/2009/01/tracking-user-progress-in-captivate-4-using-var iables-and-actions/
    Hopefully it proves useful to others!
    A couple of things I mention at the bottom of the post in
    regards to the new features in CP4:
    1. The actions window is amazingly slow once you add more
    than a handful of actions. Perhaps it's just my machine? I have a
    very fast machine with lots of ram, but perhaps it's something
    unique to my environment?
    2. You can't 'chain' actions. In other words, you cannot use
    'execute multiple actions' setting to execute user-created actions,
    just the built-in ones, which seems to me a pretty big limitation.
    I had to work around it.
    3. As an add-on to #1 above - there is no way to
    import/export code. Since the actions window is so slow it would be
    ideal if we could just import code written in a text file, or
    better yet, have a simple code editor (like the actions panel in
    Flash).
    My 2 cents, fwtw, as a new CP4 user....
    mark
    www.elearninglive.com

    > But I didn't really know what AuthorWare was actually
    > capable of producing until this past year when I
    happened to subscribe to
    > the
    > AWARE list (AuthorWare Developers) and over time read
    about the
    > capabilities it
    > had. It was an excellent tool - and it seems, the best
    there ever was for
    > our
    > needs, and it amazes me that there isn't anything to
    replace it yet that
    > matches it. Of course, the problem was the shockwave
    plugin. Which is a
    > big
    > problem and the real original reason I never looked into
    it in the first
    > place.
    The biggest problem Authorware had was poor marketing. Second
    was it had no
    way to natively create the eye-candy that Flash was wowing
    the world with.
    Third, there was no attempt by Macromedia modernise
    Authorware with a lot of
    very basic things that would have made a huge difference to
    everyone's
    perception of the tool
    Fourth, Marketing kept telling people Authorware was dead,
    from about
    Authorware 5. I think the Flash team was on a bonus for
    converting people
    >
    > I don't understand why Adobe is now making Captivate the
    next AuthorWare.
    > That's basically what they're doing it seems. It's like
    saving up to buy a
    > ferrari when you have on sitting unused in your garage!
    They already had a
    > great elearning development tool in AuthorWare and just
    needed the one big
    > piece: output to flash swf and not shockwave. I guess
    there were technical
    > reasons why that wasn't done?
    I think it is clear to those of us that have had to move to
    Captivate from
    Authorware that Captivate is *very* lacking in specific
    advanced features
    and functionality that old hands are used to. As with any
    product, users are
    bombarding adobe with requests that boost the power and scope
    of Captivate.
    It's a natural progression.
    >
    > As much as I like Captivate 4, it's a few major releases
    away from coming
    > close to what we *really* need.
    I agree - but it is a lot closer this time around :-)
    Steve
    http://twitter.com/Stevehoward999
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Tracking user actions inside Compliance Calibrator

    Good day everyone
    I am currently working on a CC5.2 implementation and I was wondering if there was any way to track user activities, to be more precise:
    1- who created mitigation control X
    2- who mitigated risk X for user Y
    etc...
    Im working on an implementation for a client that already had custom ABAP SOD tools that would output reports assigned to different reviewers, each action was tracked through the process and reviewers/approvers had to signoff along the process so people were accountable..
    So far, the only way I found to trace who did what was by the way roles/authorisations will be separated between the Netweaver users, since I'm new to this platform maybe I am missing something.
    Any help is appreciated, thank you
    Jay

    Dear Jay,
    Check the entries in these tables:
    /VIRSA/DTCWKFLOW               Mitigation Work flow Table
    /VIRSA/MITREPORT               Mitigating Reports
    /VIRSA/MITWKFLOW               Mitigation Work flow Table
    /VIRSA/ZMITAPVR                Mitigating Control Monitors
    /VIRSA/ZMITCNTL                Mitigating Control - Users
    /VIRSA/ZMITHROBJ               Mitigating Control - HR Object
    /VIRSA/ZMITMON                 Mitigating Monitors and Approvers
    /VIRSA/ZMITPROF                Mitigating Control - Profile
    /VIRSA/ZMITREF                 Mitigating Controls
    /VIRSA/ZMITREFT                Mitigating Controls Text
    /VIRSA/ZMITROLE                Mitigating Control - Role
    /VIRSA/ZSODMIT                 SOD Group Id and Mitigating Reference Numb
    Regards,
    Naveen.

  • Track user changes in customized transparent table

    Greetings..
    How do i to track user changes in my table ? is there any master table that keep track changes made by user on the specific field.? Is there possible if the table have the original and changed data.

    i got the below explanation from other thread, which has explained by an expert, so, take it as reference and interprete according to ur req.
    BEGIN
    Table Events:
    Go to SE11 and open your Ztable
    click on the Table maintenance generator.
    you can find the function group. right
    Take the Function group name and go to Tcode SE37
    and open the Function Group.
    In the Status of the small window of the Function
    group display
    you can find out change requests , Main program and
    Function group Docu tabs.
    Click on Main program and create user defined Include.
    check the sample code below
    Click on main program
    Create user defined include
    User-defined Include-files (if necessary). *
    INCLUDE LZPHIRF... " Subprograms
    INCLUDE LZPHIRO... " PBO-Modules
    INCLUDE LZPHIRI... " PAI-Modules
    Create the below include.
    INCLUDE LZPHIRI01. " PAI-Modules
    Double click on the Include name. you have the below
    code
    Loop at Extract.
    module liste_init_workarea.
    chain.
    field fild1
    field fild2
    field fild n
    module set_update_flag on chain_request.
    You have to add a new module here
    check the below code
    *----User defind module
    Module user_defind_validation.
    endchain.
    Double click on module write code in that.
    Include <Include Name> *
    *& Module user_defind_validation
    Module user_defind_validation.
    Here you can write your own validations.
    field2 = field1 /2.
    field4 = field1 /4.
    if field4 field3.
    message.
    endif.
    EndModule. "user_defind_validation
    Events allow you to change the generated table
    maintenance dialog at predefined positions, which
    cannot be reached by user modules in the screen flow
    logic.
    The user routines are called dynamically at runtime.
    For this reason, the routines must be in a user include
    in the table/view maintenance dialog function group.
    All extended table maintenance global data is available.
    An interface is only required for events 22 and AF.
    The events can be additions or replacements.
    Additional events
    Event 01 before saving the data in the database
    This event occurs before new, changed or deleted
    entries are written to the database
    FORM abc.
    DATA: F_INDEX LIKE SY-TABIX. "Index to note the
    lines found
    LOOP AT TOTAL.
    IF <ACTION> = desired constant.
    READ TABLE EXTRACT WITH KEY <vim_xtotal_key>.
    IF SY-SUBRC EQ 0.
    F_INDEX = SY-TABIX.
    ELSE.
    CLEAR F_INDX.
    ENDIF.
    (make desired changes to the line TOTAL)
    MODIFY TOTAL.
    CHECK F_INDX GT 0.
    EXTRACT = TOTAL.
    MODIFY EXTRACT INDEX F_INDX.
    ENDIF.
    ENDLOOP.
    SY-SUBRC = 0.
    ENDFORM.
    END
    thanq

  • Hidden iPhone File Tracks Users' Every Move

    The security of Apple's iPhones and iPads is being called into question after it emerged the devices contain a hidden file that tracks the owner's locations.
    full story - http://uk.news.yahoo.com/5/20110421/twl-hidden-iphone-file-tracks-users-ever-3fd0ae9.html
    -+-No longer a forum member-+-

    Associated problem.
    Switch your mobile off when not in use!
    http://www.guardian.co.uk/technology/2011/apr/25/wifi-security-flaw-smartphones-risk
    Quote:
    "The safest route for existing users of mobile phones, particularly if they use BT Fon or Openzone, is to switch off their Wi-Fi when they leave home and only use it on systems they know to be secure – such as at home or at work. Everywhere else you use Wi-Fi – whether in a coffee shop, an airport, a railway station and especially out in the street – you are taking a calculated risk."
    "I have this awful feeling someone is watching every move I make (one of my pet hates is router location tagging)." Marvin (A paranoid Android)

  • Tracking User Access to Help

    Is there a way to track user access to HTML help?  I'm wanting to be able to run a report that will tell me how often the online help is accessed either at topic level or just the full help level if that is the only possibility. Is there a plugin or third party app that can do this?
    For my Webhelp apps, I am able to tag individual html files with Omniture tags, however I can't do this for a compiled .chm file. The issue with the Omniture tags is that everytime I recompile help, I have to reinsert the tags.
    I am using Robohelp 8, HTML Help and Web Help
    Thanks in Advance,
    Diana Weber

    Hi Diana.
    With the web output you could try using something like Google Analytics or even invest in the RoboHelp Server application. However neither of these will work with HTML Help. The problem with HTML Help may not be the feasibility of recording hits on a file but pricacy concerns by the user. The Windows System Monitor records file hits but you'd have to manage a way of homing in on the data on each end user's PC!
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

  • Anyone use sccm to track user's HP docking station serial number and model?

    i am only able to see whether the laptop is dock or not by registry key so far.
    HKLM\System\CurrentControlSet\Control\IDConfigDB\CurrentDockInfo
    anyone manage or use sccm to track user's HP docking station serial number and model before?
    thanks
    This topic first appeared in the Spiceworks Community

    The pin in picture looks liek a 5mm pin and one one on docking station is a smart pin. So you would need something like the one in picture in this link.
    In the picture observe the component in left hand bottom corner.
    http://www.amazon.com/HP-power-adapter-airplane-DV574A/dp/B0006VX07I/ref=pd_sim_sbs_pc_11?ie=UTF8&re...
    I would say, take the adaptor to store and get one.
    Wish you luck,
    Karthik
    --Say "Thanks" by clicking the Kudos (purple thumbs up icon in the lower right corner of a post)
    --Please mark the post that solves your problem as "Accepted Solution"

  • Tracking User Activity with Standard Web Logs and Tools Like WebTrends

    We are running EP 6 SP14 on UNIX and I'm looking to track user activity.  Not just how many people have logged in, but who is accessing what documents in KM.  For example, what documents are the most popular and how much use the system is getting.
    I was hoping that EP 6 (Unix platform) ran off us some standard web engine (like Apache) and we could just turn web logs on, but from the lack of discussion on SDN, I'm not encouraged.
    All I've seen is unofficial link to a Portal Activity Report, which would get us part of the way, but is not full web reporting.
    Portal Activity Report:
    https://www.sdn.sap.com/irj/sdn?id=/library/uuid/0101b690-0201-0010-6584-a02730ad5edd
    Does anyone have any insight on this?

    HI llise
    Did you get any answers? We are in the same quandry as the exisitng tracking reports are not sufficient for our needs as our users are used to using more sophisticated tools like livestat.

  • Tracking user in logs

    Gurus,
    I have this question about tracking users.
    Since there are so many log files in hyperion, I was just wondering if someone can help me with this.
    What log file would I view to see what user has retrieved a financial report at a specific time in workspace.
    We have been having this problem of the print services crashing a lot which is why I am curious to know which user is trying to pull a report or calculation when the reports crash.
    For example,
    user A retrieves a financial report in workspace, what log would tell me the user A trying to pull the report.
    Also if user A is doing a calculation, what log would i view that would tell me the user has run a calculation and the name of calculation.
    Thanks

    I don't see the USAGE table getting populated with FR report usage in 11.1.2.2. However I've these in the FRLogging.log (MIDDLEWARE_HOME/user_projects/domains/domain name/servers/managed server name/logs
    FRLogging.log)
    This entire record is for one report open.
    Starts with retrieveObject
    [2013-05-22T17:25:14.582-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.performance] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JvE8R343n3wb0DMaMF1HbIaJ00005W,0] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: logTimeEnd] PERF: 0000000016     ReportStoreManagerImpl                       retrieveObject(/My Reports/Sample Basic, 2)      This one shows which user opened the report.
    [2013-05-22T17:25:16.455-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.performance] [tid: [ACTIVE].ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JvE8RW_3n3wb0DMaMF1HbIaJ00005c,0] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: startJob] ----------------------------------------------------------
    [2013-05-22T17:25:16.455-04:00] [EPMServer0] [NOTIFICATION] [00069] [oracle.EPMFR.performance] [tid: [ACTIVE].ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JvE8RW_3n3wb0DMaMF1HbIaJ00005c,0] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: startJob] START: JobId: 3; User: admin; Name: /My Reports/Sample Basic
    [2013-05-22T17:25:16.456-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.performance] [tid: [ACTIVE].ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JvE8RW_3n3wb0DMaMF1HbIaJ00005c,0] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: startJob] ----------------------------------------------------------This one shows the database connection details
    [2013-05-22T17:25:16.514-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.performance] [tid: Thread-89] [userId: <anonymous>] [ecid: 0000JvDuacI3n3wb0DMaMF1HbIaJ000000,1:24578] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: endJobSummary] REPORT: [Start:052213 17:25:16.478-0400][End:052213 17:25:16.514-0400][Elapsed:0.036][Host:USPITCKATTOOKA2][JobId:3][User:admin][Name:/My Reports/Sample Basic][InBook:false][UserPOV:{ dsname=Sample Basic server=USPITCKATTOOKA2 app=Sample db=Basic type=Essbase metadata={Measures=Measures,Market=Market,Scenario=Scenario}}]This one is the dataquery
    [2013-05-22T17:25:16.544-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.performance] [tid: Thread-89] [userId: <anonymous>] [ecid: 0000JvDuacI3n3wb0DMaMF1HbIaJ000000,1:24578] [SRC_CLASS: com.hyperion.reporting.util.HRLogTimer] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: logTimeEnd] PERF: 000003: 0000000011     DataQuery                                    createAdmQuery     
    [2013-05-22T17:25:16.544-04:00] [EPMServer0] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: Thread-89] [userId: <anonymous>] [ecid: 0000JvDuacI3n3wb0DMaMF1HbIaJ000000,1:24578] [SRC_CLASS: com.hyperion.reporting.haradm.EssbaseMDXDataQuery] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: execute] SELECT[[
    {[Year]}
    DIMENSION PROPERTIES [Year].[MEMBER_ALIAS] , [Year].[MEMBER_UNIQUE_NAME]
    ON COLUMNS ,
    Hierarchize({ [Product].Children, [Product] }, POST)
    DIMENSION PROPERTIES [Product].[MEMBER_ALIAS] , [Product].[MEMBER_UNIQUE_NAME]
    ON ROWS
    FROM [Sample].[Basic]
    WHERE ([Measures], [Market], [Scenario])
    ]]You can see the time when the user clicked on the report, what query was used in the report, any conditional formatting applied and,...... (all information about that report.
    Regards
    Celvin
    http://www.orahyplabs.com

  • Tracking user activites

    Hi all,
    I constantly churn out website for new Property / condominium launches in Singapore and here are example of websites:
    www.highlinetiongbahru<i></i>.sg
    www.palmssixthave<i></i>.com
    www.sophiahills<i></i>.properties
    I'll like to be able to track users activities on Google Analystic as well as observation a list of competitors website activities and compare the weakness/strength among them to see how i can improve things.
    Are there any good addon or any other methods to be do the above?

    Not that I know of, but please also see analytics documentation: [https://support.google.com/analytics/answer/1032399?hl=en]

  • Tracking user activity, 'Activity Universe'

    How can I track user activity within InfoView and Central Management Console of Crystal?  I need to audit which users are viewing which reports, what changes they are making, permissions that are being set and so on...
    I have heard of "Activity Universe".  Is it part of Crystal, I dont seen an install option when I install and I dont see any clear reference to it?

    I found the audit page, that is what I need.
    However... it is not available to me:   "Your license does not allow auditing."
    What kind of licensing do I need?
    What is the cost?
    Is there a webpage that clearly explains the licensing cost/options?

  • Tracking User login and logout times

    I need to track User Login and Logout times. Does anyone know of a easy way or program to do this?
    thanks
    b

    /Applications/Utilities->Terminal->type in this command, and hit the return key:
    last
    For more information, see http://www.osxfaq.com/tips/unix-tricks/ Week 17.

  • Tracking users in the Application.cfc, please help

    Hello;
    I wrote a small tracking system for my web site. I am trying
    to upfrade it to work in CF 8. Here is what I am doing.
    I had this code on the index.cfm page of my site. I am
    attempting to move it to the Application.cfc file. When I do, it
    registers in the DB every time the user hits a page or clicks a
    link. I don't want it to do that. I do want it to tell me when they
    hit the site, and if I can what page they came in on.
    Here is my code:
    <cfquery name="tracking" datasource="my-DB"
    dbtype="ODBC">
    INSERT INTO tracking (REMOTE_ADDR, HTTP_USER_AGENT,
    TRACK_DATE, PageID)
    VALUES('#REMOTE_ADDR#', '#HTTP_USER_AGENT#',
    #CreateOdbcDateTime(now())#)
    </cfquery>
    My pageID is where I want the information on what page the
    user came in on to go.
    I placed teh query inside a session function code, but it
    doesn't work at all right now, I need to limit the hits counted by
    the Application.cfm, if I place it inside the area of the app that
    is for global variables, it adds info to the DB everytime they
    click a link and I don't want that. As for the entry page of the
    user, I am trying to make it so if someone enters the site lets say
    on the about.cfm page, that is added to the db and so on. Is this
    possible? If so how would I do that?
    Here is my application.cfc code so far:
    <cfcomponent output="false">
    <cfset THIS.name = "my-web">
    <cfset this.sessionManagement="yes">
    <cfset this.clientManagement=true>
    <cffunction name="onApplicationStart" returntype="boolean"
    output="false">
    <cfset APPLICATION.appStarted = now()>
    <cfreturn true>
    </cffunction>
    <cffunction name="onApplicationEnd" returntype="void"
    output="false">
    <cfargument name="appScope" required="True">
    <cflog file="#THIS.name#" text="App ended after
    #dateDiff('n' , ARGUMENTS.appscope.appStarted,now())# minutes.">
    </cffunction>
    <cffunction name="onSessionStart" returntype="query"
    output="true">
    <cfquery name="tracking" datasource="creative"
    dbtype="ODBC">
    INSERT INTO tracking (REMOTE_ADDR, HTTP_USER_AGENT,
    TRACK_DATE)
    VALUES('#REMOTE_ADDR#', '#HTTP_USER_AGENT#',
    #CreateOdbcDateTime(now())#)
    </cfquery>
    </cffunction>
    <cffunction name="onRequestStart" returntype="boolean"
    output="true">
    <cfset request.datasource = "my-db">
    <cfset sitePath = "
    http://www.myweb">
    <!--- this is where I was putting the tracking code and it
    added to the DB everytime someone clicked a link. not what I want
    --->
    <!--- Start True Url Variables --->
    <cfloop
    list="#removeChars(cgi.path_info,1,len(cgi.script_name))#"
    delimiters="/" index="variableSet">
    <cfscript>
    variableName = "url." & listGetAt(variableSet,1,'.');
    expression = listGetAt(variableSet,2,'.');
    </cfscript>
    <cfparam name="#variableName#" default="#expression#">
    </cfloop>
    <!--- Finish True Url Variables --->
    <cfreturn true>
    </cffunction>
    </cfcomponent>
    Thank you.
    Phoenix

    I did a dump and got it to error out, so it is recognizing
    the session, but it doesn't add any info to the DB. I also had to
    change it, I had it like this:
    <cffunction name="onSessionStart" returntype="query"
    output="true">
    <cfquery name="tracking" datasource="my-db"
    dbtype="ODBC">
    INSERT INTO tracking (REMOTE_ADDR, HTTP_USER_AGENT,
    TRACK_DATE)
    VALUES('#REMOTE_ADDR#', '#HTTP_USER_AGENT#',
    #CreateOdbcDateTime(now())#)
    </cfquery>
    </cffunction>
    Changed it to this:
    <cffunction name="onSessionStart" returntype="any"
    output="true">
    <cfquery name="tracking" datasource="creative"
    dbtype="ODBC">
    INSERT INTO tracking (REMOTE_ADDR, HTTP_USER_AGENT,
    TRACK_DATE)
    VALUES('#REMOTE_ADDR#', '#HTTP_USER_AGENT#',
    #CreateOdbcDateTime(now())#)
    </cfquery>
    </cffunction>
    it was erroring on the query attribute before in the session
    function. Even that change didn't get it to work properly.

  • Is there a way to track user logins, or login metrics?

    Hello -
    We are using OID to provide SSO for an employee portal and we are about to bring another partner application online using the same OID server. We are looking for a way to determine how many people currently use the portal and subsequently will be looking for a way to track logins for the new app. Does OID keep this information in a table? Can I find this info in the IAS console anywhere?
    Thanks in advance for any info.
    Brian
    EDIT: This thread provides some good info on this: OID user tracking
    Edited by: bantonczak on Dec 1, 2010 9:09 AM

    This thread contains good information on user logins with Oracle Portal and OID SSO
    OID user tracking

  • Is there a way I can use BC to track user's progress in a Tutorial Web Site?

    I am developing a Web Site with Video Tutorials and Games. I want to track the user's progress and give rewards as it goes. I wonder if there is a way, within BC, where I can set this up without having to go through the whole PHP/MySQL. I will if I have to, but I having searching for an easier solution. I normally use BC from Dreamweaver.

    Hi Haroon1234,
    Unfortunately no. The closest thing I've found is an app linked to the MDM where teachers can view what app is active on each of their classroom iPads (i.e. they can't see the screen itself, but can see that Edmodo is the active app on one device, Notability is the active app on another device, etc)
    ~Joe

Maybe you are looking for

  • Changing annotations from within MS Access via VBA

    I'm developing code (VBA) within MS Access to communicate with acrobat adobe. The purpose of this code is to change a particular annotation's text and backcolor (for now). However, when I run the code the annotation property changes but it is not dis

  • Convert Graphics2D Output to HTML

    Hello, Does anybody know of a library that converts Graphics2D output to HTML text? Thanks

  • Can't download labview_win_util32.zip

    Hi I need to learn how to programmatically print a file from labview and going through the discussion forum i was directed to this file "labview_win_util32.zip" on the ni.com website (http://digital.ni.com/public.nsf/allkb/4334712A8AFB989E86256514006

  • PSE 12 Type Tool Crashes ( was are you there)

    elements 12 type tool stoped working and I get frequent crashes

  • What to do if iPod has more capacity than computer's HDD?

    I just got myself the 160GB iPod Classic, only to realize some weeks later that how can I fill it up if my MacBook has only 120GB of HDD? Is there a way to fill it up without having to sync back to iTunes? I would mostly use it for videos, either fro