Trying to Monitor My House

I am trying to use FaceTime (or some other app if there's one available) so I can monitor my dog without being physically present in the room.  I envision setting up my MacBook Air in the living room and calling "myself" on FaceTime so that I can watch what he's doing from outside the house.  Problem is, when I try to FaceTime with myself from either device, the connection fails.  I've never used FaceTime on either device before.  Is it capable of connecting my MacBook Air to my iPhone, even though I have one user ID?

Johnathan Burger, yes the psoter said he tried. The poster is using the Mac as a wifi hotspot and wants the Mac to control the times that other devices can connect to the wifi hotspot. Parental controls does not included that feature..

Similar Messages

  • Trying to monitor db connections in Tomcat

    All,
    Not sure if I am posting in the right place, as this problem of mine seems to cover a couple of different forum topics, but I figured since its database connections I'm trying to monitor, I'd post here.
    My desire is this... I'd like to monitor all of the connections within the connection pools for each of the deployed web apps on my Tomcat 5.0.16 (Wintel W2K) server.
    I can do this easily enough within each web app, but I would really like to have one web app that monitors all of the deployed apps on the server.
    I started out by trying to leverage Tomcat's manager application. I created a new servlet (called "ConnMonServlet") within the \server\webapps\manager\WEB-INF\classes\org\apache\catalina directory which extends the ManagerServlet. When I access the servlet with the url, "http://localhost:8080/manager/connmon", I am able to get a list of all of the deployed web apps. I am also able to get information out of each web app's web.xml (from the <env-entry>).
    With this, I am trying to create a BasicDataSource (we use the latest versions of commons-dbcp and commons-pool located within the \common\lib directory), then use it to get the number of active connections and the number of idle connections.
    My problem comes in trying to get the BasicDataSource through "normal" means, which is...
    InitialContext initCtx = new InitialContext();
    javax.naming.Context envCtx = (javax.naming.Context) initCtx.lookup("java:comp/env");
    String dsName = "jdbc/raptor";
    BasicDataSource ds = (BasicDataSource) initCtx.lookup(dsName);I get the error, "javax.naming.NameNotFoundException: Name jdbc is not bound in this Context". This works fine within each web app. Is there some way to get the context for the app I'm interrogating?
    I'm just not sure if I am going about this the right way. As I go through the loop of deployed web apps, I just want to get a snapshot at that time of the number of connections both idle and active. I have posted the servlet's code below (it's still very rough).
    I have spent the better part of two days trying to get something working, and I keep hitting a wall at trying to get a BasicDataSource for the deployed web app I'm looking at in the loop. Any help anyone could provide would be greatly appreciated.
    package org.apache.catalina;
    import org.apache.catalina.deploy.ContextEnvironment;
    import org.apache.catalina.manager.ManagerServlet;
    import org.apache.commons.dbcp.BasicDataSource;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    //import java.util.Hashtable;
    import java.util.Iterator;
    import java.util.TreeMap;
    public class ConnMonServlet extends ManagerServlet{
        public ConnMonServlet(){
        public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException{
            doPost(req, res);
        public void doPost(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException{
            System.out.println("Inside of ConnMonServlet...");
            String contextPaths[] = deployer.findDeployedApps();
            TreeMap sortedContextPathsMap = new TreeMap();
            for(int i = 0;i < contextPaths.length;i++){
                String displayPath = contextPaths;
    sortedContextPathsMap.put(displayPath, contextPaths[i]);
    Iterator iterator = sortedContextPathsMap.entrySet().iterator();
    do{
    if(!iterator.hasNext())
    break;
    java.util.Map.Entry entry = (java.util.Map.Entry) iterator.next();
    String displayPath = (String) entry.getKey();
    String contextPath = (String) entry.getKey();
    Context context = deployer.findDeployedApp(contextPath);
    if(displayPath.equals(""))
    displayPath = "/";
    if(context != null){
    System.out.println(context.getDisplayName());
    System.out.println(context.getDocBase());
    System.out.println(context.getName());
    System.out.println(context.getPath());
    String s[] = context.findParameters(); // gets <context-param> entries out of web.xml
    for(int i = 0;i < s.length;i++){
    System.out.println(">>> " + s[i]);
    ContextEnvironment[] ce = context.findEnvironments();
    //Hashtable ht = new Hashtable();
    for(int i = 0;i < ce.length;i++){
    System.out.println(">>>>>> " + ce[i].getName()); // returns "dsName" from web.xml
    System.out.println(">>>>>> " + ce[i].getDescription()); // retunr null, as there is no description
    System.out.println(">>>>>> " + ce[i].getType()); // returns "java.lang.String"
    System.out.println(">>>>>> " + ce[i].getValue()); // returns "java:comp/env/jdbc/raptor"
    //ht.put(javax.naming.Context.PROVIDER_URL, "t3://localhost:8080");
    System.out.println(" " + displayPath);
    System.out.println(" " + contextPath);
    try{
    if(!"".equals(contextPath)){
    //InitialContext initCtx = new InitialContext(ht);
    InitialContext initCtx = new InitialContext();
    javax.naming.Context envCtx = (javax.naming.Context) initCtx.lookup("java:comp/env");
    String dsName = "jdbc/raptor";
    BasicDataSource ds = (BasicDataSource) initCtx.lookup(dsName); //@TODO - receiving error javax.naming.NameNotFoundException: Name jdbc is not bound in this Context
    //BasicDataSource ds = (BasicDataSource) initCtx.lookup("java:comp/env/jdbc/raptor");
    System.out.println(">>>> maxActive = " + ds.getMaxActive());
    //javax.naming.Context envCtx = (javax.naming.Context) context.getManager().getDefaultContext();
    } catch(NamingException e){
    e.printStackTrace();
    } while(true);
    Thank you!!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Very elegant response. I do appreciate the information. It is kinda amusing to think OC4J is the only "certified" app server. One of the touted benefits of portal is that it is "100% Pure J2EE Compliant..." :0) *(insert good laugh)* Seems like Oracle would be inclined to make this information more obvious (about the provider requirements), since there are soooo many app servers out there that could host portlets. I can't see how providing 'alternative, unsupported configuration docs' could hurt.
    Either way, it's no skin off my back, just a little wasted time. I will check out this 'pdksoftware.zip' and see what it gives me. I have a feeling it's the same JAR's I managed to wrangle off the PDK and server, but it's nice to know for recreating a dev environment. (And the demo I'm doing tomorrow)
    Honestly, my Netbeans / Tomcat portlet development environment is very splendid! I must say, that making a change in my 'Renderer' class and having the changes appear immediately in our development portal is a very VERY good thing. (we're talkin 5 second turnaround here) The only change that requires any kind of 'reloading' is when I change my provider.xml. Just need to 'reload' the provider, and all is good again.
    A year ago, there was a serious bug in JDev / OC4J in which the auto class reload feature simply did not work. I had this confirmed with a TAR. Hence the abandonment of JDev. Needless to say, I've been a very open-standards kinda person. May as well mention, JDev was too slow and painful to use for the kind of development I like. Maybe it's better now. Who knows.
    As my team and I slowly shuffle the moving parts of Portal, you will surely see more of my posts. Thanks again for the help!
    Cheers!
    -Sean

  • SCOM Agent Grayed Out When Trying To Monitor Domain Controller

    Hi i am trying to monitor my domain controller from SCOM 2012 R2. But it is grayed out. I tried to restart the Monitoring Agent Service of DC. After this agent was showing healthy state but after some time it was gray once again. Repeated this process again
    and again and get the same result. I have also read many blogs related to this problem and all of them are saying to run HSLockdown.exe /A "NT AUTHORITY\SYSTEM" to allow this account. Also tried this approach but this command is not working. The
    command is not running. Please help.

    Hi Abhishek, if you'd like more information on the HSLOCKDOWN util, then check out the links below: 
    https://technet.microsoft.com/en-us/library/hh212737.aspx?f=255&MSPPError=-2147217396
    http://thoughtsonopsmgr.blogspot.com/2009/09/hslockdown-explained.html
    Gray agents could be caused by several issues, and without a detailed description of your SCOM configuration, and issues, it would be hard to pinpoint the root cause. Here's a comprehensive article on troubleshooting grey agents, that should guide you in
    your remediation efforts: http://support.microsoft.com/en-us/kb/2288515
    If you've found this post helpful,  please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    MrChiyo | My blog: Technical | Twitter: MrChiyo

  • Getting "line disconnected" error message when trying to monitor

    Getting "line disconnected" error message when trying to monitor "live stream" on cameras from computer.  Anyone else have this issue?  Any suggestions on how to fix?  I have reconfigured each camera with the router but still having the error message.  I have a total of three cameras....(1) is wired and (2) are wifi......I am getting this message with all cameras (both wired/wifi).

    Is this an intermittent error that you get now and then, or were you able to successfully setup your cameras, then one day you got the "line disconnected" on all cameras since that point and on?
    If this is an intermittent problem, I can share that I experienced the same thing the first two days of having setup my cameras.  It seemed that my Gateway was communicating with the Verizon servers pretty heavily as I was getting my HMC first setup.  However, starting on day three and on, it has worked very well.
    The only odd thing I'm experiencing now is that I getting several "camera_detected" messages in the activity logs.  All my cameras show up in the My Devices list, and I can view them either as a snapshot or as live streaming, however, the log makes it seem that there is a mystery camera connected somewhere that I don't know about.  I have a call in to Verizon regarding this and hopefully will get an answer in the next couple of days.  It's not hurting anything, just kind of annoying to sort through those entries as you're going through your Activity Log.

  • I was trying to fix my screen resolution and now it's stuck on auto detect cannot display this video mode. I tried another monitor and it still won't show anything. I'm locked out

    I was trying to fix my screen resolution and now it's stuck on auto detect cannot display this video mode. I tried another monitor and it still won't show anything. I'm locked out

    Reset the SMC and PRAM
    Intel-based Macs: Resetting the System Management Controller (SMC)
    About NVRAM and PRAM
    Next try Safe Mode boot and and then normal boot
    OS X: What is Safe Boot, Safe Mode?

  • I need free network analyzer software for my mac. we are trying to monitor what software may be running which is causing our internet to fail, although the internet is still coming into our modem.what is recommended?

    My internet keeps 'tripping' at or around the same period time each day.  We have already replaced our modem from our internet provider and we bought a new airport extreme router. We do not believe these were the cause, although we have now ruled them out as a cause.  Everytime the internet fails, our internet provider company tells us that there is still plenty of signal coming into our house. There is something going on inside we believe, and a technician set up our Network Utility to run a continuous ping test to capture information about when it 'trips' againn.  Yesterday, it happened again, and when he checked the data out, he said he is sure there is something 'running in the background' on my IMac.  He advised me to download a free Network Analyzer so he could further investigate what is was that was causing the problem, so I need a free network analyzer software for my Mac. The issue has been going on for a long time, so it is not the new operating system, Lion. This morning, we changed the radio channel from 'auto' to 'manual' and set a new channel, hoping that might help. We are trying to find out what program may be running (even a tiny one in the background) which is causing our internet to fail, although the internet is still coming into our modem. What is free downloadable product is recommended?

    Will Activity Monitor and/or Network Utility, both already in the Utilities folder on your Mac, help in trying to diagnose the problem.
    If you are connecting via wifi what encryption are you using? If you're using the Exteme I doubt that you are using WEP, but worth checking as it seems Macs don't like it and work better using WPA.

  • Can anyone suggest a remote camera app that let's me use my iPhone 3g (original 2007) to monitor the house from my home computer?

    I'm looking for an app that others have used and can recommend.  I want to use my 2007 iPhone 3G to turn on my iMac 10.6.8 computer camera to see inside my house and check on my pet while I'm gone.  Can anyone recommend and share your experience?  Hopefully a free app for a couple of nights.

    iCam - Webcam Video Streaming
    http://itunes.apple.com/us/app/icam-webcam-video-streaming/id296273730?mt=8
    Alarm.com
    http://itunes.apple.com/us/app/alarm.com-monitor-control/id315010649?mt=8
    Baby Monitor
    http://itunes.apple.com/us/app/baby-monitor/id295777624?mt=8
    Dropcam
    http://itunes.apple.com/us/app/dropcam/id351175162?mt=8
    Nexia™ Home Intelligence for iPhone
    http://itunes.apple.com/us/app/nexia-home-intelligence-for/id431904233?mt=8

  • "The iPod software update server could not be contacted. The Server does not support this version of iTunes." Any thoughts? Also, iPod will not turn or or charge (tried in my laptop, house computer and dock) I have all the lastest updates to my knowledge

    "iPod software update server could not be contacted. The Server does not support this version of iTunes." iPod will not turn on or charge or reset settings. I tried plugging it in my laptop, house computer and docking station to charge and nothing. Also, I have all the latest software updates to my knowledge. This is a classic 8GB iPod, running of Windows 7. Any thoughts/suggestions?

    only thing that seems to work so far is syncing without photos and also check here https://discussions.apple.com/thread/3206849?start=30&tstart=0

  • Trying to monitor an indicator at all times...regardless of program structure. HELP!

    I have a complex Labview VI complete with several sequence structures and "for loops" that are necessary to control the logic of the program.  I need to be able to monitor, via an  indicator on the front panel, an indicator at all times during the program. Unfortunately, the way I have it set up, the indicator on the front panel will only display the correct values if the program is in the same structure as the indicator.  How can I monitor an input regardless of where I am at in the program?  Thank you!

    I apologize for the confusion and thanks for trying to help out with this.  The problem I am having is this:  I have a high voltage (0 to 10,000 V source) that I need to measure the voltage on at all times - because of safety reasons.  The high voltage source outputs a 0 to 5 V analog signal that is proportional to the 10,000V.  I measure the 0 to 5 V signal with a DAQ and need to show the value at all times on the front panel.  Because the voltage is always changing - even just a little bit - I should always see the value on the front panel changing.  However, I only see the value changing and fluctuating when the program is in the same structure (the same part of the sequence) as the indicator (that indicates the 0 to 5 V signal to the user on the front panel). Once the program goes to the next part of the sequence structure, the indicator on the front panel stays at the last value that was collected just before the program moved to the next part of the sequence.  I hope this is clearer. Thanks.
    Josh

  • Trying to get new house connected is a nightmare

    Hi,
    Just moved house in September and made arrangements to get my phone and broadband service moved to my new address, got an appointment for the 25th and after numerous e-mail and texts to say they were coming and to make sure someone would be in they called the night before to cancel stating external works would need done and i would get an update in two weeks, bearing in mind the previous owner had a phone line, there is a pole outside the front door with a cable going to my house i was shocked when told there wasn't a line available for me from the pole or any other close by, anyway this has been going on for some time now, first they submitted drawings to the council for 3 way traffic lights that were accepted, then when the work was supposed to be carried out they came back with another excuses saying they then had to then submit plans to the council, we then got another date for 12th November and was assured that most of the cable work was complete and only a small section remained that was underground and requiring the traffic lights would take an hour, 3 men turned up hovered around outside the house and then disappeared again before i could get my shoes on and go out to chat to them, then told the following day that they could not complete the work for some reason that the cs girl didn't know then got a date for the 19th that was then changed later to the 24th then at 4am this morning get an email from BT saying they would be sending an engineer on the 25th September - whats that all about!! its getting beyond a joke i'm usually pretty patient but this is getting ridiculous, and to top it all off i am still getting charged for the services that havent been getting for the last two months.
    Mark

    Hi Markyd1973,
    Welcome to the forum and thanks for posting. I'm sorry about the delay getting your line connected please use the 'contact the mods' link in my forum profile under the 'about me' section to send in your details and we'll check with Openreach for an update. You can find the link by clicking on my username.
    Thanks
    Neil
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Trying to monitor my sql servers in OEM Grid Control

    Hello,
    I have Oracle 10g OEM and I want to start monitoring my sql server databases. I've got the plug-in all setup but when it displays under my "Databases" it shows and status "down". My sql server host is running, listener running, and database is up but when I try to "configure" it gives the "Failed to connect to the database: Io exception: Connection reset The Connect Descriptor...." error. Can someone please help??? I would like to know....
    1) under the monitor user name is says "dbsnmp" so do I have to create a dbsnmp user on the sql database side?
    2) do I keep the same port number (1521) or do I put what the sql server db is listening on (1433)?????? - for the configuration in OEM
    3) If i go to the "host" under "targets" it shows that the agent is "up" but the database instance is "down and the listener is "up.
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=FSPROLOG.portofsandiego.org)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PMDBSQL" has 1 instance(s).
    Instance "PMDBSQL", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Thanks in Advance,,

    Welcome to the forums !
    Not sure what this has to do with database upgrades (the topic of this forum), but pl confirm that you have followed all of the steps in MOS Doc 359413.1 (How To Download and Deploy Microsoft SQL Server Plug-in To Monitor SQL Server Targets From Grid Control )
    HTH
    Srini

  • OEM - trying to monitor DB expired users

    Hi all,
    I am trying to see if I can maybe create a report listing with Db expired users.
    Has anyone done this before as we have implemented and attached a secure profile to some DB users.
    I'm trying to find the way with OEM ...
    Thx

    QL> select username from dba_users where expiry_date < sysdate;
    USERNAME
    MDDATA
    MDSYS
    IX
    ORDSYS
    CTXSYS
    ANONYMOUS
    SH
    EXFSYS
    OUTLN
    DMSYS
    WMSYS
    USERNAME
    XDB
    TSMSYS
    ORDPLUGINS
    SI_INFORMTN_SCHEMA
    BI
    OLAPSYS
    PM
    18 rows selected.

  • Trying to monitor database validating with vba

    Hi,
    i am going to try use sql query to check that data was saved in my database. and if that data not saved some message give me warning error.
    thanks.

    Hi Diana85,
    Below is an example of how to connect to a database via VBA. This example is written in the RSWVBAPage_afterPlay event which is executed after a page has completed it's playback. The code connects to a northwind database and writes the employee first name, last name and title to the e-Tester results log.
    Private Sub RSWVBAPage_afterPlay()
    'This sub references Microsoft ADO 2.5 components. Select Tools-->References to enable the library
    Dim conn As Connection
    Dim rs As recordset
    Set conn = New Connection
    'Create a new connection to the database
    'ODBC DSN is NorthwindSQLServer. This is the Northwind database running on SQL Server
    'UserName is sa
    'Password is Empirix3
    conn.Open "DSN=NorthwindSQLServer", "sa", "Empirix3"
    'Perform an SQL query and return the results to a recordset
    Set rs = conn.execute("Select FirstName, LastName, Title from Employees")
    'Loop the recordset to display FirstName, LastName and Title (actual database field names)
    Do Until rs.EOF
    RSWApp.WriteToLog rs("FirstName"), rs("LastName"), rs("Title")
    rs.MoveNext
    Loop
    rs.Close
    conn.Close
    Set conn = Nothing
    Set rs = Nothing
    End Sub
    I hope it helps....

  • I am trying to monitor activity on an IEEE 488 bus with a NI9914.

    I am attempting to do this using ISR2, and trigerring on ATNI. After set-up, I release the swrst in the acr - and the bus locks up. All I want to do is snoop the bus - I don't want to actively communicate. Does anyone know how to do this??
    Thanx,Ben Smith

    Bill,
    There are 2 proper ways to "spy" on the GPIB Buss. One is to use a GPIB SPY card and/or use the NI 'GPIB SPY" application that comes with newer NI GPIB Cards.
    You don't want to trigger or interfer with the signal lines of the GPIB buss. The Spy software provides a very complete picture for analyzing buss activity and data transactions. I don't know what platform you're on...let me know I can try to help some more.

  • Trying to monitor mount points on Windows server

    I need the script below to be able to display in this format(bolded):
    Data:
    Instance1        value1
    Instance2        value2
    InstanceN        valueN
    The 2 big issues I'm running into is getting the results of $freespacegb to display on the next line after Data:.  Secondly, I need the 2 columns from the results in $freespacegb to be separated by a tab (aka 8 character spaces).
    Here's the script I'm working with so far: 
    if($args[1] -eq $null -or $args[2] -eq $null)
    Write-Host "Message: Credential not given";
    exit 1;
    $deviceName = $args[0];
    $username = $args[1];
    $password = $args[2] | ConvertTo-SecureString -asPlainText -Force;
    $credential = New-Object System.Management.Automation.PSCredential($username,$password);
    $freespacegb=gwmi win32_volume -ComputerName $deviceName -Credential $credential | ft -HideTableHeaders driveletter,@{l='FreeSpaceGB';e={$_.FreeSpace/1024MB -as [int]}}
    Write-Host "Data:";
    $freespacegb
    Any assistance with this would be greatly appreciated

    Thanks very much for your help
    Here's the script now after your suggestions:
    if($args[1] -eq $null -or $args[2] -eq $null)
    Write-Host "Message: Credential not given";
    exit 1;
    $deviceName = $args[0];
    $username = $args[1];
    $password = $args[2] | ConvertTo-SecureString -asPlainText -Force;
    $credential = New-Object System.Management.Automation.PSCredential($username,$password);
    $freespacegb=gwmi win32_volume -ComputerName $deviceName -Credential $credential | ft -HideTableHeaders driveletter,@{l='FreeSpaceGB';e={('{0:N2}' -f ($_.FreeSpace/1Gb))}}
    Write-Output Data:(write-output $freespacegb)
    Here's what the results look like now after I run the script:
    Data:
    C:                                                                                            13.48                                                                                        
    D:                                                                                            16.45                                                                                        
    F:                                                                                            289.84                                                                                       
    E:                                                                                             0.00                                                                                         
    G:                                                                                             105.04
    Any additional help you could provide would be great

Maybe you are looking for

  • How can i format my device to get sound on my dv4-2145dx?

    i somehow changed my audio settings to 24 bit 48000 hz on my laptop and now it wont let me play any sounds when i try to test the sounds or change back to default settings a message pops up saying "this format is not compatible for the device" im not

  • Computer boots with Apple logo then goes black

    So my MacBook Pro boots up withe the Apple logo then goes black as if the it is set on the lowest dim setting, you can just barely make out the icons on the screen so it is booting into the log on screen. I tried brightness, I tried holding down shif

  • Target link to an iframe

    I asked this question in another way for some time. But I think I did not know explain my problem very well. In my project I have an iframe, and I want to open a link in that iframe. But with a button which is outside the iframe. I thought that putti

  • Collections

    hi this vinod, i has been migrated from SQL Server to Oracle. In Sql Server stored procedures i created temp tables . But in PLSQL stored procedure how can get that. Create PROCEDURE xx Declare @report_table table(P_Id int,PRec_No int,PRec_Amt numeri

  • How to send changes in equipment/functionlocation to XI ?

    When ever an equipment or function location changed or created the data shall be posted or send to XI. How to do it? Is  doc necessary ? If so what create the idoc when change takes place in SAP?