Add .IFO extention to the Applications file

I built a Intranet to handle my stored movies. Want to access them simply by using an icon. I was able to do this in earlier versions of firefox but no longer. Mime dosen't seem to work in fact in reloading 3.0 it won't come up at all nor was I able to use it in 3.6. Downloaded a new version of Mime and it loaed and I made an entry but browser still requires me to bring up windvd.

You can use the 'read' command. See "Building and Managing Programs in MPW" for a complete reference to Rez:
http://developer.apple.com/tools/mpw-tools/books.html#Building

Similar Messages

  • Deploying the Application files (fmx, rep) in the network

    Our application developed in Oracle Developer tools (version 6.0.5) is currently installed on individual local machines. Each user's PC have Oracle runtime and all applications files (fmx, rep, icons, bmps and dlls). This makes it inconvinient for us release the upgrade/patch files for the application. I would like to know if there any ramifications or impact on keeping all the application files on the network and have the users start and run the FMX from the network. The runtimes would still be on local PC but the application would be accessed from via the network.
    What is impact of moving the application to the network?
    Would we see any locking issues based on the call mode of the forms?
    Would there be any performance issues?
    Has anyone done this with no problems?
    I appreciate your help on this.
    Shyam

    hi,
    You can deploy all the runtime and reports in one single PC and access the same through the network...so it becomes easy for maintainence and also any changes done need not be changed in the the users PC.
    U need to do the following to access the form runtime and reports
    through network
    1.Keep all the runtime and reports in a pc(say PC1) and share the folder.
    2. from the user PC access PC1 and map the shared folder to say Y DRIVE....
    3.in the registry of the user pc....
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE
    EDIT THE FORMS50_path or FORMS60_PATH (depending on which form version u r using) and add Y:\;
    do the same to REPORTs60_path...
    4. create a LOGIN SCREEN's shortcut(which will access "PC1" for login screen FMX) on the users PC
    NOw u can the access the all applications which are in "PC1" through network...
    U need any more help...fell free to contact...
    Good luck
    Shetty

  • How to get the rows gap in the application file...?

    Hi All,
    Im working with Application server and I have a query like after transferring / printing 100 rows in the App server, I need 2 to 3 rows gap and then remaining will print.
    How to get the gap in the application file.
    Pls let me know.
    Puppy.

    Hi,
    when you are transfering the data to file
    loop at itab in wa_itab.
    counter  = count + 1.
    transfer wa_itab to fiel.
    if counter = 100
        clear wa_itab.
        transfer wa_itab to fiel.
        transfer wa_itab to fiel.
        transfer wa_itab to fiel.
       clear counter.
    endif.
    endloop.
    regards,
    Munibbau.K

  • How to add new fields to the DME file in F110

    Hi,
    We have a requirement add new fields to the file that is used in  F110.
    .I did go in to DMEE transaction but I hae no idea how to add new fileds to the existing file.
    Can anybody please help me in resolving the issue.
    Thanks
    Venkat
    Edited by: Venkat R on Jun 8, 2009 8:45 AM

    Hi,
    There is no function module for that, We have created our own function module and attached to that field.
    Refer the below code. This will fetch the document number.
    DATA: lwa_item   TYPE dmee_paym_if_type,
            l_fpayp   TYPE fpayp,
            l_fpayhx TYPE fpayhx,
            first_flag TYPE c,
            lv_lifnr   TYPE lifnr,
            voucher_id TYPE string,
            voucher TYPE string,
            invoice_id TYPE belnr_d,
            voucher_len1 TYPE i,
            voucher_len TYPE i.
      TYPES:
      BEGIN OF lt_regup,
            xblnr TYPE xblnr1,
            belnr TYPE belnr_d,
      END OF lt_regup.
      DATA: lt_regup TYPE STANDARD TABLE OF regup,
            lv_regup TYPE regup.
    Hope this helps.
    Raja.A
    Edited by: Raja.A on Feb 16, 2011 7:17 PM

  • How to download the application file to local file by back ground job?

    hi:
      can any one tell me how to download the application file to local file by back ground job? thanks in advance..
    Monson

    Hi,
    In order to download a file from application layer to a local file in background,
    first write a report(ZREPORT1) in which do the following steps:
    OPEN DATASET g_file_1 FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    loop the g_file and append all the data into another internal table.
    end of this report you shd have all the data in the application layer file into your internal table.
    Now create another report(ZREPORT2) and submit this report in background.
    that is,
    JOB_OPEN
    JOB_SUBMIT and
    JOB_CLOSE
    and in job_submit submit ZREPORT1 which downloads the file in application layer.
    Please reward points if helpful.
    Regards,
    Arul.

  • Add new line in the Flat file based on the field value

    Hi,
    Following is my Flat File -
    Customer   X      Y
    1001          1       2
    1002          0       1
    Based on the X and Y value I need to add new lines in the Flat file. If X>0 then add a new line with repeating row and Y>0 add again a new line with repeating row. If X or Y=0 then no need to add any repeating new line. 
    So, here for the above example I need output as-
    Customer    X    Y
    1001          1      2
    1001         1       2
    1001         1       2
    1002          0       1
    1002          0        1
    Suggest how we can achieve this?
    Regards,
    Tridib Konwar 

    Hi Tridib,
        I tried your scenario and You will have to use the custom xslt to get the expected result.
        Please find bellow the xslt code which you can use in your map.
    <?xml version="1.0" encoding="utf-16" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var" version="1.0" xmlns:ns0="http://PracticeAtul.XYFlatFileSchema">
    <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />
    <xsl:template match="/">
    <xsl:apply-templates select="/ns0:XYComp" />
    </xsl:template>
    <xsl:template match="/ns0:XYComp">
    <ns0:XYComp>
    <XYComp_Child1>
    <XYComp_Child1_Child1>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child1/text()" />
    </XYComp_Child1_Child1>
    <XYComp_Child1_Child2>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child2/text()" />
    </XYComp_Child1_Child2>
    <XYComp_Child1_Child3>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child3/text()" />
    </XYComp_Child1_Child3>
    <xsl:value-of select="XYComp_Child1/text()" />
    </XYComp_Child1>
    <xsl:for-each select="XYComp_Child2">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    <xsl:if test="XYComp_Child2_Child2/text()!=0">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    </xsl:if>
    <xsl:if test="XYComp_Child2_Child3/text()!=0">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    </xsl:if>
    </xsl:for-each>
    </ns0:XYComp>
    </xsl:template>
    </xsl:stylesheet>
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.
    Atul Toke

  • How do we add trap-recipients to the acl file?

    How do we add trap-recipients to the acl file?
    Any examples.

    Here's some documentation I am working on for my place of work - hope this helps:
    There are two Sun-provided configuration files of note that must be maintained and provided to the SNMP agent program as command line arguments when it runs. They are:
    X.acl (subagent access control file, where X is your agent name)
    X.reg (subagent registration file, where X is your agent name)
    Note: For more information on either of these files, read the Solstice Enterprise Agents User Guide found on the Sun website, but don't expect too much.
    The reg file specifies the subagent name and OID tree it is responsible for, among other things.
    The acl file contains a list of communities that will be sent traps. This file will need to be periodically updated with the IP addresses of any entity that wants to receive traps from the X subagent. The file looks in part like this:
    acl = {
    communities = public, private
    access = read-write
    managers = dv, localhost
    trap = {                                                             
    trap-community = SNMP-trap
    hosts = dv, localhost
    enterprise="Xenterprise"
    trap-num = 1-5
    Where "dv" and "localhost" are configured in the /etc/hosts file as IP addresses to send traps to and "Xenterprise" is an enterprise that must be registered EXACTLY as is shown in the /etc/snmp/conf/enterprises.oid file. (Note: Some of the enterprises in this file have spaces within their name. This WILL NOT WORK. So if for some reason, an enterprise you were going to use is "MY Enterprise" you must changes this file because your MIB will not compile with an enterprise with spaces in the TRAP-TYPE declaration.
    So, to add a new community, add an argument to the "managers" and "hosts" line in the .acl file and ensure that this reference has its IP address listed in the /etc/hosts file.
    Furthermore, in /etc/snmp/conf/snmpdx.acl a comparable entry needs to be added as well. The snmpdx executable is the master agent that the subagent communicates with. It also has an entry in its .acl file as follows:
    trap = {                                                            
    trap-community = SNMP-trap
    hosts = dv, localhost
    enterprise="Xenterprise"
    trap-num = 1-5

  • Finder crashes when opening the application file

    Everytime I click the application file it takes 30 seconds atleast to open, then when scrolling through it it freezes mid way down, displays the wrong icons.. freezes for another 30seconds and then finally continues to the bottom.
    I have tried repairing permissions among other things without much success..
    any ideas?
    Powerbook G4   Mac OS X (10.4.6)  

    After doing so, did you perform one of the following tasks?
    Log out, then in again.
    Relaunch the Finder by choosing Force Quit from the Apple menu, selecting Finder, then clicking the Relaunch button.
    If so, I suggest checking the hard drive for any directory errors with Disk First Aid via Disk Utility when booted from your Tiger install disc.
    http://www.thexlab.com/faqs/repairprocess.html

  • The Applications File Server could not open the file

    Hi All,
    We have shared appl_top between 2 nodes.
    When running concurrent request such as active user report, i got the following error:
    The Applications File Server could not open the file oXXXXX.out for read
    I have found metalink note
    The Applications File Server could not open the file o611681.out for read (Doc ID 1311372.1)
    The $APPLCSF are all fine and so are the permissions.
    I found out if i start my primary node first, wait till concurrent manager start, then start second node, it would be ok.
    is this recommended practice?
    i thought i can start up all node at the same time.
    am i right to say that the last node run adautocfg is the primary node?
    Thanks in advance

    I found out if i start my primary node first, wait till concurrent manager start, then start second node, it would be ok.
    is this recommended practice?Do you have PCP implemented? If yes, you do not need to start the CMs on the second node and running adcmctl.sh script on the first node would be enough.
    i thought i can start up all node at the same time.What exactly do you start?
    am i right to say that the last node run adautocfg is the primary node?Please explain what components are running on each node.
    All the URLs Accessing EBS Are Getting Redirected to the Web Node Where Autoconfig Last Ran [ID 1349509.1]
    Thanks,
    Hussein

  • How do you uninstall unwanted toolbars ( I didn't install); also in the application file "toolbars" is not there. What do I do?

    There are  5 toolbars loaded onto my computer that I didn't install. When I go to uninstall them they say go to your application file for "toolbar".  Well, I go there any the application file doesn't contain "Toolbars".  So now what do I do.  Do I need to take this to the "Geek" Squad for their help? 

    You might stump GeekSquad, and you can do it yourself. The best action at this point is to ask this question in the Safari forums here:
    Safari
    There are some amazing wizards there who can give you step-by-step instructions for removing those offenders at home. The unsupported toolbar issue is common there, so they have the answer ready to go.

  • Add Data Source on the Application Server

    Does anyone know how I can add a data source to be defined on the application server that hosts the LiveCycle ES server.
    Thanks,
    John

    In my datasource location for my jdbc service in workbench I am getting the following error when trying to do a test connection:
    Exception: kingorads not bound. Cause: kingorads not bound
    kingorads is what I named the jndi name.  Here is what I have in the adobe-ds.xml file:
    --------------Begin Code
      KINGORADS
      jdbc:oracle:thin:@kingora:1521:prod
      oracle.jdbc.driver.OracleDriver
      X
      Y
      org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
      Oracle9i
    --------------End Code

  • HT204150 After having upgraded to mountain lion, the application "contacts" doesn't run. I don't see any contact and add new contacts . The application doesn't run

    After having upgraded to mountain lion, why the application "contacts" doesn't run? Why is impossible add a new contact and I don't see old contacts that I can see on my Ipad?

    I have the same problem. I would like to include this information:
    .- A message "error CoreDAVerrorDomain 1" is shown
    .- with other user, in the same MAC I do not have the problem

  • How do I add content types in the Applications section under Preferences

    I have several applications I use regularly on multiple macs. For specific file types, Firefox 4 will only give me the option to save the file. It does not allow me to select an app to use, and, the file type is not listed in the Content Type list on the Applications tab in Preferences.
    In particular, I have XLS associated with Excel, but XLSX is not listed, so all I can ever do is save it, then open it.
    Another case, on one mac, PDF is associated with Preview, but it is not listed on the other, so again, all I can do is save it. It doesn't allow me the option to change actions.
    There must be a place to change the default behavior for unknown file types, isn't there?

    You can look at this extension:
    *MIME Edit: http://space.geocities.yahoo.co.jp/gl/alice0775/view/20080912/1221150790
    * User Info for White Alice0775: https://addons.mozilla.org/en-US/firefox/user/84420/

  • Firefox tries to open a certain filetype (.spk) as text and never adds an entry to the Applications tab in Options, so I have no way to change this behavior.

    Since it's not in the Applications tab, I can't change how Firefox handles it. And since it automatically opens it as a text file, I have no way to download this filetype when it's linked to with javascript or flash because I can't right-click and "Save Link As."
    How can I make Firefox ask me how to handle the file instead of treating it as text?
    I've already tried deleting "mimeTypes.rdf" from my Firefox profile.

    Then how do I manually tell Firefox to save text files instead of automatically displaying them?
    There's no "text/plain" type for me to edit listed on the Applications tab.
    Screenshot attached showing the page info for one of the spk files and the Applications tab with no "text" type listed.
    There's another at [http://www.tecsg.co.uk/scs/scs407.spk here]. I don't care if the web server owner has attached the wrong MIME type to a file so long as Firefox will give me a chance to tell it how I want it to be handled. If it's not a webpage (html, php, etc.) then Firefox should not try to render it by itself without asking. --- On a side note, how do I get this forum to treat my line returns like line returns rather than spaces?

  • I cannot get my update to work at all . The firefox app icon and arrow pointing to the Applications file appears on my desktop again and again. I keep putting in the folder but it refuses to work. I have Mac OSX 10.6.8

    I downloaded the update file and moved in to the Applications folder as asked , it is there as an alias . There is a new icon on my desktop . I cannot move to the dock however . I click on both this icon and the one in apps and it keeps giving me my original box with Firefox icon, arrow and apps folder. I am going round and round and getting no where!

    See:
    *http://kb.mozillazine.org/Installing_Firefox#Mac_OS_X
    *https://support.mozilla.com/kb/Installing+Firefox+on+Mac
    Make sure that Firefox gets installed properly.<br />
    Open the Firefox disk image (DMG) file with a double-click if necessary and drag the Firefox program to the application folder on your hard drive.<br />
    You shouldn't double-click the Firefox application to run it from the disk image, but drag it out of the DMG folder instead.<br />

Maybe you are looking for

  • How to restore SAP Business One Backup?

    Hi all, When I schedule SAP Business One Backup using Server tools, it creating compressed backup file. This contest of compressed file having .BU extension. Now my qeestion is how do I restore this backup file? Thanks in advance B Ravi Shankar

  • Send to iTunes problem

    I have a new 13" MBP. When I send my podcast to iTunes through the share menu, the graphics do not follow. What am I doing wrong? Thanks

  • IDoc segment version issue in ECC upgrade from 5.0 to 6.0

    Hi experts, we are in the process of upgrading our ECC environment from 5.0 to 6.0. We have quite a few interfaces which use ORDERS/Invoice Idocs in customised form. In ECC5.0 environment, we had developed a Z segment in the ORDERS Idoc and the segme

  • CS5 Bridge low on system resources

    Everytime I open CS5 bridge and work on my camera raw files I get the foloowing error message: bridge low on system resources and needs to be closed. I never had this problem in CS4. I am running Windows XP Pro with 4gb of ram. I have talked to Adobe

  • I have a problem with software activation of dedicated channel partners.

    I have a problem with software activation of dedicated channel partners. I find in the portal software and serial number for activation, but when I enter the serial (after you log in with the adobe id) tells me that the serial number is not correct.