What can i do this up

What can i du with this up program

Hi,
What is the name of the program you are referring to?
Thanks

Similar Messages

  • I keep getting the "connect to itunes" screen and have to restore my ipad.  it will also drop the wifi connection every few mintues.  what can be causing this?

    I keep getting the "connect to itunes" screen and have to connect to itunes and do a restore on it.  It will not pick up my ipad so I either have to do a restore or restore to new and it will work fine for a day or so except for dropping the wifi connection.  What can be causing this?  I have had this pad since January of this year and have not had any problems until recently. 

    If you have to keep restoring your iPad with iTunes repeatedly and there is no change after restoring as a new iPad or not from the iPad's backup, your iPad has a major problem - likely a hardware problem. The iPad includes a one year warranty. You can call AppleCare or make an appointment at an Apple store if there is one nearby.

  • TS3694 IVE GOT AN ERROR CODE 9006 WHILE DOWNING TO IOS6 WHAT CAN I DO THIS IS THE FORTH TIME IVE TRIED

    ive got an error code 9006 while downloading to ios6 what can i do to update please ?

    From the link your question was posted from:
    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 40, 1000, 9006            
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps under Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • What can i replace this bind variable with in function?

    Hello
    I am creating a report showing training attended by employees. I have written a function to do the following:
    Parameters 1 - 4 is hard coded for a reason. So we dont worry about them.
    5th parameter: :START_DATE represents the date training started
    6th parameter: :END_DATE represents the date training ended.
    These date parameters are correctly used inside the select statement that the function is built upon. So don't worry that my date parameters are correct/incorrect.
    The focus should be on how you use bind variables inside Discoverer Admin. The select at the bottom runs perfectly in Toad and it allows you to use the date parameters as bind variables. But it does not allow it in Discoverer Admin
    The problem is with Parameter 5 and 6. I dont want to hard code the dates as i want the user to be able to enter his own date parameters.
    Discoverer Admin gives an error is i want to use :START_DATE and :END_DATE as parameters
    Does anyone have a solution for my problem.
    This is what the code looks like.
    SELECT apps.xxhr_fsc_training_info.xxhr_fsc_training ('A', '02','M', 'N',:START_DATE, :END_DATE)category_A_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('B', '02','M', 'N',:START_DATE, :END_DATE)category_B_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('C', '02','M', 'N',:START_DATE, :END_DATE)category_C_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('D', '02','M', 'N',:START_DATE, :END_DATE)category_D_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('E', '02','M', 'N',:START_DATE, :END_DATE)category_E_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('F', '02','M', 'N',:START_DATE, :END_DATE)category_F_training
    , apps.xxhr_fsc_training_info.xxhr_fsc_training ('G', '02','M', 'N',:START_DATE, :END_DATE)category_G_training
    from dual
    Edited by: iandekoker on Jun 8, 2009 9:34 PM

    Rod
    I have a request. The request is based on various emails written about passing parameters in Discoverer Admin/Desktop. Now if you are experienced and work with set copntext on regular basis then it should be a walk in the park. However if you are new to it like me, then it seems a daunting task. So my request is: Can't you provide us with an example of how to complete the whole process from begin to end using an actual example? I will kick off the process and maybe you can add where i left something out?
    Example:
    SELECT ENAME, HIRE_DATE
    FROM EMP
    WHERE HIRE_DATE = :IDATE;
    We want to run this select statement in Discoverer Admin, but Admin does not like the :IDATE bind variable. So now we are gonna use SET CONTEXT to find a solution to our problem.
    Step1:
    First we have to create a context namespace in the database for the Discoverer contexts. Here is the code to create the context. It is okay to also named your function EUL_DISCO as this name would work perfectly for almost everyone. Best is to do all of this in the Apps schema. Copy and paste this code in Toad and F9 it. It should compile successfully
    CREATE OR REPLACE CONTEXT eul_disco
    USING apps.eul_disco;
    Step 2:
    Now you need to create a package to enable you to set and retrieve contexts from in Discoverer. Here is the code to create the package and package body. Just copy and paste the code into Toad and F9 (execute) it to create the package.
    --Package Spec
    CREATE OR REPLACE PACKAGE eul_disco AS
    FUNCTION set_context(p_name VARCHAR2, p_value VARCHAR2) RETURN VARCHAR2;
    FUNCTION show_context(p_name VARCHAR2) RETURN VARCHAR2;
    END eul_disco;
    --Package Body
    CREATE OR REPLACE PACKAGE BODY eul_disco IS
    FUNCTION set_context(p_name VARCHAR2, p_value VARCHAR2)
    RETURN VARCHAR2 AS
    BEGIN
    dbms_session.set_context('EUL_DISCO', p_name, p_value);
    RETURN p_value;
    END set_context;
    FUNCTION show_context(p_name VARCHAR2)
    RETURN VARCHAR2 IS
    BEGIN
    RETURN SYS_CONTEXT('EUL_DISCO', p_name);
    END show_context;
    END eul_disco;
    Step3:
    Once you have created this package successfully you need to log into Discoverer Admin. Then use the menu to navigate to Tools > Register PL/SQL Function. A window called 'PL/SQL Functions' will appear. Select the 'Import...' button. A new window called 'Import PL/SQL functions' will appear. Scroll down until you see set_context function. Once you found it click OK to import it to End User Layer. Do the same to import show_context function. Remember there are two functions and you need to import them both. When you are done, click 'Apply' button. Then click 'OK' button. You can double check to make sure your functions have been imported. Just nagivate to Tools > Register PL/SQL function again. When the window 'PL/SQL Functions' appears your function(s) should be in the list on the left hand site. Scroll down untill you find them.
    Step4:
    Now it is time to set your session parameters in a separate worksheet inside Discovere Desktop from your main reports. The following steps show you how to create a worksheet to define an effective date parameter. The parameter worksheet should be based on a folder that always returns exactly one row.
    Log into Discoverer Admin. Open the Business Area you want to use. Then create "New Custom Folder..."
    Copy and paste this code (select sydate from dual) inside the New Custom Folder and validate the code. Also rename your folder to 'Set Context Folder'
    Step 5
    Next log into Discoverer Desktop and choose 'Create New Workbook'. Then choose table layout option. In the available list choose 'Set Context Folder'. When you have highlighted 'Set Context Folder' click on '>' button. Then click then 'Finish' button. Once the workbook is created you will see 1 column called Sysdate and a row with today's date in it. Save this workbook and name this workbook XYZ. You might even rename the sheet to QWE.
    Step 6:
    Still in Desktop working on XYZ workbook on QWE sheet, click on Tools > Parameters > New. In the 'Name' field enter START_DATE. Next leave 'Create condition with operator' box unticked. Next in 'Prompt' field enter START_DATE. In 'Description' field enter START_DATE. In 'Default' field enter NULL. Click OK button when you are done.
    Step 7:
    Still in Desktop working on XYZ workbook on QWE sheet, click on Tools > Calculation > New. Click on 'Functions' radio button. Then click on 'Database' folder to expand it. Scroll down till you see 'Set Context' function in the list. Select it and click 'paste >>' button. It will now show: SET_CONTEXT(P_NAME, P_VALUE). Now you need to replace the two parameters (P_NAME, P_VALUE) of the function. Replace P_NAME with 'START_DATE'. When you are done click on Items radio button. Then click on the Parameters folder and select Start_Date.
    When you are done it should look like this: SET_CONTEXT('START_DATE',TO_CHAR(:START_DATE))
    You might want to rename this calculation to START_DATE
    Ps. If you need to create two date parameters START_DATE and END_DATE then you repeat step 7 cause you need one more calculation.
    Just replace START_DATE with END_DATE. You also might want to call this second calculation END_DATE. Thus when you are done you will have 2 calculations:
    SET_CONTEXT('START_DATE',TO_CHAR(:START_DATE))
    SET_CONTEXT('END_DATE',TO_CHAR(:END_DATE))
    This is useful when you want date parameters similar to: 'where date between :Start_date and :End_date'
    Step 8:
    When you now run the XYZ workbook (QWE sheet) it will prompt you for an START_DATE. Enter 10-Jun-2009 (make sure the format you enter the date is similar to the format you have set up in discoverer). Now your XYZ workbook have 2 columns. First column is still called Sysdate with today's date. The second column is called START_DATE with 10-JUN-2009 in it.
    Step 9:
    Now you want to remove the 'SELECT SYSDATE FROM DUAL' data stored in 'SET CONTEXT FOLDER' from your XYZ workbook (QWE sheet) as you no longer need that. Still working with Desktop inside XYZ workbook on QWE sheet > click on Sheet menu option > then Edit Sheet option. On the Select Items tab click on 'Set Context Folder' and click < button to remove the folder from workbook XYZ. Click OK when done and run the workbook XYZ (sheet QWE) again. Now the workbook XYZ (sheet QWE) should only have one column called START_DATE and 10-Jun-2009 as the only row.
    Step 10:
    Rob you might want to come in here. It is also useful to create another calculation retrieving the value of the parameter, so that the value entered for the parameter can be seen when the workbook is run. Please give step by step instruction to complete this process
    Step 11:
    Still remember your initial problem where we wanted to use :IDATE in Discoverer Admin folder, but Discoverer Admin did not like the :IDATE syntax?
    SELECT ENAME, HIRE_DATE
    FROM EMP
    WHERE HIRE_DATE = :IDATE;
    Solution:
    Well now you just replace :IDATE with TO_DATE(SYS_CONTEXT('EUL_DISCO','START_DATE'))
    Log into Discoverer Admin. Open your Business Area. Then create 'New Custom Folder..'.
    Copy the code below and paste it into the new custom folder.
    Then validate the code.
    Rename the new custom folder to 'Solution'
    --copy and paste this code into folder 'Solution'
    SELECT ENAME, HIRE_DATE
    FROM EMP
    WHERE HIRE_DATE = TO_DATE(SYS_CONTEXT('EUL_DISCO','START_DATE'))
    note: 'EUL_DISCO' is the name of the context and package you created in step1
    : 'START_DATE' is the name of the calculation you did in step7
    Then log onto Discoverer Desktop > open your workbook XYZ > open sheet QWE.
    Click on Menu item called Sheet > New Sheet > choose Table layout > click next > scroll down available folders till you find SQL folder with then name 'Solution'. Select 'Solution' folder and click > then click Finish.
    The folder named 'Solution' will be used to populate the newly created sheet with data. You might want to rename the newly created sheet to 'Finally'.
    At this point workbook XYZ should have 2 sheets (QWE and Finally).
    Sheet 'QWE' contains the parameter and nothing else.
    Sheet 'Finally' displays the code found in folder 'Solution'
    First you run sheet QWE to set parameter. When prompt for a date enter '10-JUN-2009'. Click OK button.
    Then click on sheet 'Finally' to allow the parameter to take effect and do its job. You will see that only data true of 10-JUN-2009 are displayed
    Notes:
    This is a very simple example. But if you work thru this example, then you will get the concept behind the idea and would you be able to satisfy your own need.

  • Elements Trial will not let me use the program.  Buy or continue trial screen closes Elements down.  What can be causing this?

    My copy of Elements came with a trial copy of Premiere Elements.  I have not been able to use this program as every time I open it, before I can add files to the library, the Buy Now or Continue Trial screen pops up.  When I choose to Continue Trial, the window closes and Premiere Elements remains closed.
    What am I doing wrong?

    fdelgado70
    What version of Photoshop Elements and Premiere Elements are you using or attempting to use and what computer operating system is involved?
    Have you or anyone else installed that Premiere Elements tryout previously, even if for less than 30 days of use?
    What do you mean by "add files to the library" in a step apparently just prior to the typical Buy Now or Continue Trial dialog?
    If you are dealing with the current version of the product (12), you might want to contact Adobe via Adobe Chat to clarify what is happening.
    To do that, click on the following link, and, when it opens, click on the statement "Still need help? Contact us." to bring up the Adobe Chat to discuss "Serial Number Issues and Activating My Product". Adobe Chat may or may not be able to help you since you are working with a tryout (not sure), but let us give it a try.
    Contact Customer Care
    We will be watching for the outcome, when you get a chance to post again.
    Thanks.
    ATR

  • Hello! I try for the first time to edit a multicam with FCPX and wether I switch angle with 1-2 or with the razor, nothing happens on the timeline. What can I solve this problem please?

    Hello! I try for the first time to edit a multicam with FCPX . I did all the sync, i can easily switch images. But nothing happens in the timeline when I use the razor for editing.
    What is the preoblem please?

    Russ H wrote:
    This KB doc explains it better.
    … the funny thing, this article and all other profound advice been found on the net, miss to mention a very basic advice:
    first of all, a MC is clip as any other !
    … sounds perhaps a bit … too basic , but  - as an amateur like me, and using MCs almost any day - you should keep that in mind for your workflow.
    After creating a MC, which can be done in seconds!, you get a single clip in the Events browser - and you should treat it as any other clip:
    select parts of it, add it to your timeline, you can add it to secondary (for pic-in-pic for example), you can split it, shift it, nudge it, ...
    aaaand you can select a diff. perspective = camera (or mic…), without losing synch.
    I'm noticing, people spend way too much time in the multi-track timeline view of an MC, in hope, this gives them back those 'tracks' FCPX doesn't offer (for good reasons...)

  • Mac Pro RAID 5 disk goes offline frequently in a random way. What can be causing this odd behavior?

    Hi dudes,
    I installed recently two Mac Pro RAID cards inside their corresponding Mac Pro systems. Four 2 TB Hitachi SATA disks are contained inside each system, and configured as RAID 5. Yes, the operating system is installed on this RAID 5 volume in order to get the highest performance of the array, taking advantage of the RAID 5 protection (Autodesk Smoke runs in each system; this application works only with uncompressed video in real time). I already had tested both systems keeping separated the boot disk just for the operating system, and making the RAID 5 volume just with three 2 TB disks, but the performance was slow on both systems.
    The performance is now very good, but unfortunately, in both systems happens that sometimes one of the disks goes offline with no apparent reason. The RAID Utility immediately reports the failure and it is mandatory to declare as spare the disk that went offline. Then the rebuild process begins, but in the meantime, the performance goes down in a noticeable way. Sometimes it is even worse, because the disk disappears completely. Then, it is mandatory to turn off the system, and boot it up again, in order to see in the RAID Utility the missing disk, which needs to be declared as spare in order to be reintegrated into the RAID 5 volume in a slow rebuilding process.
    Some important remarks: this very new Mac Pro systems do not have the iPass cable (at least apparently; I already disassembled completely one of these systems). This cable is mentioned in one Mac RAID card manual that I found over the internet. The diagrams do not match exactly with the Mac Pro nor the Mac Pro RAID board. I did not find a proper iPass connector in any of the Mac Pro RAID cards (?!). So, my guess is that currently the communication between the system and its Mac Pro RAID card is just by means of the internal bus. I think that if the iPass connection were mandatory, the RAID Utility would report it with a noticeable error message. Please advise.
    I think that these Mac Pro RAID cards need a firmware upgrade, in order to be able to work fine with big SATA drives. Again, please advise.
    Thanks in advance from Mexico.
    Sincerely,
    Martin Ponce de Leon

    Hi Grant,
    Thank you for your prompt response. The manual is a PDF document issued by Apple and it seems OK, but no updated to the latest Mac Pro system and Mac Pro RAID. I do not find the link where I found this manual. The systems belong to one of our customers. As far as I remember, in the printed manual included with the boards, it is not mentioned anything about the iPass cable, just about the battery cable. Do you know where can I get a PDF manual of the latest Mac Pro RAID card and the latest Mac Pro system? This client is far from our offices. So, I would prefer a PDF copy of this manual.
    The drives that have gone offline, once they are back, are reported in a good status in the RAID Utility. Besides that, I have tested them in another system in our facilites, and all of them work fine. So, my guess is that the high capacity drives are not yet supported by the Mac Pro RAID card, or it requires a firmware update.
    They do need to have in the same volume OS and video storage because three disks do no provide a good performance (they need also RAID 5), but four disks work fine... excepting when one disk is missing. Please advise. Thank you.
    Best Regards,
    Martin

  • Acrobat has not been working all day today, and I cannot get my work completed.  The only message I get is that the program is not responding, is anyone else having this problem today?  What can be causing this problem and what can I do to make Acrobat wo

    Any help in resolving my problem will be greatly appreciated.

    Hi,
    Could you please tell me what OS and Acrobat version are you using.
    What are you trying to do in the PDF when this message appears?
    Does this happen with all PDFs or a specific PDF only?
    Please share the screenshot of the error message that prompts on your screen.
    Hope to hear from you.
    Regards,
    Anubha

  • While using safari, websites sometimes close off safari. What can I do, this didn't happen in the past

    I am having trouble with SAFARI lately. It closes off the whole application while browsing or opening a web page. This never happened in the past and I have no idea what to do to stop it from happening again.

    Try clearing Safari's cache : Settings > Safari > Clear Cookies And Data and also Clear History
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I bought a iTunes cards the code scratch off what can i do this.. HLP

    i bought a itunes card the CODE scarcth off having a hards time to read the CODE..

    iTunes Store: Invalid, inactive, or illegible codes

  • HT3654 I connected my iphone in my mac computer and it transfered all my pics from iphoto and i cant delete them its over 3,000 pics i cant delete the album i cant do it manuyally this is to much what can I do?

    I transfered all my pictures into iphoto and yesterday i connected my phone to get charge into my computers and all the pics over 3,000 transered againg to my iphone and i cannot deleted it i dont want those pictures in my phone it takes to much space ....what can i do this is to much??????

    i dont want those pictures in my phone
    Laundh Image Capture and then connect your iPhone.  In the window select all of the photos (Command+A) and use the small delete button at the bottom.  See if that will delete those photos from your iPhone.
    OT

  • Mozilla firefox 3.6.4 doesn't work with real player.because of this i don't want to update MF 3.6.3...What can i do

    mozilla firefox 3.6.4 doesn't work with real player...can't download any videos...what can i do
    == This happened ==
    Just once or twice
    == update to 3.6.4. version

    If you install 3.6.3 and don't want it to automatically upgrade you need to open the browser and select "Tools" from the menu bar. Go to "Options". Select the "Advanced" icon. Go to the "update" tab on the "Advanced" menu. Here you can configure how and what Firefox updates.
    Hope that helps.

  • My six year old downloaded a game which was free our iphone on the way to our holiday when we arrived home we have been charged $490 dollars for this app what can we do ! please help

    My six year old downloaded a app which we looked at and was free ( a game) on our holidays . We have arrived back to  to see  $490 out of our bank account  what can i do , this is so wrong ! please help.

    Your six year old likely purchased in-app purchases.  Did you not disable in app purchases?
    There are no refunds, but you can try contacting itunes support and asking for an exception.  Click "Support" at the top of this page, then click the link under "Contact Us"

  • Siri is nowhere to be found on my phone I reset and everything what can I do

    Siri is nowhere to be found on my phone and ive reset and everything what can I do

    Try this site:
    Identifying iPhone models:
    http://support.apple.com/kb/HT3939

  • All of a sudden i cant add things to my calender, there is no plus sign anymore, what can i do?

    hey guys,
    all of a sudden (i think afther a new update) my iphone 4 cant add things to my calender anymore
    there is no plus sign in the upper corner anymore.
    what can i do, this is annoying!

    Which problems do you have on that website?
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • A bunch of reasons Technical Support is a waste of time

    1. You need warranty to report a driver bug 2. They cant tell you what type of hard drive your computer needs with out warranty 3. they cant help you with any thing without warranty 4. They have horrible, bug filled print drivers 5. you waste your ti

  • Bapi for invoice parking

    Hi, Does anyone know any BAPI to park a invoice using purchase order at the level of the services. I know BAPI_INCOMINGINVOICE_PARK, but it supposed to only park the invoice at the level of the purchase order items, not of the level of included servi

  • How can I e-mail a PDF file?...popups go around in circles

    How can I e-mail a PDF file? Popups keep going around in circles.

  • Save as PDF - Change Author Name?

    In any application when you go to Print, Save as PDF is there any way to change the default author name it already has written there?

  • How do I monitor a cluster

    hello, how do you monitor your cluster? Over snmp or the nagios-plugins? Are there any special Novell-MIBs - where are they documented? Unfortunately there is very few information about this available. thx. heiner