Non-application specific static files not visible in shared components

Hello,
We recently upgraded to APEX 4.0.2.00.07. In the past we have uploaded a number of static files with no specific application linked to them.
Now, when I search on these files using Shared Components -> Static Files, I don't find them back.
But, if I directly query the view APEX_WORKSPACE_FILES (using the APEX schema owner), I see all the files. They have APPLICATION_ID = 0 and APPLICATION_NAME is empty.
Is this a bug? I couldn't reproduce this with newly added static files, whether I specify an application or not.
Matthias
Edited by: mhoys on Mar 1, 2011 11:40 AM

Owen:
Excellent idea/perspective...I did not think of that.  Each of our forms/screens has a seperate class file.  Each class file has a CreateForm() routine that is called when an instance of the class is intiated behind the menu selection. 
Here is a block of code In Main.vb I use to execute a menu selection:
Case "MPA"
  '8/30/07 EJD - Work Order Parameters Screen
   If GetFormCount(G_MPAMaint_Form_Type).ToString = "0" Then
           Dim MPAForm As New MPA
           BubbleEvent = False
    Else
           UpdateStatus("Another MPA maintenance screen is already open", SAPbouiCOM.BoStatusBarMessageType.smt_Error)
           BubbleEvent = False
    End If
So, I can utilize this code in the case statement where I was doing the ActivateMenu if I hear you right.  Now, can you help me with how I would pass the
variables instead of making them Public Shared in the Main class?  Or is it ok to expose them that way?
I Appreciate the help,
Ed

Similar Messages

  • Specific Music Files Not Playing Using Shared Playlists

    I have over 3600 music files in my collection, and of those, about 44 will not play using the shared playlist on other machines. There is nothing between the files that is common that I can decipher. Some are *.m4a files, some are *.mp3 files. However, all will play in iTunes on the host machine and will play fine on the myriad of iPods that I have. If an attempt to play is made, the song information comes up in the heading on iTunes (song name, duration, album, etc...), but the song never starts playing. Any help or insight would be most appreciated.

    Hi
    What happens when an agent puts a caller on hold is nothing to do with the UCCX server, prompts on the UCCX server, etc...
    What is played is controlled by the 'User Hold Network Source' configured on the agent's line, handset, device pool etc; and which MoH server it is played from is determined by the MRGL assigned to the 'listening' device (e.g. gateway typically).
    Regards
    Aaron
    Please rate helpful posts..

  • Location of application-specific properties files

    I am using Tomcat 4.0.3 under WinXP Pro, and I am trying to get my
    application to "find" an application-specific properties file. I am having problems trying to determine which directory to put this file in.
    Here is the Java code I am using for this class:
    import java.util.Properties;
    import java.io.FileInputStream;
    public class ForumProperties extends Properties {
       private static final String DEFAULT_FILENAME = "/WEB-INF/classes/mystuff.properties";
       private static ForumProperties globalProps;
       private ForumProperties() {
       private ForumProperties(String fileName) throws Exception {
          this();
          load(new FileInputStream(fileName));
       public static ForumProperties getInstance() throws Exception {
          try {
             if (globalProps == null)
                globalProps = new ForumProperties(DEFAULT_FILENAME);
          } catch (Exception ex) {
             ex.printStackTrace(System.out);
             throw new Exception("Error loading properties file");
          return globalProps;
    }I have put the properties file in just about every directory I can think of to try and find out where it's supposed to be, but I can't get it to work. I can put the file into the "user.home" System property (which turns out to be C:\Documents and Settings\Administrator) and have it pick it up, but I would prefer to put the file into the path of the application.
    I have tried four different methods to load this file:
    1. load(new FileInputStream(fileName)); (same as above)
    2. load(Thread.currentThread().getContextClassLoader().getResourceAsStream(fileName));
    3. load(this.getClassLoader().getResourceAsStream(fileName));
    4. load(getServletContext().getResourceAsStream(fileName));
    All of them fail for not finding the file except #4, but that's not the
    optimal solution as it requires a servlet context, which for "genericness of code reasons", I DON'T want to do.
    As an aside, I pulled the "java.class.path" from the System properties to see where it's pointing, and all it has in it is
    "<CATALINA_HOME>\bin\bootstrap.jar" with no other paths included.
    Is there an attribute or something in the server.xml or web.xml file I am forgetting to set, or another approach I should be taking?
    Bob

    See if this code fragment helps.
              String MAIN_FILE_PATH = "./BlueGnome/demos/Properties/DemoPropertiesFile.properties";
              java.net.URL url = ClassLoader.getSystemClassLoader().getResource(MAIN_FILE_PATH);
              System.out.println("PATH: resolved name = " + url);
              // Get the file.
              // We could just use FileInputStream here.  Then we would have
              // to provide a path that was meaningful to the system like
              //     c:\java\BlueGnome\demos\Properties\DemoPropertiesFile.properties
              // Doing it this way allows us to use generic directory
              // seperators and allows for it to search for the file using
              // the CLASSPATH.  That also allows for it to be in a jar file.
              java.io.InputStream is;
              is = ClassLoader.getSystemClassLoader().getResourceAsStream(MAIN_FILE_PATH);
              if (is == null)
                   throw new Exception("Resource File "
                        + MAIN_FILE_PATH + " not found.");
              aProperties.load(is);

  • How to create an application-specific policy file?

    Hi Everybody:
    I'm a .NET developer with C #. I have a few applications currently running on my computer using the ODP 10.1
    Two weeks ago I installed on my computer the ODP 10.2 Release & now my previous applications have stopped working: when I try to make the connection to the database gives me this exception:
    OraOLEDB (0x80004005)
    ORA-12154: TNS: could not resolve the connect identifier specified
    In FAQ section for ODP.NET I found the next:
    Q: I have two .NET applications on the same machine running two different versions of ODP.NET. How do I ensure both these applications use the correct ODP.NET version?
    A: Beginning with ODP.NET 10.1.0.3, the Oracle installer will register the following publisher policy DLLs in the Global Assembly Cache (GAC) that redirect 9.2, 10.1 and 10.2 ODP.NET applications to use the last installed version of ODP.NET: Policy.9.2.Oracle.DataAccess.dll and Policy.10.1.Oracle.DataAccess.dll.
    ODP.NET 9.2 includes just the first policy DLL above. These policy files ensure that all your ODP.NET applications use the most recently installed version of ODP.NET.
    You may undo the redirection manually. Policy DLLs can be de-installed through gacutil.exe using the /u option. Another approach is to navigate to the GAC directory (i.e. C:\WINNT\assembly) through the Windows Explorer and delete the policy folders. That will eliminate any policy enforcement for all your ODP.NET applications.
    If you have applications on the same machine using different ODP.NET versions, you should create an application-specific policy file.
    I'm trying to do that, but I don't know what is an application-specific policy file. Someone can give me an example of How can I create and application-specific policy file???
    Regards

    Hi,
    Binding redirection is a ".net thing" as opposed to a "odp.net thing", see if this helps:
    http://msdn.microsoft.com/en-us/library/7wd6ex19(VS.71).aspx
    Hope it helps,
    Greg

  • Application specific properties file

    Hello
              Can any body help me how to build application specific properties file
              so that we can have independent application specific server with its own
              java class path environment.I read the procedure in beasys manuals but i
              could'nt understand clearly.
              Setting application-specific properties
              The weblogic.properties file is only accessible by WebLogic; that is,
              you can't add application-specific properties to the weblogic.properties
              file and expect that they will be read at startup time. However, you can
              set properties for your own application by creating a separate
              properties file. This file can be created and used in two ways:
              Put your application-specific properties file in the same directory as
              your weblogic.properties file. You can then use the following code to
              access the properties:
              Properties props = new Properties();
              String propertiesName = "myapp.properties";
              T3ServicesDef services =
              T3Services.getT3Services();
              String location =
              services.config().getProperty("weblogic.system.home") +
              java.io.File.separator + propertiesName;
              props =
              props.load(new DataInputStream(new FileInputStream(location)));
              Thanks in advance
              Ravi
              

    Hi, Ravi.
              I think I am "WeiG".
              Basically, you can not put your own properties on weblogic.properties. Every
              property in weblogic.properties managed by WLAS is pre-registered in WLAS
              internally. WLAS will print "Fund undefined property ...." messages for the
              un-registered property in weblogic.properties files.
              To use your application-specific properties, the paragraph you read suggests
              you create your own file, put it in $WL_HOME, and use the example code to
              read your own file.
              Hope it helps.
              Cheers - Wei
              Ravi <[email protected]> wrote in message
              news:[email protected]...
              > Hi Purdy
              >
              > Who is WeiG,can you tell me please
              >
              > Thanks
              > Ravi
              >
              > Cameron Purdy wrote:
              >
              > > I know that WeiG has answered this before ... try to ask Wei directly.
              > >
              > > --
              > >
              > > Cameron Purdy
              > > http://www.tangosol.com
              > >
              > > "Ravi" <[email protected]> wrote in message
              > > news:[email protected]...
              > > > Hello
              > > >
              > > > Can any body help me how to build application specific properties file
              > > > so that we can have independent application specific server with its
              own
              > > > java class path environment.I read the procedure in beasys manuals but
              i
              > > > could'nt understand clearly.
              > > >
              > > > ************************
              > > > Setting application-specific properties
              > > > The weblogic.properties file is only accessible by WebLogic; that is,
              > > > you can't add application-specific properties to the
              weblogic.properties
              > > > file and expect that they will be read at startup time. However, you
              can
              > > > set properties for your own application by creating a separate
              > > > properties file. This file can be created and used in two ways:
              > > >
              > > > Put your application-specific properties file in the same directory as
              > > > your weblogic.properties file. You can then use the following code to
              > > > access the properties:
              > > >
              > > > Properties props = new Properties();
              > > > String propertiesName = "myapp.properties";
              > > >
              > > > T3ServicesDef services =
              > > > T3Services.getT3Services();
              > > > String location =
              > > > services.config().getProperty("weblogic.system.home") +
              > > > java.io.File.separator + propertiesName;
              > > > props =
              > > > props.load(new DataInputStream(new FileInputStream(location)));
              > > >
              > > > ****************************
              > > >
              > > >
              > > >
              > > >
              > > > Thanks in advance
              > > > Ravi
              > > >
              >
              

  • Repeatable non-application specific crash on iMac C2D

    I am very used to enter Chinese punctuation by pressing the key combination option+` on my iBook, but now, whenever I press these keys together on my iMac, it causes an exception EXCBADACCESS (0x0001) with codes KERNPROTECTIONFAILURE (0x0002), and the program crashes.
    It is non-application specific, so I can actually kill (er... or crash...) any program by pressing option+`...
    Is it a bug of the the OS or hardware?
    Or is it something to do with my settings? (Tho I've check that the setting on the iMac matches that on my iBook.)
    Any input is welcomed.
    iMac Core 2 Duo 24" 7600GT   Mac OS X (10.4.7)  

    Does the same thing happen with differerent fonts? Maybe a font is corrupt. Since your Mac is under Apple's warranty, you should absolutely call Apple to report this problem. If there is a hardware issue, you need to make sure its fixed while your Mac is under warranty.

  • Application WebDynpro ABAP is not visible in Google Chrome

    Hi Experts,
    After the Upgrade 7.3 EHP1  in Production System it is not visible the application developed in web dynpro ABAP, in the Employee Self-Service Portal.
    In the QA and Development,  applications WD ABAP are visible.
    What can happen in the Production system?.
    Thanks in advance.
    Regards,
    Briger

    >
    Please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "user995809".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    With APEX we're fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    >
    Hi, I've an item with label-
    &lt;font color="rgb(51,102,153)"&gt;&lt;b&gt;Heading: &lt;/b&gt;&lt;/font&gt;
    Font color is coming in IE but not in google chrome(19.0.1084.52 m). what should I do?
    >
    To start with, always post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    Secondly the <tt>font</tt> element was deprecated 14 years ago and is now obsolete. Do not use it. Stop using any reference material that suggests using it.
    <tt>rgb(51,102,153)</tt> is a CSS colour value, which the HTML specification does not require user agents to support for legacy <tt>colour</tt> attributes.
    Use standards-based HTML and CSS:
    <span style="color: rgb(51,102,153); font-weight: bold;">Heading:</span>

  • SQL Developer export files not visible

    Hi All,
    I've started using SQL Developer recently and I am completely new to this tool.
    I've noticed a weird problem. All the export files and the folders I create from SQL Developer is not visible from the normal windows. Say I've executed a query and I need to export the output to a file. I right-click on the data grid; select Export Data -> xls/csv (anything) . I get a pop to mention the Location of the file. I click on Browse ; then select the location and then click on apply. I expect the file to be created. But when I go to that folder; I do not find any files.
    To add on to my suprise; If i click on open a file and navigate to the above mentioned path; the pop-up shows that the file is present in that folder. But it is not visible from Windows. This is of no use as I cannot use those files.
    BTW; version is 2.1.1.64
    Note: I've also enabled the option of viewing all hidden files and folders in Windows.
    Regards,
    Arun

    Hi Arun,
    If you are using Windows Vista, Windows 7, or higher, and writing to a directory (like C:\, C:\Windows\, C:\Program Files\) that Microsoft wishes to protect from malware or just simple clutter , then you are running afoul of a redirect feature in the OS that puts the unwanted file in a VirtualStore folder for your user name, specifically:
    C:\Users\<yourusername>\AppData\Local\VirtualStore\<full path where you think the file got stored>See the following for details:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-files/folder-redirect-in-windows-7/95218744-37e6-40cd-b890-2e647351df16
    I just ran across this myself for the case of C:\ and perhaps this applies to your situation also.
    Regards,
    Gary

  • Export Application and Static Files

    Using Apex 3.2, I use the Export Application utility to move apps from one Environment to another.
    In one of the Apps I have a Static file which is only for that specific App, It doesn't seem the import the static file for me.
    I have to load thru shared components again in the other the environment.
    I'm I missing a step with regards to static files or do I really need to do both steps?
    Thanks

    I can't tell for sure, but - when I tried to include "static files" (such as images?) into my export script (APEXExport, right?), I couldn't find a way to do that. Therefore, speaking from my own experience, that stupid way you described is the only way I know.
    It would be nice if someone knows better; at least two of us would benefit from it.

  • Flash file not visible in web page

    Hello,
    I'm Udayakumar from chennai (India). I created some flash
    files and uploaded in web site. That are working properly in India
    only. But not visible in other countries. What's the problem? I'm
    exporting in swf format with following settings.
    Version - Flash player 8, Loard orfer - bottom up,
    Actionscript version - actionscript 2.0, options - compress movie,
    local play back security - local files only.
    And I'm inserting the swf files in html pages using plugin
    commands. (ie)
    <embed width="100" height="100" src="images/x.swf"
    menu="false">
    So I can't able to understand, why was the flash files are
    not visible in other countries?
    Pls explain me......
    My email id - [email protected], [email protected]
    Thanks & Regards
    P. Udayakumar

    You will need the following in your HTML (with modifications
    to target your document) ...
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="pudaya enter your document width here" height="pudaya enter
    your document height here" id="pudaya enter swf file name here
    (without ".swf" extension)" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="pudaya enter swf file name here
    WITH ".swf" extension" /><param name="quality" value="high"
    /><param name="scale" value="noborder" /><param
    name="bgcolor" value="#pudaya enter background color as hexidecimal
    here" /><embed src="pudaya enter swf file name here WITH
    ".swf" extension" quality="high" scale="noborder" bgcolor="#pudaya
    enter background color as hexidecimal here" width="pudaya enter
    your document width here" height="pudaya enter your document height
    here" name="pudaya enter swf file name here (without ".swf"
    extension)" align="middle" allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    All of the above will be generated with all values in place
    using the "Publish Settings" function in Flash if you check HTML as
    one of the export settings.

  • Why are shared files not visible when iPhone4S connected to iTunes?

    What makes this problem mysterious is that I have exactly the same settings on the same or eqivalent Apps on iPad2 and iTunes4S but when my iPhone is connected to my iTunes (running on my PC under Win7) it shows no files on Apps like Pages, iBooks, Keynote, and Print-n-share.  Each of these Apps has files and each shows files when  I connect my iPad2.   I cannot export or import filesto/from itunes and iphone because the list of files inside the Apps is not visible in itunes. 
    PS I CAN, btw, export and import files by using the amazing App and service "DropBox" which is the only route in and out of my iPhone (I am not ready to use iCloud).

    This is not a reply but an addition.  While searching for answers as to why "Shared" files in original Apps in my iPhone4S did not appear on itunes I came across a similar discussion on another Forum in which Jim described in some detail how to get the two devices (my iPhone 4S and my iPad2) to recognize similar embedded files in similar Apps.  https://discussions.apple.com/message/16690584#16690584
    I went through this promising procedure but it did not help.  Since the two devices are independent (I think -- they are on the same accoubt but ar different devices) I should be able to make them work the same way with regard to what is seem in iTune.

  • Airport Extreme files not visible on USB drive.

    Airport Extreme files on Toshiba USB powered drive not visible through Windows. I disabled antivirus with no change. If I copy files onto it they go but then disappear. If I copy again it asks if I wish to overwrite the file as its already on the drive I just can't see them there. I tried another computer, also Windows 7, on our network with the same results. It is formatted as Fat32 and is recognized by the Airport. It is a 1TB size drive.

    double post.

  • DNG files not visible in Lightroom 2.5

    I've installled Lightroom 2.5 in my old desktop (Pentium 4, 1 GB RAM, Windows XP Home SP 3). After I've imported my camera RAW (NEF) images into Lightroom as DNG, I can see the photo info but photos are not visible.How can I make them visible?

    I wonder if you have been using sidecars, as I had assumed. Maybe you've got a metadata template? "XMP files" norrmally refers to sidecars, but could refer to templates too. So which is it? How exactly have you been assigning this file to images in Photoshop? I don't know the detail of Photo Mechanic, though I'm betting your friend has been applying a template. If you do this first, you can then use that Read metadata technique. Once you've done that once, in LR you can save the metadata as a preset, or sync it to other images. Sadly LR can't read metadata templates directly.

  • TS1493 files not visible on ipod nano after disconnect from itunes

    I have an iPod Nano (6th generation - 16 Gb) which was purchased in early 2011. All of a sudden all files in all categories (music, audiobooks, podcasts, etc) are no longer visible once it is disconnected from iTunes on my laptop. When reconnected to the laptop the files are visible again in iTunes - so they are still on the device.  I have searched the Apple online support info and that only seems to provide complicated and unhelpful information about redesigating hard drive network maps etc., which is an action I am not prepared to risk for fear of making a bad problem worse, or contacting my "administrator" - which is me!  Can anyone offer any solutions that don't require a PhD in computer science?

    Here are a couple of additional pieces of information that might provide a clue:
    1) At home, my iPod shows up as having the name I used when I registered it. On the second computer, my iPod shows up with the name DATA1.
    2) I have an iPod 4GB mini. At home, that's pretty much the amount of space that shows up in the disk space bar (near the bottom) of iTunes. However, on the second PC, the disk space bar shows 10.35 GB used, 15.66 GB free! Which is just freaky, since it's still a 4GB iPod mini.
    3) According to the iTunes display, everything is transferring absolutely smoothly. Since the iPod is configured to transfer music manually, the Do Not Disconnect sign is flashing throughout, but when I'm done and click on the eject iPod button in the lower right hand corner, it turns off, just the way it's supposed to and I can disconnect my iPod. It's just that my songs aren't visible anywhere on my iPod when I try then to play them.

  • Javascript function in static file not found on one theme

    Hello,
    Hava a Ajax function on a Textfield.
    Have a static Javascript file with a function named register(....)
    On my site properties in section Footer-Text I call that function.
    If I use the Theme Business - 3, my Ajax function works without problems.
    But now I have changed the Theme to Modern Blue - 20.
    Since I have changed the Theme to Modern Blue my Ajax function dont work.
    It occures an error: register is not defined
    Have anyone an idea why in theme Modern Blue it is not found my function from static file???
    greets Markus

    Hi Markus,
    The problem is that the page doesn't know where the function is yet, because it checks it at runtime, when it comes along the register call. Probably the position is different then the other theme, and you've been lucky earlier.
    My suggestion is to change the position of the call, to a position where the javascript is allready loaded. Or change the position where you load your javascript file. (For example, set it in the Page template in the HTML header!)
    I think this will solve your problem!
    Greetings,
    Rutger

Maybe you are looking for