Set HTML register key

I'm working in C/S with Forms6i.
In this application I use command 'HOST' because I call a HTML file.
Now I write all path into the code, where the file is located.
Is it possible to define a specific directory for my html file, through a system key register ??(for example Forms60_????)
So that if I want to change directory, I don't open the form and rewrite the new directory.
What Is this register ????
kind regard

Yes! It is possible.
Use Win_API_Environment.Read_Registry from d2kwutil.pll
I reccomend write all pathes in PL/SQL library and attach it to all forms. It is better if your forms work on many computers.

Similar Messages

  • CacheComponent not registered (KEY=FLEXFIELD_METADATA_CACHE) (APP=FND)

    Hi,
    I am doing an extension of VO in iSupplier portal and there is a flow consisting of 3 pages to complete a task for creating an invoice from the PO.
    I have done the extensions required in the local jdev and till the 3rd page in the flow everything is fine. When I click a button to proceed to the 3rd page - I get the mentioned error.
    CacheComponent not registered (KEY=FLEXFIELD_METADATA_CACHE) (APP=FND)
    But at the same time the page was working in Server when I deploy.
    Any ideas about this
    If I have to register the cache component then please provide me the navigation screens for the same (11.5.10.RUP6)
    Thanks
    Shasi

    Hi
    Using Functional Developer Responsibility also you can do this. <br> <br>
    Click on Functional Developer responsibility->CoreServices<br>
    ->select Application Object Library as Application name in the screen.<br>
    ->Click on create component button and give the following details to create component.<br>
    -> Name -- FLEXFIELD_METADATA_CACHE <br>
    Code -- FLEXFIELD_METADATA_CACHE <br>
    Application Name -- Application Object Library <br>
    Description -- Stores descriptive flexfield, key flexfield, and value set metadata.<br>
    Loader Class Name -- oracle.apps.fnd.flexj.FlexfieldCacheLoader <br>
    Business Event Name --oracle.apps.fnd.flex.dff.compiled;oracle.apps.fnd.flex.kff.structure.compiled;oracle.apps.fnd.flex.vst.updated <br>
    Time Out Type --Time To Live <br>
    Time Out After --Global Idle Time <br><br><br>
    Thanks <br>
    Soujanya <br>

  • Logistics Invoice Verification: how to set up Tolerance Key

    Hi Experts,
    I would like to set up tolerance key :
    Could you please tell me wich Tolerance Key (and the steps) I need to set up in order to block invoices amounts which are above 10 % of the total amount of the PO and max 50£ (absolute value).
    All Invoice above these limits should be block for payment.
    Many thanks in adavnce for your help,
    Cesar

    Hello Cesar,
    You can block the invoice for payment.
    You have to set up the tolerance limits at company code level.
    Path: IMG -> Material Management -> Logistic Invoice Verification -> Invoice Block ->  Set Tolerance Limits ->
    Here you need to maitain the respected " Tolerance Key"  and Lower limits and Upper limits %.
    This will solve your issue.
    BR
    Suneel Kumar

  • 2nd JFrame at Full Screen not registering key events

    I've written an application that launches other applications distributed as JARs with a particular method (replacing the main method). These other applications run at full screen.
    Whilst I have got these other applications to work in that they display correctly and do everything else, I require them to register key events. If I run these applications on their own (i.e. having not been launched by the primary application) then the key events are processed correctly. However when they are launched from the primary application the key events are not registered.
    I have tried requesting focus from the full screen JFrame but it doesn't seem to be able to.
    Any ideas?

    Possible that the keystrokes are really being trapped by the other gui, which stops registering them when it's not visible.
    IF that's the case, you'll need to re-design your keyboard trap as part of the second JFrame, wholly independent of the original JFrame or originating app. Also, it may be thread-starved i.e. operating off the originating program, which thread may be stopping when it has no focus.
    That's all the ideas I have.

  • Set up tolerance key (invoice verification)

    Hi Experts,
    I would like to set up tolerance key and to control invoice item in reference to a PO item and I also need to set up a global tolerance.
    What I need to maintain in order to have a double check: at item level and the total amount of the invoice?
    (I have already set up PP tolerance key in order to have a check at item level and I need one other control for the global amount of the invoice but which one?)
    Many thanks for your help.
    BR,
    Cesar
    Edited by: Cesar on Sep 2, 2009 6:18 PM

    Hello Cesar,
    You can block the invoice for payment.
    You have to set up the tolerance limits at company code level.
    Path: IMG -> Material Management -> Logistic Invoice Verification -> Invoice Block ->  Set Tolerance Limits ->
    Here you need to maitain the respected " Tolerance Key"  and Lower limits and Upper limits %.
    This will solve your issue.
    BR
    Suneel Kumar

  • Set my own key instead of using KeyGenerator.generateKey() - how?

    How can I set my own key instead of using KeyGenerator.generateKey()?
    I don´t see any method that is alowing this.

    I have now tried my own.
    To send encrypted data through a CipherOutputStream, I have done this:
    private File file;
            private CipherOutputStream cos;
            private Cipher cipher;
            private PBEKeySpec key;
            private char[] password = "test".toCharArray();
            public SendFileThread(File file)
                this.file = file;
                try
                    key = new PBEKeySpec(password);
                    SecretKeyFactory factory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
                    SecretKey pbeKey = factory.generateSecret(key);
                    cipher = Cipher.getInstance("PBEWithMD5AndDES");
                    cipher.init(Cipher.ENCRYPT_MODE, pbeKey);
                catch(Exception err) {err.printStackTrace();}
            public void run()
                byte [] mybytearray  = new byte [(int)file.length()];
                try
                    fis = new FileInputStream(file);
                    bis = new BufferedInputStream(fis);
                    bis.read(mybytearray,0,mybytearray.length);
                    OutputStream os = socket.getOutputStream();
                    cos = new CipherOutputStream(os, cipher);
                    int byteCount = 0;
                    int length = mybytearray.length;
                    while(byteCount < mybytearray.length)
                        cos.write(mybytearray[byteCount]);
                    os.flush();
                    os.close();
                    socket.close();
                catch(FileNotFoundException err){err.printStackTrace();}
                catch(IOException err){err.printStackTrace();}To receive the encrypted data and then decrypt it, I use the same password and Cipher.DECRYPT_MODE in the Cipher.init() method.
    private Socket sock;
            private DataInputStream din;
            private CipherInputStream cin;
            private BufferedOutputStream out_file;
            private Cipher cipher;
            private PBEKeySpec key;
            private char[] password = "test".toCharArray();
            public ListenForConnectionThread()
                try
                    key = new PBEKeySpec(password);
                    SecretKeyFactory factory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
                    SecretKey pbeKey = factory.generateSecret(key);
                    cipher = Cipher.getInstance("PBEWithMD5AndDES");
                    cipher.init(Cipher.DECRYPT_MODE, pbeKey);
                catch(Exception err) {err.printStackTrace();}
            public void run()
                try
                    serverSocket = new ServerSocket(2000);
                    sock = serverSocket.accept();
                    Runnable r = new Runnable()
                        public void run()
                            try
                                cin = new CipherInputStream(sock.getInputStream(), cipher);
                                out_file = new BufferedOutputStream(new FileOutputStream("received_file.txt"));
                                int inputLine;
                                while((inputLine = cin.read()) != -1)
                                    out_file.write(inputLine);
                                out_file.flush();
                            catch(Exception err){err.printStackTrace();}When I run the application, I get this error:
    java.security.InvalidKeyException: requires PBE parameters.
    Why?

  • Setting CMP Primary Key equal to DB primary key

    Is their a mechanism in Oracle JDeveloper(or other tools) for setting the primary key of auto-generated CMP beans to equal the database primary key?
    If so, could someone kindly share their views on the benefits/drawbacks of this approach to CMP?
    -Teodoro Sorgo

    Brice,
    It sounds like you have a page process on every page. Why not just wait to process all of the data on the last page, using your own pl/sql process? Say you have pages 1-3 with items
    P1_ID
    P1_NAME
    P2_DEPT
    P2_LOCATION
    P3_OTHER
    Only have a process on Page 3 have that does
    insert into table (id, name, dept, location, other) values
    (:P1_ID, :P1_NAME, :P2_DEPT ...
    Anton

  • Set html components JSF

    Hi there,
    I m using JSF but in some places there are simple html components like <select> menu.
    I want to set HTML components when loading page dynamically on the basis of student record.
    Can someone give me a hint how I can set html components using jsf while page is loading?
    Any work-arounds would also be highly appreciated.
    Regards,
    Arsalan

    well this has given me some hint, thanks.
    However my main problem is that I have a code in html page page1 like
    <input id="rdCamp_0" type="radio" name="rdCampus" value="A" />
    <input id="rdCamp_1" type="radio" name="rdCampus" value="C" />
    <input id="rdCamp_2" type="radio" name="rdCampus" value="B" />Now at run time, from backing bean I want to set one of these radio html components like when I am calling page1. I want to set the value of html radio button according to my database record.
    Regards,
    Arsalan

  • Can you set up a key frame on a movie published through iPhoto on .Mac?

    Does anybody know if you can set up a key frame on a movie published through iPhoto on .Mac? I mean the thumbnail for the movie...

    lnbs:
    Welcome to the Apple Discussions. Not in iPhoto. I don't know if you can import the movie into iMovie and set a key frame that way. But that would include some additional encoding to get it out of iMovie and might degrade the quality.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Help Getting CS6 DreamWeaver to Allow Me to Set HTML Settings in Property Inspector

    Hi,
    Another quesiton regarding table layout.  As I often am designing email newsletters, I still need easy ways to set old fashioned HTML elements without messing with CSS (alignment, etc) - it just works better for me for email blasts to code in HTML, plus Outlook still doesn't follow CSS very well in HTML emails.
    After moving to CS6 on a Mac, I can't get the property inspector to allow me to edit HTML Cell properties in the property inspector.  Everything is grayed out.  I'm sure this is some setting somewhere but I can't find it.  In Preferences I do have "HTML instead of CSS" set.  Note that in CS6 on my PC I AM able to edit these fields and change alignment and other cell propertie.s  But, see below, on the Mac, everything is grayed out and I can't edit anything.
    It's got to be a setting somewhere.  How do you over ride CS6 insistance on CSS and HTML blocking and go back to ability to set HTML properties in the property inspector?  There has to be something set different on my PC install than my Mac install but I can't figure out what, as I personally don't remember changing anything and both are brand new installs of CS6, and both are editing the same file.
    HELP!  Thanks!

    Hi Nancy,
    Thanks so much for the response, and I understand CS6 is more standards compliant, but they did NOT remove the ability to make these changes.  You’re missing that I AM able to change and edit in the property inspector to my hearts content in CS6 on my WINDOWS install.  See this screen shot – I can click in the property inspector for a cell and change alignment, etc, and CS6 happily makes the code (like it should) for me.  But on the MAC, it’s grayed out per my original post.  There is a setting I’m missing that I can’t find, or does CS6 Mac not work like CS6 Windows?  Something doesn’t add up.

  • How to set html bullet effect for text in text area

    Hi All,
    How can i set html bullet effect for my text in text area.
    i need like      hello world
    Can any help me.
    thanks
    Raghu

    Use the htmltext property of TextArea. For example...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
                [Bindable] private var theHTML:String = "<ul><li>First</li><li>Second</li><li>Third</li></ul>";
            ]]>
        </mx:Script>
        <mx:TextArea htmlText="{theHTML}" width="400" height="400"/>
    </mx:Application>

  • How do I get or set my network key?

    How do I get or set my network key? I secured my wireless network and now I can't connect with my laptop.
    Thanks

    Well, how did you secure it?
    You configure the router (for which you find the exact model name and hardware version on the label underneath the router) usually on http://192.168.1.1/ On the Wireless - Wireless Security tab you should be able to see the current wireless security settings including the key.

  • Set multiple Region Keys to one Region within Map component?

    Does anyone know if multiple region keys can be tied to one specific region within a Map component?
    Example -
    My data contains the following values that i'd use as Region Keys (these are codes in my table that stand for cities within Taiwan):
         1) TW/FJN
         2) TW/KSH
         3) TW/TWN
    On the China Map Component I can set a Region Key for Taiwan.  But is there a way to be able to set all 3 of the above listed values for a Taiwan Region key?  Or am I only allowed to enter 1 value?
    Here is a photo to help show what i'm talking about:
    [http://img195.imageshack.us/img195/8508/gdsagdsasd.jpg]

    Does anyone know if multiple region keys can be tied to one specific region within a Map component?
    Example -
    My data contains the following values that i'd use as Region Keys (these are codes in my table that stand for cities within Taiwan):
         1) TW/FJN
         2) TW/KSH
         3) TW/TWN
    On the China Map Component I can set a Region Key for Taiwan.  But is there a way to be able to set all 3 of the above listed values for a Taiwan Region key?  Or am I only allowed to enter 1 value?
    Here is a photo to help show what i'm talking about:
    [http://img195.imageshack.us/img195/8508/gdsagdsasd.jpg]

  • Why to I FREQUENTLY have to reload my page to get hot links to work? Andmy keyboard frquently does not register key strokes, particularly the space bar.

    Why to I FREQUENTLY have to reload my page to get hot links to work? Andmy keyboard frquently does not register key strokes, particularly the space bar.

    # Right-click an empty area of the tab bar and choose Customize.
    # Click the Restore Defaults button, then the Exit Customize button.
    # If you don't already have it, install [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ Classic Theme Restorer] and restart Firefox when prompted.
    # Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
    # Next to Classic Theme Restorer, click the Options button.
    # On the Main tab, make sure "Movable back-forward button" and "Hide urlbars stop & reload buttons" are checked. You might also want to check "Combine stop & reload buttons". Close the options window when done.
    # Right-click an empty area of the tab bar and choose Customize.
    # Drag the Back/Forward, Stop and Reload buttons onto the navigation toolbar.
    # Click the Exit Customize button in the lower right corner when done.
    That being said, I should point out that you can reload pages in other ways.
    * Right-click any tab and choose Reload.
    * Right-click an empty area of the page and choose Reload.
    * Press F5.
    * Press Ctrl+R (Mac: Command+R).

  • Flash and HTML Access Keys/Keyboard Shortcuts

    I have a webpage with embedded Flash. I am attempting to use my HTML Access Keys/Keyboard Shortcuts while in the Flash piece, and it will not work until I exit the Flash. Is this normal behavior, or is there something wrong with my code?
    Perhaps HTML  Access Keys/Keyboard Shortcuts do not operate when the user is in the Flash piece?
    Thanks for the help!    

    Would you mind reposting this question over on the Flash Professional forums (http://adobe.ly/XnCf1)?  This forum is primarily for end users, the Pro forums will get you in touch with a wider developer audience.
    Thanks,
    Chris

Maybe you are looking for