Newbie - research to review activity logs, exporting options?

I would like to examine the activity of Lab Manager 4 logs without having to click several times on the next screen, is it an available in Excel export option, or? Thank you for all the ideas!

There is no option to export.  Next closest thing would be to query the database.

Kind regards

Jonathan

B.SC., RHCT, VMware vExpert 2009

NOTE: If your question or problem has been resolved, please mark this thread as answered and awarded points accordingly.

Tags: VMware

Similar Questions

  • The family safety activity log shows no data for Facebook

    Original title: Family Safety + Chrome + Facebook

    The latest version of Live Essentials is installed on Windows 7

    Parental controls will not register the Chrome Facebook activity.
    I see in the activity that children use, for example, 0.5 hours of chrome, but there is no granular information.
    My daughter spent 2 hours on Facebook and the Family Safety activity log shows no data to Facebook.
    The computer is a new installation of Windows 7
    Live essentials have been installed yesterday.
    All web links for accounts for children have been created yesterday
    Does anyone have a suggestion on how to see real activity?
    Also, before someone suggests using another browser, is not an option, IE is uninstalled.
    Chrome is the only browser used because of all the android devices, we have.
    Thank you

    Client Windows Live Family Safety currently not reported HTTPS traffic unless the web of the child, filtering mode is set to "notify on the adult.  Facebook who worked in HTTP mode has recently moved that the HTTPS site and that's the reason to not see, Facebook or any other site that is HTTPS in the progress report on Windows 7 machines.

    It is resolved in Windows 8 and activity reports should show HTTPS traffic.

    Current work around that for Windows 7 client

    -Set the mode of web filtering to ' warn on adult "- child will receive a warning message if they go to all the adult sites and the parents will be informed in the annual report if the child decides to go to the site.

    Sorry for the inconvenience.

    Thank you

    Shankar

  • Activity log truncated every 14 days

    Hello

    We are on APEX 3.2.1. We would like to see how many users are using our APEX applications, but apparently the activity logs are truncated every 14 days! Is this expected behavior? Is it possible to set this up? I thought that this used to be longer, does with a recent version of the APEX?

    Thank you
    Matthias

    Mathias,

    It is listed in the documentation for the logging. There are two tables running at ~ 14 days to hold a total of the value of one month of data depending on the load. It then uses a view to show you the current array that will logging. I need to follow our users, so I combined a lot of different things I've learned on this site into a complete solution for our business needs. It's here: I then created an APEX application with an interactive report to query the data in my table.

    I created a new DB schema to remove this daily information and save it for 13 months.

    DB user: apex_management

    The table has been created by: create table APEX_ACTIVITY_LOG_ARCHIVE select * from apex_activity_log where 1 = 2;

    view apex_activity_log is provided by apex which is a composite of the two tables that all hold about 14 days worth of data.

    It is worth noting that apex_activity_log needs of the security_group_id of the workspace to define before you access (outside the apex as via dbms_scheduler) while the underlying tables are not. The only downside is that, for every upgrade, you need to fix the job to point to the new schema. (Or if the underyling table changed its name) then the view is more likely to not change.

    Currently, there are two procedures, one for the new data to add to the journal and the other to purge old data to our needs. This is handled by a dbms_scheduler job: APEX_ACTIV_LOG_ARCHIVE_REFRESH

    This task runs every day.

    BEGIN
    () sys.dbms_scheduler.create_job
    job_name => ' 'APEX_MANAGEMENT '. ' ' APEX_ACTIV_LOG_ARCHIVE_REFRESH ' ',
    job_type-online "PLSQL_BLOCK."
    job_action => ' begin
    refresh_apex_activity_archive;
    end;',
    repeat_interval => ' FREQ = DAILY; BYHOUR = 21; BYMINUTE = 30',
    start_date-online systimestamp to the time zone "America/New_York"
    job_class => ' "DEFAULT_JOB_CLASS '",
    observations-online "used to synchronize the Apex Activity from Log of a schema of apex to check the location for the monitoring of the use of the app,
    auto_drop => FALSE,
    enabled-online FALSE);
    sys.dbms_scheduler.set_attribute (name => ' "APEX_MANAGEMENT".) (' ' APEX_ACTIV_LOG_ARCHIVE_REFRESH ' ', the attribute-online 'raise_events', value-online dbms_scheduler.job_failed + dbms_scheduler.job_broken + dbms_scheduler.job_disabled);
    sys.dbms_scheduler.set_attribute (name => ' "APEX_MANAGEMENT".) (' ' APEX_ACTIV_LOG_ARCHIVE_REFRESH ' ', attribute value-TRUE online-online 'transfer',);
    sys.dbms_scheduler. Enable (' "APEX_MANAGEMENT".) ("' APEX_ACTIV_LOG_ARCHIVE_REFRESH" ');
    END;

    create or replace
    PROCEDURE POPULATE_APEX_ACTIVITY_ARCHIVE
    AS
    BEGIN
    INSERT
    IN apex_activity_log_archive
    (
    time_stamp,
    component_type,
    name of the component,
    component_attribute,
    information,
    ELAP,
    Num_Rows,
    UserID,
    ip_address,
    USER_AGENT,
    flow_id,
    step_id,
    session_id,
    SQLERRM,
    sqlerrm_component_type,
    sqlerrm_component_name,
    page_mode,
    application_info
    )
    SELECT a.time_stamp,
    a.component_type,
    a.Component_name,
    a.component_attribute,
    a.information,
    a.ELAP,
    a.Num_Rows,
    a.UserID,
    a.ip_address,
    a.USER_AGENT,
    a.flow_id,
    a.step_id,
    a.session_id,
    a.SQLERRM,
    a.sqlerrm_component_type,
    a.sqlerrm_component_name,
    a.page_mode,
    a.application_info
    Apex_activity_log has,.
    apex_activity_log_archive x
    WHERE a.time_stamp = x.time_stamp (+)
    AND a.session_id = x.session_id (+)
    AND x.ROWID IS NULL;

    EXCEPTION
    WHILE OTHERS THEN
    -raise_application_error(-20000,'Error.');
    lift;
    COMMIT;
    -If you look at my predicates in the insert statement, I'm an anti-jointure (tom site search for this). This means that I do a left outer join on the view from the top with the table based on the date of the notice and the apex_session_id... If there is a match, I'll have a row_id of my table (rowid is not null). If I did not have a match the row id is null (and therefore does not exist).
    --
    -WHERE alog.view_date = x.view_date (+)
    - AND alog.apex_session_id = x.apex_session_id (+)
    - AND alog.application_schema_owner = USER
    - AND x.ROWID IS NULL;
    END POPULATE_APEX_ACTIVITY_ARCHIVE;

    create or replace
    PROCEDURE REFRESH_APEX_ACTIVITY_ARCHIVE
    IS
    BEGIN
    -Procedure handles refreshing and purging of the long version of the apex_activity_log.
    -The security_id attribute must be defined in order to see the data for this workspace.
    -Could use the underlying tables wwv_flow_activity_log1$ wwv_flow_activity_log2$, but
    -There is in renamed the schema after each upgrade of the apex. (No need to set good security_id)
    -create table APEX_ACTIVITY_LOG_ARCHIVE select * from apex_activity_log where 1 = 2;
    -CREATE INDEXES 'APEX_ACTIVITY_LOG_ARCHIVE_IDX1' ON 'APEX_MANAGEMENT '. "" APEX_ACTIVITY_LOG_ARCHIVE "("TIME_STAMP");
    --

    DELETE FROM APEX_ACTIVITY_LOG_ARCHIVE WHERE time_stamp< sysdate="" -="">
    --
    -This security_id can be obtained from an export file or you making home > Manage Workspaces > Workspace manage assignments of schema.

    wwv_flow_api.set_security_group_id (p_security_group_id-online 1786101047996118);
    populate_apex_activity_archive;

    wwv_flow_api.set_security_group_id (p_security_group_id-online 1734204950462651);
    populate_apex_activity_archive;
    wwv_flow_api.set_security_group_id (p_security_group_id-online 6555628123884835);
    populate_apex_activity_archive;

    --

    END REFRESH_APEX_ACTIVITY_ARCHIVE;

    Hope this helps,
    Justin

  • Activity log does not...

    The activity log for my son appears not any activity, even if it was on the internet... I got the active log activity for about two weeks... no idea how I make it work?

    Hi MichelleRob,

    Thank you for the presentation of what we are concerned about. It is possible that you experience this problem because you are using an older version of Windows Live Family Safety. To do this, connect to the client Windows Live parental controls with the parent account, once connected, click on the questionmark icon and select parental control. The latest version is 15.4.3555.0308.

    If you use the version dated the customer exit, we recommend that you download and install the latest version. You can check the link below:

    http://Windows.Microsoft.com/en-us/Windows-Live/Essentials-other-programs

    I also want to confirm if the activity report feature enabled on the parental control Web site?

    Go to https://fss.live.com and sign in with the parent account, select the account from the child that you analyze and confirm if the activity of reporting on behalf of the child is running.

    Finally, have you tried to update the client of parental control filter?

    Sign in to the family of customer security with the parent account, on the top right click on the icon that has 2 arrows (get latest settings from the Web site).

    After having been prompt that you have the last parameters, you can then check on the Family Safety website if activities work after your child is doing certain activities on the computer.

    In addition, Family Safety will send an email from the summary of activities a week after that the activity tracking has been enabled. You will receive mail to the parent account.

    Please let us know if the same problem still persists.

    Thank you!

  • Activity log works do not at all

    I have exactly the same problem, the activity log is not showing something and they have most certainly been online... Please help.

    Hello

    It is possible that you experience this problem because you are using an older version of Windows Live Family Safety. To do this, connect to the client Windows Live parental controls with the parent account, once connected, click the question mark, and then select parental control. The latest version is 15.4.3555.0308.

    If you use the outdated version of the client, I recommend that you download and install the latest version. Please refer to this link: http://windows.microsoft.com/en-US/windows-live/essentials-other-programs

    I also want to confirm if the activity report feature enabled on the parental control Web site? Go to https://fss.live.com and sign in with the parent account, select the account from the child that you analyze and confirm if the activity of reporting on behalf of the child is running.

    Finally, have you tried to update the client of parental control filter? Sign in to the family of customer security with the parent account, on the top right click on the icon that has 2 arrows (get latest settings from the Web site).

    Thank you
    Gerard G.

  • Why not first a dv pal 24 frmaes export option? Why?

    Why not first a dv pal 24 frmaes export option? Why?

    or is this?

    someone help out me...

    Because video PAL uses a frame rate of 25 frames per second.

  • FDM activity log

    Hi the FDM Experts,

    Given that our activity log tends to become very big, I want to get in practice to delete it before the end of each month of closing.

    My question is what are the consequences of this in terms reports / drill-back feature.

    The activity log cleaning will prevent security audit reports or reports of mapping is filled?

    The cleaning of the activity log will impact our ability to drill back to planning/Essbase and HFM?

    In other words, are audit reports (or any other FDM report) or Pierce return depends on the activity log data?

    Thank you
    Mark

    Hello

    The activity log cleaning will prevent security audit reports or reports of mapping is filled?

    The cleaning of the activity log will impact our ability to drill back to planning/Essbase and HFM?

    You should not have any impact on drill back to target applications as this process is looking like the intersections of the target of your data.

    Activity log records activities of FDM information and audit information. That's why your audit reports may be affected if you turn off this table.

  • My alt text applied by object Export Options in InDesign CC tags are not displayed in PDF format

    I am marking my images and adding tags to text in InDesign CC by object Export Options and even add Alt in the structure for my images, but when I bring it in PDF, the image is not labeled in the order of reading and text tags are not displayed. How can I fix that, apart from making the work directly to PDF?

    I solved the problem - discovered that InDesign CC do not mix images of previous versions of InDesign, so took everything in the document and placed into a new document, exported to PDF and all that the tag perfectly!

  • VBS set CS6 with multiple installed versions of Illustrator export options

    Hello

    I have two versions of Illustrator installed on my machine (CS6 and CC).

    I need to create an application that will save the files HAVE as PSD. The problem I have is that the CS6 and CC is open when I try to set the Photoshop export options.

    Here is the code I use:

    IllApp = CreateObject ("Illustrator.Application.CS6") ' open Illustrator CS6

    ExpPSD = CreateObject ("Illustrator.ExportOptionsPhotoshop") ' this line will cause Illustrator CC open

    My question is, is it possible to set the export options for CS6 only?

    Thanks in advance for your help

    I solved the problem using Dim expPSD = CreateObject("Illustrator.ExportOptionsPhotoshop.CS6")

  • OBIEE 11.1.1.7; Remove the Option of 2003 Excel export Option

    How can I remove the Excel 2003 export option-> option of Excel report on a dashboard?

    Excel 2003 and Excel 2007 + are choices; want to eliminate 2003 and just let Excel 2007 +.

    Why this is not correct? That's what you just wait?

    and also let me know if you have something better than that!

  • How can I transfer a project that resulted from one computer to another without the export option?  My computer won "work on export control.

    How can I transfer a file of 532 images, which have been improved in Lightroom, to another computer without

    using the export option?

    My computer will not export.

    It is not a question of DISK SPACE.

    It is a memory problem. You don't have enough MEMORY.

    Temporarily, you should try to export with all other applications closed. In the long term, you must have BOTH a 64-bit operating system and 8 GB of memory.

    If I were you, I would ask your computer to change the computer to a 64-bit operating system.

  • Builder export options

    I looked in this document: https://helpx.adobe.com/photoshop/using/generate-assets-layers.html

    It does not appear there are options for the export of the .gif files? I would like to be able to set the quality of the colors and the color mate. Isn't this possible?

    This seems like something that should be included for a web export option, it is not?

    Someone knows how to do this or do I just have to continue to use the slice and dice method?

    The current as syntax is managed by the code generator is listed here: generate Web assets Spec functional Wiki adobe-photoshop/generator-assets · GitHub

    But the answer to your question is no, there is no additional options for the export of files .gif with the generator.

    BASIC

    .png - png 32 by default. Support the flavors are: .png8, .png24, .png32

    .jpg - default quality is 9 (90%). Options include: .jpg(1-10), .jpg(1-100%)

    .gif - based transparency alpha, no options

    But if you can add an extra step, maybe you can make an action or a droplet to save for web with options on all auto-generated assets.

    RE: transparent .gif... If you make an empty layer with a name like "spacer.gif" or sommat, then add a layer mask, however large, the layer mask is, what size is your transparent .gif. For example. you make a layer with a mask showing 4 x piece pixel, you get a transparent gif 4 x 4.

  • Using the export option

    I bought the export option on my adobe reader for ipad software. He was charged to my account, but for some reason that is not my access. He repeats to me that I have to pay for it. When I enter my information a notice appears saying that I bought for her, but nothing has changed. Do not know who to contact about this. Help, please.

    Hi kelligirl113,

    If you are having problems with a subscription that you have purchased via the Apple App Store, you will need to communicate with them to find out why you are unable to access the subscription. (Adobe does not support subscription sold through the App Store).

    In the meantime, however, please make sure you sign the application Acrobat Reader DC using the same identification Adobe/email address and password you used when you purchased the subscription.

    Best,

    Sara

  • Photoshop CC 2015 - no export options work

    Hello

    I try the new 2015 Photoshop and it seems that export options do nothing...

    I clicked on the Quick export, export and generate image assets - nothing happens.

    The only export option that work is the save old good for the web...

    Is it me?

    Update:

    Export all my problems have been solved!

    I would never comment that replaces my card GPU will affect the export of files.

    Was my old GPU nVidia GeForce GT520 2048 M DDR3 64 b and always kept my update of the driver.

    Export failed if I had the "Use Graphics Processor" options turned on or not.

    I have found no documentation Adobe, saying that there is a problem with this card in Photoshop.

    But after replacing the card with a new nVidia Quadro, uninstall and reinstall Photoshop, all the export options are working well.

  • Log in option

    Hello!

    I'm asking about the possibility to create a log in option for the user who visits my website and write something (like a feedback) is possible do Pentecost Muse?

    Hello

    About the thing of connection, please refer to this topic, Re: can I create a login/password in the Muse for a HTML5 page or two?

Maybe you are looking for