Temp files required to run I-tunes?!

Greetings-
After years of trying to help people resolve their problems with I-tunes crashing non-stop I have finally figured out what is doing it... I think...
I am constantly hounded by "Itunes is missing required files" when starting the app - from there I must repair the application to get it to function. I have seen this issue on at least 10 pc's and it constantly comes back. I have cleaned many many virus's off these machines and thought it was a mp3 virus that was the root cause of the problem....
...then I realized that Itunes is failing the same days that I have clean up routines running on these PC's and deleting all of the tmp files from the computers in question.
SO - What temp files are required to run Itunes? I need to know this so that they are not deleted during scheduled maintenence on Windows based PC's (specifically XP).

...then I realized that Itunes is failing the same days that I have clean up routines running on these PC's and deleting all of the tmp files from the computers in question.
That'll probably be doing it. iTunes uses temp files while writing and reading from the iTunes library files. The library files live in the following locations (by default):
Operating System
Default location of iTunes Folder
Mac OS X
/Users/[your username]/Music
Microsoft Windows XP
\Documents and Settings\[your username]\My Documents\My Music\
Microsoft Windows Vista
\Users\[your username]\Music\
Microsoft Windows 7
\Users\[your username]\My Music\

Similar Messages

  • Apple application support not found - required to run I-tunes

    I'm havingtrouble installing I-tunes on a new PC. When i click on the I-tunes icon I get the msg: apple application support not found - required to run I-tunes. I continue to get this msg after uninstalling and re-installing.

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Control File Missing Temp file

    Dear All,
    I have a problem with my database and receiving errors related to Temp file. I run the following command and got output as:
    *select status,name from v$tempfile;*
    *Output:*
    STATUS NAME
    ONLINE 'X:\ORACLE\ORADATA\PROD\TMPPROD02.DBF'
    ONLINE 'X:\ORACLE\ORADATA\PROD\TMPPROD03.DBF' I run ALTER DATABASE BACKUP CONTROLFILE TO TRACE; command it generated following output:
    I think control file is missing temp file information. Can any one help please?
    #     Set #2. RESETLOGS case
    # The following commands will create a new control file and use it
    # to open the database.
    # The contents of online logs will be lost and all backups will
    # be invalidated. Use this only if online logs are damaged.
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "PRODUC" RESETLOGS  ARCHIVELOG
    --  SET STANDBY TO MAXIMIZE PERFORMANCE
        MAXLOGFILES 32
        MAXLOGMEMBERS 2
        MAXDATAFILES 32
        MAXINSTANCES 16
        MAXLOGHISTORY 7917
    LOGFILE
      GROUP 3 'X:\ORACLE\ORADATA\PRODUC\LOGPROD3A.RDO'  SIZE 10M,
      GROUP 4 'X:\ORACLE\ORADATA\PRODUC\LOGPROD4A.RDO'  SIZE 10M,
      GROUP 5 'X:\ORACLE\ORADATA\PRODUC\LOGPROD5A.RDO'  SIZE 10M
    -- STANDBY LOGFILE
    DATAFILE
      'X:\ORACLE\ORADATA\PRODUC\SYSPROD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\UNDOPROD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODCFD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODCFI01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPI01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODCRD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODCRI01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPHD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPHL01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPHI01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODFPD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODSD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODAD01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PROD_MON01.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGDATA01',
      'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGINDX01',
      'X:\ORACLE\ORADATA\PRODUC\PRODCFD02.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODPHL02.DBF',
      'C:\ORACLE\ORA92\DATABASE\FSDFSDFSDFS',
      'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGDATA02',
      'X:\ORACLE\ORADATA\PRODUC\PRODAD02.DBF',
      'X:\ORACLE\ORADATA\PRODUC\PRODCFD03.DBF',
      'X:\ORACLE\ORADATA\PRODUC\UNDOPROD02.DBF'
    CHARACTER SET AL32UTF8
    # Recovery is required if any of the datafiles are restored backups,
    # or if the last shutdown was not normal or immediate.
    RECOVER DATABASE USING BACKUP CONTROLFILE
    # Database can now be opened zeroing the online logs.
    ALTER DATABASE OPEN RESETLOGS;
    # Commands to add tempfiles to temporary tablespaces.
    # Online tempfiles have complete space information.
    # Other tempfiles may require adjustment.
    ALTER TABLESPACE TEMP ADD TEMPFILE 'X:\ORACLE\ORADATA\PRODUC\TMPPROD03.DBF'
         SIZE 1024M REUSE AUTOEXTEND ON NEXT 134217728  MAXSIZE 16383M;
    ALTER TABLESPACE TEMP ADD TEMPFILE 'X:\ORACLE\ORADATA\PRODUC\TMPPROD02.DBF'
         SIZE 8192M REUSE AUTOEXTEND ON NEXT 33554432  MAXSIZE 16383M;
    # End of tempfile additions.

    Please either add a tempfile or else if you have two temporary tablespaces(say temp01 & temp02) with associated tempfiles and let us assume TEMP01 is the default tablespace for the database(by seeing the database_properties view) then please drop the TEMP02 tablespace and re-create it and then make TEMP02 as default tablespace for the database and then drop the TEMP01 tablespace and re-create it and then make it as the default temporary tablespace .. Thats the solution and hope its clear... you can go through following steps :
    SQL> select tablespace_name, file_name from dba_temp_files;
    SQL> drop tablespace temp02 including contents and datafiles;
    SQL> create temporary tablespace temp02 tempfile ''X:\ORACLE\ORADATA\PROD\temp02.tmp' size 16383M;
    SQL> alter database default temporary tablespace TEMP02;
    SQL> drop tablespace temp01 including contents and datafiles;
    SQL> create temporary tablespace temp01 tempfile ''X:\ORACLE\ORADATA\PROD\temp01.tmp' size 16383M;
    SQL> alter database default temporary tablespace TEMP01;
    Cheers!

  • Which jar file required

    Hi
    When i use BAPI calling from JspDyn Page in EP 6.0
    i added sapjco.jar and htmlb.jar files.
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.prt.component.IPortalComponentContext;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    Getting cannot resolved message error is coming.
    more than this what r the external jars files required to run this.
    can any body tell .
    regards
    Kumar.

    Hi Kumar,
    I would advise you to use the class locator tool in your NWDS, it will do the search and the classpath adding for you. You can download it from <a href="http://sourceforge.net/projects/classlocator">here</a>
    Hope it helps,
    Roy

  • How to make folder configured to get temp files

    Actually in our project we have some applications .in each application the "java.io.tmpdir" is pointing to /var/tmp folder to dump temp files as its running in solaris machine.now we want to reduce the burden on /var/tmp and dump the temp files into a directory created by us for each application which is specific so that it can take from that location and delete it once its processed.How to do this.i think we need to do that change in config file .
    i am expecting inputs on this.

    I think I must be missing something because I can't understand why it is not obvious to you that you just have to provide a system wide constant defining the directory you want to use.
    P.S. I thought that "java.io.tmpdir" pointed to /tmp on Unix type systems.

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

  • Macbook pro running slow. how to i remove temp files?

    I may have temp files slowing down processor. How to I clean it up?

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    Otherwise, take the steps below when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 2
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Oracle dbsonsole not running after drop temp files

    before drop temp tablespace
    i was create temp2 tablespace as default temp tablespace
    after that
    i have droppped temp files last to first
    temp4.dbf ..3..2
    when i have clicked to delete temp table space in dbconsole
    after a few time dbconsole not running
    in iexplore
    i have tired to start db control again with emctl start dbconsole
    it was already running
    then i have command
    emctl status dbconsole
    is not running
    i have looked log file i see temp file warning
    now what can i do to start dbconsole again

    Dbconsole doesn't work proper without temp files. So you should create temp file for temporary tablespace in some other tool.

  • Why does my file requiring ActiveX cant run in my Apple computer?

    Why does my file requiring an ActiveX cannot run in my Apple computer?

    Active X is chiefly a Windows > Internet Explorer browser based function and there is no Internet Explorer for OS X.
    The only way you can run this Active X script is install Windows into Apple's BootCamp dual boot partition solution or by running Windows in a virtual machine program in OS X itself.
    Windows in BootCamp or Virtual Machine?
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • Running out of space/ Temp files???

    I'm making my first movie with iMovie 06. In the process of importing clips from my camcorder I got a warning message. The message said that I was running critically low on space and I should delete some files in order to continue. At the same time I noticed that it said I have 27 GB available in the lower right corner of the iMovie window??
    What's going on here? I only have 136 MB in the trash.
    Are there temp files being created somewhere?
    Where?
    How can I get rid of them in order to give iMovie the "space" it needs to do it's job??

    Im running out of space, how do I clear old content temp files old apps?
    I'm not sure exactly what you're asking. Temp files get automatically deleted when you restart. Old apps you can either uninstall (if it was originally installed with an installer, there should be an uninstaller somewhere) or drag it to the trash. What's "old content"?
    i have done the browser cache and cleared history.
    This is not going to give you back much space.

  • Im running out of space, how do I clear old content temp files

    Im running out of space, how do I clear old content temp files old apps?
    i have done the browser cache and cleared history.I am clearing items off the macbook pro but is there other areas i should clean
    Thanks

    Im running out of space, how do I clear old content temp files old apps?
    I'm not sure exactly what you're asking. Temp files get automatically deleted when you restart. Old apps you can either uninstall (if it was originally installed with an installer, there should be an uninstaller somewhere) or drag it to the trash. What's "old content"?
    i have done the browser cache and cleared history.
    This is not going to give you back much space.

  • Cannot run i Tunes

    When I try to run i tunes I get an error message " i tunes cannot run because some of its required files are missing. Please reinstall" However I can't reinstall or remove the existing programmes, i tunes or Quicktime for some reason.
    Equally when I try to update via the apple site I am unable to load quick time update getting "Internal error 2330,23, C|ProgramFiles|Quick time|QT System|Quicktime MPEG4Authoring REsources|da.Iproj"
    Any ideas???

    "Internal error 2330,23, C|ProgramFiles|Quick time|QT System|Quicktime MPEG4Authoring REsources|da.Iproj"
    that uninstall appears to be choking on one of the QuickTime language resource files. (a Danish one, if i'm not mistaken.)
    2330s like this are often associated with disk damage around the lproj files. if you run a chkdsk over your C drive, does it find/repair any damage?
    How to perform disk error checking in Windows XP
    if so, does the QT install start going through for you?

  • How does one clear temp files in Mountain lion?

    Computer summary shows a large nmber of temp files. Also, my system is becomeing very slow.
    what tool do I use to TUNE UP my iMAC?

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    Otherwise, take the steps below when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 2
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • How do I clear my temp files

    I am new to the OS operating system.  I would like to find all tmp files to delete them.  Where do I go to find them?

    On my windows computer I regularly run %temp% which brings up all my temp files.
    There's nothing like that on the Mac, and no need for it. Most temporary files are removed by logging out or rebooting, but there's no need for that either.
    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” “extenders,” “cleaners,” "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    The free anti-malware application ClamXav is not crap, and although it’s not routinely needed, it may be useful in some environments, such as a mixed Mac-Windows enterprise network.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most users don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping log files,” “scanning for viruses,” "purging memory," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • Crystal Server 2013: How to troubleshoot "Can not create temp file---- Error code:-2147215357"

    We have a Java7 web app, which generate PDF report by calling Crystal Server 2013 SP4.
    The app is being deployed on many different servers. We sometimes got the error below when generating report:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.controllerExportInternal(PrintOutputController.java:280)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:152)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:130)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:113)
    Problem is, this seems to be  a pretty generic exception. It could be caused by many different reasons.
    e.g. network connection problem, wrong DB login, wrong folder path, lack of folder access right, etc.
    Each time we could only guess what's wrong.
    We are running into it again, and this time everything seems correctly configured so far.
    We wonder if there are more info we can get to troubleshoot? For example, any log file of Crystal Server we should look into? Or does Crystal Server has debug mode which prints more details to tell us what goes wrong?

    Prithviraj Shekhawat wrote:
    Hi Henry,
    I believe you are using RAS SDKs to export the reports to PDF.
    Apply trace on RAS server and check what you find in RAS logs.
    Check whether you can see timeout error is RAS logs. Usually if connection is lost and the RAS server no more have the session to write to the temp directory, we do see these errors.
    Also, does the account that runs RAS have permissions to create a file in RAS's default temp directory? Are you getting any out of memory or out of disk space exceptions on App server or RAS, tracing RAS server is the way to move forward.
    Thanks,
    Prithvi
    >>I believe you are using RAS SDKs to export the reports to PDF.
    Yes
    >>Apply trace on RAS server and check what you find in RAS logs.
    >>Check whether you can see timeout error is RAS logs.
    How to configure tracing, and where are RAS logs? Is it configured in CMC --> Servers --> Crystal Report Services?
    >>Also, does the account that runs RAS have permissions to create
    >>a file in RAS's default temp directory?
    Pretty sure yes.
    >> Are you getting any out of memory or out of disk space exceptions
    >>on App server or RAS, tracing RAS server is the way to move forward.
    Not on App server.
    For RAS, that's the problem, I am not sure where to look.......

Maybe you are looking for

  • Badi/User-exit for vendor down payment request in f-47

    hi all, is there any badi/user-exit available for vendor down payment request? I need to trigger a workflow when a vendor down payment request in transaction code F-47. how can i do this? Pls guide me. Thanks & regards, Raj

  • Can you save your playlists??

    I need to delete Itunes from my computer and reinstall.  Will I loose all my playlists or since they are on my ipod it will sync it when I reinstall. Do I need to save anything before deleting to simplify the new install?? Also, Do you know the steps

  • Camileo Pro HD - Where to find additional functions

    Hello! I recently bought a Toshiba "*Camileo Pro HD*" Camcorder, and now I'm wondering where I can find the mp3-player, the motion detector or the eBook functionality? I can't find them in the menu. The manual doesn't mention one of these functions,

  • Iweb sete ( flash doesn't work in firefox & chrome )

    Hello people I have flash cs4 installed on my computer(w7) and I'm using iweb to build a website for my test. I have problems getting flash to work with Firefox and Chrome, but with Internet Explorer and safari, the flash work fine. this is the URL t

  • Newbie help please!

    I have just started an online class for oracle 10g . Iam trying to upload some book scripts for my class that I uploaded from www.course.com. they are stored on my c: drive as C:\Course Technology\83629-x\Chap 2 when I enter start C:\Course Technolog