SUP Detail Log report missing activity

Hello,
We are using GRC 5.3 SP09.  Some actions are not being reported in the firefighter detail log report (the report that shows what transactions were executed, tables updates, old and new values, etc)
SM59 and SARA are two actions that are not reported.
We were expecting details for all actions while logged in using a firefighter id.
Please advise if you have any ideas how to resolvie this issue.
thanks
Tammi

There are some basis transactions which will not automatically have the detailed actions logged.
The log works off tables CDPOS and CDHDR with STAT as the collector for Transaction data. If the activities are not captured here, the detailed change documents will not be available.
Simon

Similar Messages

  • Open database if an active online redo log is missing

    Hi,
    Sorry for the rather long post, but I specified all the steps I performed and couldn't make it shorter :-(
    I need an advice on how to open the database if an active online redo log is missing.
    For test purposes I intentionally performed a shutdown abort when the redo log group 1 was in active state and then renamed its only member (REDO01.LOG) so that the database couldn't perform crash recovery using it. Then upon startup I obviously got the message:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'H:\ORADATA\TESTDB\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.Ok, so I checked the state of the logs:
    {noformat}
    SQL>SELECT a.GROUP#, first_change#, SEQUENCE#, a.status, SUBSTR(b.MEMBER, 1, 40) MEMBER, b.status mem_status, a.archived
      2    FROM v$log a, v$logfile b
      3   WHERE a.GROUP# = b.GROUP#
      4  ORDER BY a.GROUP#, b.MEMBER;
    GROUP# FIRST_CHANGE#  SEQUENCE# STATUS           MEMBER                         MEM_STA ARC
         1        592134         29 ACTIVE           H:\ORADATA\TESTDB\REDO01.LOG           YES
         2        592268         30 CURRENT          C:\ORADATA\TESTDB\REDO02.LOG           NO
         3        592129         28 ACTIVE           C:\ORADATA\TESTDB\REDO03.LOG           YES
    {noformat}Since opening the database to perform a log switch and thus change the status of the redo log group 1 from ACTIVE to INACTIVE to recreate the member isn't possible, I performed database recovery.
    SQL>recover database until cancel;
    ORA-00279: change 592129 generated at 02/04/2009 10:31:15 needed for thread 1
    ORA-00289: suggestion : C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_28_%U_.ARC
    ORA-00280: change 592129 for thread 1 is in sequence #28
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00279: change 592134 generated at 02/04/2009 10:31:28 needed for thread 1
    ORA-00289: suggestion : C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_29_%U_.ARC
    ORA-00280: change 592134 for thread 1 is in sequence #29
    ORA-00278: log file 'C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_28_4RLR3JS9_.ARC' no longer needed for this rec
    overy
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    'C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_29_4RLR4MF3_.ARC'
    ORA-00279: change 592268 generated at 02/04/2009 10:32:03 needed for thread 1
    ORA-00289: suggestion : C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_30_%U_.ARC
    ORA-00280: change 592268 for thread 1 is in sequence #30
    ORA-00278: log file 'C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\ARCHIVELOG\2009_02_04\O1_MF_1_29_4RLR4MF3_.ARC' no longer needed for this rec
    overy
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    'C:\ORADATA\TESTDB\REDO02.LOG'
    Log applied.
    Media recovery complete.
    SQL>So for log sequence #28 I accepted the proposed archived redo log in the FRA, for sequence #29 (that's the online redo log that is missing!) I manually specified its archived copy, and for sequence #30 I specified the CURRENT online redo log. And as it seems the media recovery was successful.
    Next I tried to open the database but again got the error:
    SQL>alter database open noresetlogs;
    alter database open noresetlogs
    ERROR at line 1:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'H:\ORADATA\TESTDB\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    The status of the log groups and its members is exactly as it was in the first query I wrote above, i.e. the redo log group 1 is still ACTIVE, so it's needed for crash recovery (which I had already done manually if I understand correctly how Oracle works!). I also checked if the datafiles are inconsistent (described in metalink doc id 1015544.102):
    SQL>SELECT DISTINCT CHECKPOINT_CHANGE#, FUZZY FROM V$DATAFILE_HEADER;
    CHECKPOINT_CHANGE# FUZ
                592269 NOSo, everything seems ok as far as datafile consistency is concerned.
    My question is: how can I rename/drop/clear/whatever the member of redo log group 1 to open the database?
    I tried to rename the log file member, to add another member to it, to open the database with resetlogs, to clear the logfile group 1, but all without success:
    1)
    SQL>alter database clear logfile group 1;
    alter database clear logfile group 1
    ERROR at line 1:
    ORA-01624: log 1 needed for crash recovery of instance testdb (thread 1)
    ORA-00312: online log 1 thread 1: 'H:\ORADATA\TESTDB\REDO01.LOG'
    2)
    SQL>alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01139: RESETLOGS option only valid after an incomplete database recovery
    3)
    SQL>alter database rename file 'H:\ORADATA\TESTDB\REDO01.LOG' to 'C:\ORADATA\TESTDB\REDO01.LOG';
    alter database rename file 'H:\ORADATA\TESTDB\REDO01.LOG' to 'C:\ORADATA\TESTDB\REDO01.LOG'
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01512: error renaming log file H:\ORADATA\TESTDB\REDO01.LOG - new file C:\ORADATA\TESTDB\REDO01.LOG not found
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    4)
    SQL>alter database add logfile member 'C:\ORADATA\TESTDB\REDO01.LOG' to group 1;
    alter database add logfile member 'C:\ORADATA\TESTDB\REDO01.LOG' to group 1
    ERROR at line 1:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'H:\ORADATA\TESTDB\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.Sorry again for the long post and thank you in advance for any suggestion.
    Regards,
    Jure

    You could check if the recovery was complete by (re)creating the controlfile with the resetlogs option.
    <CREATE CONTROLFILE REUSE DATABASE define_db_name RESETLOGS NOARCHIVELOG
    ...>Thanks for the hint. If possible, could you only check if the steps I'm going to perform are ok.
    I did an "alter database backup controlfile to trace;" and then extracted the create controlfile definition part. So in essence I should run the following statements:
    CREATE CONTROLFILE REUSE DATABASE "TESTDB" RESETLOGS  ARCHIVELOG
        MAXLOGFILES 16
        MAXLOGMEMBERS 3
        MAXDATAFILES 100
        MAXINSTANCES 8
        MAXLOGHISTORY 292
    LOGFILE
      GROUP 1 'C:\ORADATA\TESTDB\REDO01.LOG'  SIZE 20M,
      GROUP 2 'C:\ORADATA\TESTDB\REDO02.LOG'  SIZE 20M,
      GROUP 3 'C:\ORADATA\TESTDB\REDO03.LOG'  SIZE 20M
    -- STANDBY LOGFILE
    DATAFILE
      'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\SYSTEM01.DBF',
      'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\UNDOTBS01.DBF',
      'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\SYSAUX01.DBF',
      'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\USERS01.DBF'
    CHARACTER SET EE8MSWIN1250
    ALTER DATABASE OPEN RESETLOGS;
    ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\TEMP01.DBF' REUSE;Is that correct?
    About the RMAN backups: Wouldn't a 'CATALOG RECOVERY AREA' populate the controlfile with backup information again (I'm not using a recovery catalog in this case)?
    Thanks for the help!
    Regards,
    Jure

  • Virsa Toolbox - Reason/Activity & Log Report

    Hello and Happy New Year!
      I have been experiencing an issue where I am frequently kicked out of the SAP GUI when running some of the Virsa Tool Box -- Virsa Utilities and Reports --- Reason/Activity & Log Reports specifically.  My SAP GUI is 710, Build 967944, Patch Level 7 and my FF/SPM is 5.2 SP12.  This problem of getting kicked out started at or near the end of the year and continues today.  There is really no rhyme or reason when or why it happens, but I want to see if anyone else experiences this same issue or if anyone knows of a work around/resolution?
    Regards,
    Greg

    I have upgraded the 7.10 GUI to SP15 and the problem still exists.  I had our Basis team take a look at the logs and it shows that my connection was terminated or that I lost connection.  Also, as a side note, the problem is not server specific. 
    To provide a little more info, this problem occurs after I have ran the report and then save the file to my desktop as an .rtf.  It is intermittent and could happen when I run either report and could occur 50% of the time.  I still get the final report, but the GUI will disappear.

  • Missing Messages in Detail Log

    BPC 5.1
    In comparing the data manager detail logs of two packages, I noticed that the Append package provides a [Messages] section in the Detail Log but the Append into Fact Table package does not. I am not able to determine what causes this. What property, variable, or configuration setting controls the display of messages?
    Thanks,
    --Brent

    Hi,
       In order to have detailed information into the log, you have to add DEBUG(ON) instruction at the beginning of ModifyScript variable script code.
    Best regards,
    Mihaela

  • Data not exist in FF Log Report

    Hello GRC Experts,
    I have a problem in FF log report.
    Iam using SPM Ver 5.3
    Under Tab Reports => User Reports => Reason / Activity Report => I select System Name then i mention the date, for example a month. I execute, i get all the details of users FireFighter, Login Date/Time, Reason,Activity.
    But  try to download the report  "Reason Activity Report.xls" and save it in my desktop and when i open the excel there is no data inside.It is blank
    - I tried opening without saving, still the same.
    - I saved and opened in notepad but it was like a XML report not the valid data
    Thanks in advance for the solution.
    Regards,
    Prasath

    Hello,
    Even in the backend, the excel file doesn't contains any data.
    Under the Tool Box - Reason/Activity report - I enter the from date and to date and then execute.
    I can see the log report generated , but when i save into local disk and open the excel. It is blank.
    Note: The Problem exist for all kinds of report, not only specific to Reason/Activity report.
    Thanks in advance.
    Regards,
    Selva

  • Runtime error for Audit Log reports

    Hi,
    I have activated Reports feature at Site Collection level and then tried to run custom report for Dashboard library under Audit Log Reports but I got Run Time error. I tried on my local machine and on server.
    Can any body let me know how to resolve this issue to get custom report?
    Any help would be appreciated.
    BELOW IS THE ERROR MESSAHE:
    Server Error in '/' Application
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed
    by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application.
    This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>
    AEDLA.

    The audit log reporting is kind of tricky to work with...until you know what you're doing.
    Some things to check: Do you have the Reporting feature enabled?  Do you have auditing enabled on sites in this site collection?  Have any events been triggered that would have written to the audit logs?  Did you specify an output library
    for the report?  Will the report have any data?
    Also, look at the SharePoint logs in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS\ and let us know any "Unexpected" errors.
    Bob Guidinger
    Please remember to click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.

  • Generate detailed log of usage in Fire Fighter

    Hi,
    We have recently configured the FFIDs. I am able to view FF-Id, time, activity, reason, T Codein the log report. However, I am not able to view detailed changes that were executed in the system using the FF ID.
    Can anyone help us.
    With best regards,
    Adarsha KG
    Edited by: Adarsha kg on Aug 1, 2008 8:24 AM
    Edited by: Adarsha kg on Aug 1, 2008 9:59 AM

    Hi Adarsha,
    Here is what i recommend if you want a detailed log of what fields the FF ID has changed/executed while running a particular tcode. You can view the Table change log details.
    1. Use tcode SCU3 ( Transaction table History)
    2. You can view the tables with Change recording activated
    3. You can Analyze the tables by clicking on Evaluate Logs
    4. You can give the date and time and evaluate the objects/tables
    5. You need to activate the logging of tables if not previously done.
    Hope this helps
    Regards,
    Kiran Kandepalli.

  • Is there any way to track what reports are actively running on BOE?

    Good Afternoon.
    I am looking for a way to track the names of what reports are currently being run on Business Objects. We are on Business Objects Enterprise XI R2 SP3 and from what Iu2019m aware, the servers can show the administrators how many connections and how many jobs are running, and the auditing command can track when a report has completed/failed (from what I understand), but nothing really tells us what reports are actively being run.
    The purpose of this is to measure impact for an emergency restart of the server, track down reports that are taking up system resources, and debugging issues involved with the SDK.
    Background: We have several reports hosted on Business Objects, both Crystal Reports and Web Intelligence.  These reports go to different universes and databases and use several different accounts depending on the project (no central generic accounts to the databases).  Sometimes when people are running several large reports (some being upwards of 1 million rows) the users will open one, leave it to run and go to open several others, killing our session limit and resources on the server. In addition, there have been times in development that restarts have been required but there was no way to tell what reports were running, just the number of them, and in several different spots (RAS, Page server, etc.).
    Wish list (If my first priority is answered, Iu2019m also looking for the following):
    - One to one associations of what reports are being run by what users.
    - A centralized location to see what reports are being run by users opening them and what reports are being run by users scheduling them.
    - The ability to u201Ckillu201D a report that is taking too long to run by a user.
    - Possibly an interactive dashboard showing the number of active reports verses the serveru2019s limit, what reports are set in queue, etc.
    - The u201Cstageu201D a report is running in, so if someone is running a report but its stuck at the prompt for a variable stage, querying data from the database, getting data back from the database, producing and processing the data to the screen, etc.
    If Iu2019ve missed something in the Business Objects tools or if someone knows of a way to extract this type of data from the Business Objects server (3rd party tool or custom fix) I would appreciate the assistance. Thank you for your time.

    Brian,
    I don't know if you tried using the Query Builder.
    The query below (or some modification of it) may be of some help.
    SELECT
    SI_SCHEDULEINFO, SI_NAME
    FROM
    CI_INFOOBJECTS
    WHERE
    SI_SCHEDULE_STATUS = 1
    The SI_SCHEDULEINFO.SI_SUBMITTER property in the query result will give you the BOUSER value of the user that submitted the job.
    SI_SCHEDULE_STATUS takes the following values:
    0     The job is currently being processed by the job server.
    1     The job completed successfully.
    3     The job failed. Check error message.
    8     The job is paused.
    9     The job has not started because dependencies are not satisfied (e.g. Events)
    Best,
    Srinivas

  • SPM Reporting - Log reports display on front end

    Hi,
    We have implemented GRC 5.3 and have an issue on the SPM reporting through the front end.
    We have done config in dev and have the following jobs running in the background every 1 hour:
    1. /VIRSA/ZVFATBAK
    2. /VIRSA/ZVFAT_LOG_REPORT
    3. /VIRSA/ZVFAT_V01
    4. /VIRSA/ZVFAT_V03
    The log on the back-end displays all activity of FF user, but when going to the front end I seem not to get any reports to display.
    We have created the connectors via the config page, but when trying to drill through the selection criteria we found that the FF user does not come up as a selection variable. We see the system defined though.
    Any suggestions how to get the reporting to display on the front-end?
    Kind Regards, Melvin

    Santosh,
    You should only need the /virsa/zvfatbak job running in the background. However, if the emails are not triggered for the log reports, you may wish to schedule the /virsa/zvfat_log_report program to run after completion of /virsa/zvfatbak as that is the program which actually sends the notifications.
    Regarding the RFC user, check the authorisations held in the Firefighter Administrator role as those will not be too far away!
    Simon

  • Daily Logging Report

    Oracle Apps 11i
    Database : 9i
    can i get users logging report to a specific responsibility / apps on daily basis
    i have this query can anyone correct if i am wrong or is there any other way -
    select b.user_id,user_name, a.description,first_connect, last_connect,r.RESPONSIBILITY_name
    from fnd_user a, icx_sessions b, fnd_responsibility_vl r
    where a.user_id = b.user_id
    and r.RESPONSIBILITY_ID = b.RESPONSIBILITY_ID
    ------and a.user_name like '%abc%'
    and r.RESPONSIBILITY_name like '%In%Lo%Pur%'
    and b.last_connect >= sysdate
    order by first_connect
    Regards,

    Hi,
    You can run "Signon Audit Users", "Signon Audit Responsibilities" concurrent programs to get these details.
    If you want to get the same from the backend, please refer to:
    Note: 295206.1 - How to Count Total Number of Users Connected to ORACLE Application
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=295206.1
    USERS CONNECTED
    Re: USERS CONNECTED
    Number of users logged in last two months
    Number of users logged in last two months
    Regards,
    Hussein

  • Usage Report and Audit Log report showing different totals

    I am trying to understand the differences displayed in two similar reports. The first report is an 'Audit Log' Report and it is displaying the number of Resource Account creations over a time period. The second report is a Usage Report using the exact same criteria (objectType = Resource Account and Action = Create). The totals I get back are VASTLY different. Can anyone explain? Is this a known bug?

    Hi,
    In any report we don't show the storage policies information. In Cost report if the storage policies have different rate factors then we will show the split for the storage information. But in usage report , rate factors will not be applicable as we don''t show the cost details. Hope this clarifies your question. Please let us know if you need more information.
    Thanks,
    Lakshmi

  • Link on a report to Activity

    Hi,
    I would like to create a report based on appointments.
    I woudl like to have a link to open the record when user click on the subject or another field.
    I succeed to do it with opportunity but it doesn't work for activities. Can you correct my link.
    I explain how I did it for opportunities:
    1) create a report and add opp Id, opp name, booking date
    2) I go to opp Id column format and put "Custom text" and add the following text :
    "http://"@[html]"<a target=_top href=https://secure-ausomxdsa.crmondemand.com/OnDemand/user/OpportunityDetail?OMTHD=OpportunityDetailNav&OMTGT=OpptyDetailForm&OpptyDetailForm.Id="@">*</a>"
    --> When I run the report and click on the star ( * ), I go to the opportunity record
    For appointment I would like to do the same thing. So I create a report with Activity ID, Subject, Start Date, Activity type = appointment
    In activity ID column format I add the following custom text :
    "http://"@[html]"<a target=_top href=https://secure-ausomxdsa.crmondemand.com/OnDemand/user/ApptDetail?OMTHD=ActivityDetailNav&OMTGT=ApptDetailForm&ApptDetailForm.Id="@">*</a>"
    --> When I run the report and click on the star (*), I go to an appointment record that it looks like deleted or a record that I don't have access anymore.
    Can you help me and explain how to solve the problem
    Regards

    Hello Alex,
    With reference to below the email, can you please forward me ,Mike Larisons reporting book if you have - [email protected] !!
    Thanks,
    Neelima
    Tim70,
    If you have a look on page 424 of Mike Larisons reporting book it tells you how to do this:
    @HTML(left sharp arrow) a href="/OnDemand/user/ApptDetail?OMTGT=ApptDetailForm&ApptDetailForm.Id="@ target="_parent" (right sharp arrow) "Appt Details"
    Hope this helps.
    cheers
    Alex
    PS. need to know how you posted your link so we could see it ;-D

  • Change log report S_AHR_61016380 not picking IT0025

    Hi Experts,
    I need the change log report to capture the details of changes made in IT0025 (Appraisals).
    I have made necessary configurations to the below tables by watching in other SDN threads, but still my problem is not solved.
    Also made changes to master data (IT0025) and tested, but still no use.
    Log report is not picking changes made to IT0025.
    Please suggest
    Thanks
    Venkatesh

    Dear Expert,
    for logged changes in infotype report  we need to install crystal report.
    please suggest.

  • Report missing point for purchases at Pacific Sales

    Hi,
    I forgot to give My Best Buy™ account to the sales asscociate for the purchase order. How to associate My Best Buy™ account with my purchase order at Pacific Sales within best buy store? I don't have the Customer Service Pin number on my receipt to add my missing points on Report Missing Points page, and I don't see the options for Pacific Sales or sales number. 
    Please let me know how I can attach my purchase order to My Best Buy™ account.
    Thank you

    Good morning dkz640, and welcome to the Best Buy forum,
    If your My Best Buy account was not attached to your Pacific Sales purchase when it was processed, then points are unlikely to post on their own.  In most cases you should be able to report a purchase as "missing" on BestBuy.com if it was not attached to your account; however, a purchase made from one of our Pacific Sales or Magnolia stores cannot be reported online, which means we may need to see if points can be added a different way.
    I would like to go over your My Best Buy account with you to ensure it is up-to-date and to gather some additional information, so I will be sending you a private message.  You can check your private messages by logging into the forum and clicking on the little yellow envelope located at the top of the page.  I look forward to further speaking with you.
    Thank you for posting and for being a My Best Buy member.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Audit Log Reports

    Hi
    I have configured site collection audit settings but not able to get old data about users activities on portal using this feature.
    i have created it last dec 10th 2014 and whenever i run audit log reports, it generates report for only from dec 10th to 12th.
    i am not able to get six month old users activities details using this feature on share point online.
    can you please help me out here if possible?
    Thanks a lot !!!

    Hi,
    Its not possible using Javascript/Jquery or client side
    http://www.codeguru.com/csharp/csharp/cs_network/database/article.php/c15335/Auditing-in-SharePoint-2007.htm
    Please remember to click 'Mark as Answer' on the answer if it helps you

Maybe you are looking for

  • Store images problem 6610i

    I have Nokia pc Suite installed, phone 6610i is connected by cable, when I click store images I get a window that says Image store has encountered a problem and needs to close, with the possibility to debug, send an error report or don't send, aal of

  • How do i connect an external usb webcam to my macbook air running OSX Yosemite

    i have purchased a bird box with an external USB spy cam. My macbook isn't recognising it. i have downloaded VCR software as recommended by the manufacturer, but it doesnt matter if i open that software or photo booth it only gives the option of the

  • Reg Like profile

    Hi all We have a requirement on like profile... I have created a like profile on  characteristic "GROUP SIZE" and  in the assignments page... i have assigned this like profile to another characteristic "PRODUCT". when i execute the forecast in the ba

  • Should I move from working Apple Reseller, to working for Apple?

    Hi there, I'm new to these forums and had absolutely no idea where to ask this so I hope it's in the right area and I'm not breaking any rules! I'm currently working at an Apple Reseller in Victoria, Australia and over the past few weeks, I've been c

  • Combine two clips into one

    Hi, is it possible to take two clips and join them together (that were never joined before, but are two different clips)? I want to make it so both clip appear when viewed. For example, if I had a video clip of it raining outside and a clip of somebo