Problem in enabling/disabling Custom JDeveloper Extension

Hi,
I've been trying to develop an extension for JDeveloper version 11.1.1.3/11.1.1.4 which i should be able to enable/disable from Tools->Preferences->Extensions section. However the problem i'm facing is that, after installing the newly developed extension, if i try to disable it by unchecking it from the Tools>Preferences->Extensions list, it does not show up in the extensions list after JDeveloper restarts. Therefore if i want to enable it again, i'm not able to do that because it is not available in the list.
Trouble is that even if i reinstall it again (from Help->Check for updates) it does not appear in the list, and it does not work either because JDeveloper is treating the extension as disabled.
I've kept my extension.xml simple for now:
<?xml version="1.0" encoding="windows-1252" ?>
<extension xmlns="http://jcp.org/jsr/198/extension-manifest" id="oracle.ide.sampleextension" version="11.1.1" esdk-version="1.0">
<name>Sample Extension</name>
<owner>Oracle</owner>
<hooks>
*<feature-hook>*
*<description>Sample Extension</description>*
*<optional>true</optional>*
*</feature-hook>*
</hooks>
</extension>
My bundle.xml is:
<update-bundle version="1.0" xmlns="http://xmlns.oracle.com/jdeveloper/updatebundle" xmlns:u="http://xmlns.oracle.com/jdeveloper/update">
<u:update id="oracle.ide.sampleextension">
<u:name>Sample Extension</u:name>
<u:version>11.1.1</u:version>
<u:author>Oracle</u:author>
<u:author-url>www.oracle.com</u:author-url>
<u:description>Sample Extension</u:description>
<u:requirements>
<u:requires-extension id="oracle.jdeveloper"
minVersion="11.1.1.3.37.56.60"
maxVersion="11.1.1.4.99.99.99" />
</u:requirements>
</u:update>
</update-bundle>
I've done a lot of troubleshooting on this issue but in vain. I could not find any help on google either. Can anyone please help me on this?
Thanks in advance,
Suhail.
Edited by: 865337 on Jun 13, 2011 2:34 PM

Hi Suhail,
Can you zip up your project folder and send it to me in email? I'll look it over and try to find the issue.
email is: john<DOT>brock<AT>oracle<DOT>com
I'm not quite sure what is is going on, but I suspect that the extension.xml file is to simple. Not even sure what I mean by that just yet. I want to take a look at see what is in the extension.xml file compared to some of the more basic extensions that I have created for demos and blogs, etc.
Go ahead and send me the source and I'll take a look.
Is there a reason that you are staying on 11.1.1.3 by the way? We are up to 11.1.1.5 right now in the 11gR1 release. I'm not aware of a bug like this, but it could be something in the older version.
--jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Enable/disable Customer Enhancements

    Hi all,
    I'm developing a <u>customer procedure</u> in my SAP ECC 6.0 system, also linked to a standard transaction.
    This Z* procedure should contain some explicit enhancements points (more spots) so that it could be possible in the test/productive system to easily disable/enable some parts of the coding. (like in the old CMOD)
    My question is:
    can I do that using the "Source Code Plug-In" technique (but I can find the function to disable compisite spots/enhancements) or the only way is to use the BADI's technique and disable the "implementation is active" flag?
    thanks in advance,
    Fabrizio

    Hi Noyesbox,
    Have you updated the firmware on your printer so the firmware datecode shows version 20110826?
    You can find the download, if needed, here.  After selecting an operating system you will see a firmware option with the download and directions.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Java script problem for enabling & disabling textboxeswhencheckbox is check

    hiii,
    the checkboxes are generating in a for loop.beside the checkboxes
    the textboxes are akso generating.
    suppose
    checkboxes per amount
    \--\ nssf [------] [------]
    \--\ TAPw [-----] [------] tapw[------]
    \---\ HRA [----] [------]
    \----\ XYZ [-----] [------]
    here there are 4 checkboxes generating in a loop.
    also 4 textboxes of per generating in one loop
    4 text boxes of amount generating in one loop
    the tapw textfirld is an individual one and it is having the text box name as 'tapw'
    here the condition is if i check the check box the textboxes behind them should be enabled ,otherwise disabled.
    that is coming.
    but i also want that tapw should be enabled if the checkbox behind the TAPW is checked.
    here one important thing is the TAPW can't be always in 2nd position
    first if the person doesn't check the nssf,it may be in 1st position or it may be in 3rd position like that.
    but that tapw textbox (individual)will always be generated besides the TAPW textbox.
    can u tell me how to identify that one and how i can get enable if that checkbox is checked.

    hioooooo,
    am i correct now
    <html>
    <head>
    <title>Test Page</title>
    <script language="Javascript">
    checkForm.T1.disabled = true;
    checkForm.T2.disabled = true;
    checkForm.T3.disabled = true;
    checkForm.T4.disabled = true;
    function setTextBox(check, row, totalbox)
         var tick = !check.checked;
         for( var k=1; k<= totalbox; k++)
              var ctl = "T" + k;
              checkForm[ctl][row].disabled = tick ;
              if( k == 2 ) break;
         if( totalbox == 3)
              var ctl = "T" + 3;
              checkForm[ctl].disabled = tick;
    </script>
    </head>
    <body>
    <form name="checkForm">
    <div align="center">
      <center>
      <table border="0" cellpadding="0" cellspacing="0" width="60%">
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 0, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="AAA1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="AAA2" size="20"></td>
          <td width="20%"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 1, 3)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="BBB1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="BBB2" size="20"></td>
          <td width="20%"><input type="text" name="T3" disabled value="BBB3" size="20"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 2, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="CCC1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="CCC2" size="20"></td>
          <td width="20%"></td>
        </tr>
        <tr>
          <td width="18%"><input type="checkbox" onclick="Javascript:setTextBox(this, 3, 2)" name="C1" value="ON"></td>
          <td width="31%"><input type="text" name="T1" disabled value="DDD1" size="20"></td>
          <td width="31%"><input type="text" name="T2" disabled value="DDD2" size="20"></td>
          <td width="20%"></td>
        </tr>
      </table>
      </center>
    </div>
    </form>
    </body>
    </html>AE

  • Custom rendering extensions not working in SSRS Report Designer (rsreportdesigner.config)

    My custom rendering extension is working in Report Builder (in RSReportServer.config), but not in Report Designer (in RSReportDesigner.config):  instead of adding a "TXT" export option, it's just adding a duplicate "CSV" option.
    SUMMARY: 
    Is there a way to get these features working, with Report Designer?
    DETAILS:
    We are running SSRS (Reporting Services) under SQL Server 2008 R2.
    Here's my rendering section:
        <Render>
          <Extension Name="XML" Type="Microsoft.ReportingServices.Rendering.DataRenderer.XmlDataReport,Microsoft.ReportingServices.DataRendering" />
          <Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering" />
          <!-- TXT extension with help from:  http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d79845a8-17fb-4ec6-b121-2c40cf466d73/how-do-i-add-a-pipe-delimited-option-in-ssrs-2008-report-manager?forum=sqlreportingservices -->
          <Extension Name="TXT" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TXT(ASCII,NoColHds)</Name>
            </OverrideNames>
            <Configuration>
                 <DeviceInfo>
                     <FileExtension>txt</FileExtension>
                    <FieldDelimiter>,</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <NoHeader>true</NoHeader>
                </DeviceInfo>
            </Configuration>
          </Extension>
          <Extension Name="IMAGE" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="PDF" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PDFRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="HTML4.0" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.Html40RenderingExtension,Microsoft.ReportingServices.HtmlRendering" Visible="false" />
          <Extension Name="MHTML" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.MHtmlRenderingExtension,Microsoft.ReportingServices.HtmlRendering" />
          <Extension Name="RPL" Type="Microsoft.ReportingServices.Rendering.RPLRendering.RPLRenderer,Microsoft.ReportingServices.RPLRendering" Visible="false" />
          <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" />
          <Extension Name="WORD" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordDocumentRenderer,Microsoft.ReportingServices.WordRendering" />
        </Render>
    When I add the above "TXT" section to RSReportServer.config, then Report Builder (and production) both show an export option "TXT(ASCII,NoColHds)". 
    But when I add this "TXT" section to RSReportDesigner.config, and then (in Report Designer / BIDS) attempt to export from a "Preview" of the report, the export drop-down does not show a "CSV" option followed by a "TXT"
    option, but instead shows the "CSV" option twice.
    This simply limits testing of the export option, to Report Builder... or requires any reports be published from Report Designer before they can be tested with
    this export option.
    (FYI, why this export option:  compliance in our industry requires sending data to government agencies, in text files, with fixed-length columns, and ASCII encoding.  Also, we're attempting to give the production of these files to the *users* managing
    communication with those agencies... so we're putting them into SSRS.
    I worked around the fixed length columns (and no delimiters -- no commas), by writing a version of the report where all string columns are padded, and all columns are concatenated, to form ONE LONG COLUMN... but Reporting Services' CSV export format produces
    a Unicode file (UTF-8, which the agency rejected, because it had a leading "", or "EF BB BF" in hex), whereas the agency requires an ASCII file.)

    Hi Doug_atMidway,
    According to your description, you want to enable your custom render extension. Right?
    In Reporting Services, if you want to deploy the custom extension, you just need to add the extension into rsreportserver.config file.  The
    RSReportDesigner.config file stores settings about the rendering extensions available to Report Designer. Since you still use the csv rendering extension in your assembly, we don't need to do any modification in rsreportdesigner.config file. Pleaes
    refer to the links below:
    Thanks for attempting to help, Simon.  
    As my question states, I've *already done* both the above:  changed (1) rsreportserver.config and (2) rsreportdesigner.config.  I added the same code, shown above, to both files.  I did that so I could see the new "txt" extension
    both (1) when exporting in production and Report Builder, and (2) when exporting in Report Designer's "preview".  
    The change in (2) is not working:  I do not see the "TXT" extension in Report Designer, when I try to export from a preview.  Instead, Report Designer shows the CSV extension repeated.
    Thanks for the docs.  I consulted them (well, I consulted the EQUIVALENT pages, for SQL Server 2008 R2), when creating my block of code above.
    Do you see anything to correct, in my code?
    Are the features I'm using actually working, with rsreportdesigner.config?
    Thanks again, 
    -- Doug

  • JDeveloper extension : JDevLibsForAnt

    hi
    I would like to be able to use Ant to compile and package my code, but I don't want to maintain libraries in two places, JDeveloper and Ant.
    My first approach was to call JDeveloper from Ant using a custom JDeveloper extension that provides an MBean to "access" the JDeveloper extension API.
    http://verveja.footsteps.be/~verveja/files/oracle/CallJDevApps-v0.01.zip
    Although it "works", it is intended to be used from within JDeveloper.
    My second approach was to have a custom JDeveloper extension automatically maintain an Ant build file on each library change in JDeveloper. This Ant build file can than be imported into another Ant build file.
    http://verveja.footsteps.be/~verveja/files/oracle/JDevLibsForAntApps-v0.01.zip
    Although this does what I want, I have a few questions:
    (1) What is the preferred way to get the "outputDirectory" of a Project (see LibrariesProjectChangeListener$MyJProjectPaths)?
    (2) How can I get notified of changes to my custom project options (see JDevLibsForAntOptionsPanel and LibrariesProjectChangeListener.isChangeLibraryRelated())?
    All suggestions for improvement are welcome.
    many thanks
    Jan Vervecken

    I was interested to read your dialogue because I too am trying to use Ant to automate the build and deployment of JDeveloper projects. I have to say that I'm a total newcomer to JDeveloper, Ant and Java, so much of what you're saying is way above my head!
    I've achieved some degree of success with BPEL modules, mainly by using a <for> task to iterate over the build.xml files created by JDeveloper. However I'm coming unstuck with the non-BPEL bits; I know what keystrokes are required to tell JDeveloper how to do the job manually, but I have very little clue about what goes on under the bonnet when I initiate a deployment, so replicating it in my Ant project is well-nigh impossible; furthermore the build.xml files produced by JDeveloper for the non-BPEL stuff all seem to stop short of actually doing the deployment - either to a server or to jar/war/ear files.
    I then came across the JDeveloper Ant task <jdev> at http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/anttasks/index.html
    which sounded as though it might help. However I encountered some difficulty in getting it to do anything useful other than simply firing up JDeveloper, so I am currently having a dialogue with its author, Gerard Davison at Oracle, to try and get some help. He also suggested a tool called ojmake, which is available in the jdev/bin directory of the Technology Preview for 11, which I've also tried playing with, but I can't get it to work in JDev 10.
    Does anybody out there have any knowledge either of the <jdev> Ant task or ojmake, or of any other tools that might help in this situation?

  • V4.0 Dynamic Action - Problem with implementing disabling/enabling button

    I'm having trouble implementing the following APEX V4.0 dynamic action:
    The enabling/disabling of a button when a text field is not-null/null.
    I'm following the example in Oracle's Advanced APEX course notes Pgs 5-13 to 5-16. I can get it working with no problems using two text fields. The example states that the "Select Type" for the button is a DOM object and you then have to enter it's name in "DOM Object" attribute. The example uses a "CREATE" button in a region position. Is "CREATE" just the Name attribute of the object? Is that what we are suppose to enter here? Also my FIND button is a "button among the region items" and not a "button in a region position" as in the example. The name of the button is P1_PAT_TBRN_SEARCH but when I use it as the Dom Object, nothing happens. Also I am using the "Key release" event for the text field that must be not-null.
    I notice that Demitri Gielis on his blog couldn't get it working either (see last paragraph)
    http://dgielis.blogspot.com/2010/01/apex-40-dynamic-actions-part-1.html
    Any suggestions?
    thanks in advance
    Paul P
    Edited by: PaulP on Jun 2, 2011 12:01 PM

    Hi Paul
    Two separate situtations here:
    - html buttons
    - template based buttons, typically comprising multiple html elements
    HTML Buttons
    These should be easy to enable/disable using dynamic actions, specifying an appropriate DOM selector.
    Typically you would use the ID attribute of the button, so that's straight forward except for one catch..
    APEX supports a #BUTTON_ID# template substitution tag , but performs substitutions only for buttons in Region positions and not for button items.
    Use button attributes instead to assign a specific ID.
    Template Buttons
    Since these are made up of multiple elements, you need to treat them as a single object to be able to interact with them easily.
    APEX provides the apex.widget.initPageItem method to integrate plugins with the dynamic actions framework:
    apex.widget.initPageItem("P1_MY_ITEM", {
    enable: function(){},
    disable: function(){},
    getValue: function(){},
    setValue: function(){},
    nullValue: "%null%"
    });This provides you with a mechanism to over-ride one or all of these built-in methods with your own JS, to use custom code to enable/disable your template buttons.
    For an example on how this works, look in the uncompressed apex_widget_4_0.js file, search for the shuttle widget.
    You could just add code to initialize your template buttons manually, or better still create a plugin button to add the code automatically.
    This is reasonably advanced work to do, but you really have to take your hat of to the APEX team for providing the mechanism to do it.
    Regards
    Mark
    demo: http://apex.oracle.com/pls/otn/f?p=200801 |
    blog: http://oracleinsights.blogspot.com |
    book: Oracle Application Express 4.0 with Ext JS

  • Problem in enabling constraint - after disabling and truncation of table .

    Hello Friends,
    I have a table called DRR_TABLES that has list of table names . The requirement is to truncate the tables present in DRR_TABLES except KEY_IDS table and table_name like '%TYPE%' table.
    written a procedure . successfullly truncating the tables from DRR_TABLES but while enabling constraints after truncation , I am getting problem in enabling constraints .
    ERROR at line 1:
    ORA-02270: no matching unique or primary key for this column-list
    ORA-06512: at "schema123.TRUNCATE_DRR_TABLES ", line 49
    ORA-06512: at line 1
    Heres is the code .
    PROCEDURE TRUNCATE_DRR_TABLES is
    x varchar2(200);
    v_tablecount number := 0;
    cursor c is select TABLE_NAME from DRR_TABLES where population_source='PUBLISHING' and TABLE_NAME != 'KEY_IDS' and TABLE_NAME NOT LIKE '%TYPE%';
    BEGIN
    DBMS_OUTPUT.PUT_LINE (' TRUNCATING DRR TABLES ...........');
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c1 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status ='ENABLED' ORDER BY CONSTRAINT_TYPE DESC )
    loop
    begin
    execute immediate ('alter table '||c1.table_name||' disable constraint '||c1.constraint_name|| ' cascade');
    NULL;
    end;
    end loop;
    EXECUTE IMMEDIATE 'TRUNCATE TABLE ' || x ;
    v_tablecount := v_tablecount + 1 ;
    DBMS_OUTPUT.PUT_LINE('TABLE TRUNCATED :'|| x );
    END LOOP ;
    DBMS_OUTPUT.PUT_LINE (' TOTAL TABLES TRUNCATED ' || v_tablecount );
    CLOSE c;
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c2 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status = 'DISABLED' ORDER BY CONSTRAINT_TYPE)
    loop
    begin
    execute immediate ('alter table '||c2.table_name||' enable constraint '||c2.constraint_name);
    NULL;
    end;
    end loop;
    END LOOP ;
    CLOSE c ;
    END TRUNCATE_DRR_TABLES ;
    LINE 49 is the line corresponding to enable constraint statement.
    Edited by: kumar73 on 3 Sep, 2012 11:44 PM

    It is such a pity that a user having 321 posts till date is unaware of basics of Posting a Question.
    1. You need to provide us with your Oracle version
    select * from v$version;2. You need to understand and get accustomed to using tags before and after Code or SQL's for better readability.
    3. You need to provide us with the Table Structure and the Constraints Definition.
    There are many things that looks like Bad Coding practices:
    <font face="Times New Roman" size=2>
    1. Avoid RBAR (Loops).
    2. Implement Bulk Collect.
    3. Why do you need to disable the constraints before truncating? Are you kind of handling the Referential Integrity Constraints?
    4. Duplicate checking of Disabled Constraints.
    5. When the procedure is being executed at Production Environment, are you going to Monitor the DBMS_OUTPUT? Why not Log the Statements into a LOG Table?
    6. Why use a TableCount variable? Would the TableCount Variable be not equal to the Number of Records returned by Cursor C?
    7. What is the need to use a NULL statement after every Execute Immediate?
    8. What is the Need to surround each execute Immediate with Begin .. End block?
    9. Where is your Exception handling Block? Forgot to write?
    </font>
    What has been your effort in finding which Constraint/Table is causing you the trouble?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Enabling/disabling buttons problem

    Hello,
    I'm using jdev 10.1.3.3.0 and I want to enable/disable buttons based on the value in a tableSelectOne. I wrote a function isNextButtonEnabled() in my backing bean and I have set the disabled option of the nextButton (=CoreCommandButton) to #{!backing_bean.nextButtonEnabled}. Then I putted the autoSubmit option of the TableSelectOne to true and made a partialTrigger on the nextButton to the TableSelectOne. In the print statements everything is fine, but it is never displayed.
    Does anyone know what to do about this.

    Well,
    the nextButton is in a cellFormat which on itself is in a HtmlRowLayout. I putted partial triggers on the cellformat, the rowLayout and the panelPage to the TableSelectOne, but this doesn't do the trick neither. Strange.

  • How to enable /disable a command Button based on a table's selectOne choice

    Hi everyone.
    I am using JDeveloper 10.1.3.3 and wish to enable / disable a commandButton based on the user's selection of the selectOne radio button.
    The idea is that a row of a table may have an associated document so I want to enable or disable the button that downloads it based n the current row selected.
    I have followed the advice on problem with table I defined my selectOne component as follows :
    <af:tableSelectOne text="#{res['tables.selectionFacet.title']}"
        autoSubmit="true"
        attributeChangeListener="#{backing_browseCVs.onSelectionChange}">The function inside the backing bean looks like this
        public void onSelectionChange(AttributeChangeEvent attributeChangeEvent)
            // access the faces context
            FacesContext fc = FacesContext.getCurrentInstance();
            // get value of the expression #{row.hasCVDocument} that indicates
            // if a document has been added
            ValueBinding vb =
                fc.getApplication().createValueBinding("#{row.hasCVDocument}");
            Boolean hasDoc = (Boolean)vb.getValue(fc);
            // enable the doownload button accordingly
            downloadCVDocBtn.setDisabled(!hasDoc);
        }My problem is that the method never fires. I have placed a breakpoint at the first line but it is never reached.
    Any advice will be most welcome.
    Thanassis

    Hi,
    You might need to add 'dataProvider' part in the expression language in your selectionListener:
    #{bindings.CVList.currentRow.[b]dataProvider.hasCVDocument}
    #{bindings.CVList.currentRow} returns an instance of ViewRowImpl which does not have 'getHasCVDocument()' method, but does have:
    Object getCurrentRow()
    method, which returns objects from your CVList list, which do have getHasCVDocument() method...
    Expression language is resolved through reflection, so when you write:
    #{processScope.someClass.someReferencedClass.someAttribute} it is something like:
    Get someClass from processScope map, then:
    someClass.getSomeReferencedClass().getSomeAttribute()
    It's a bit more complex but you get the idea.
    Vladimir

  • Disable Or Remove Extensions in Safari Open Safari. Click the Safari button, and then click Preferences. Under Preferences, click Extensions, and then do one of the following: To disable ALL extensions, click the toggle switch from ON to OFF. To disable a

    I FINALLY FOUND A WAY TO UNINSTALL "COUPON-DROP-DOWN" ANNOYING POP-UPS.
    Disable Or Remove Extensions in Safari
    Open Safari.
    Click the Safari button, and then click Preferences.
    Under Preferences, click Extensions, and then do one of the following:
    To disable ALL extensions, click the toggle switch from ON to OFF.
    To disable a single extension, click it, and then uncheck the Enable box.
    To remove a single extension, click it, and then click the Uninstall button.
    Click the X in the top right.

    Hello Wontsey & Welcome
    On 6-4-06 I installed Norton Internet Security 3.0.1 for Mac. I thought maybe my problem was related to the firewall part so I unistalled it and turned the Apple firewall that came with the computer back on.
    This did not help. In fact, when I try to open “Help” from the desktop menu the program opens and then immediately closes so I can’t access it.
    I hate to have to tell you this Norton is the problem, looking into uninstalling it, the uninstallers that came with it are not effective so no matter you do not have the CD/DVD go to their site to get the Uninstaller
    UseCocktail or OnyXto find the invisable files. Just follow Macjacks directive.
    This is covered in this Topic thread,abandoning Norton Internet Security see the files Macjack speaks of in the topic thread. If you have questions post in the same forum a new topic this thread is archive, click on the link and then click"back to topic list". This is why i first came to Apple discussions, to get help with the mess Norton can make on Panther and found help as you will. It is not a Safari issue per say, rather a Norton problem.
    Best of luck.
    Regards; )
    Eme~

  • OIM ICF Connector Framework - Enable Disable Method

    Hi ,
    I am currently working on developing custom OIM connector using ICF Framework , I am trying to create an adapter for application user enable disable . I am not sure about which method gets called to disable the user .
    Do I need to write a seperate disableUser Method in the connector code , currently have methods for Create , Update and delete , do I need to write 2 more methods for Enable Disable of users.
    I belive th UpdateOP interface is called during the disable / enable process .
    any help would be much appreciated.
    Cheers
    Easwaran

    I'm getting the same error when it runs update user to add child values:
    Thread Id: 125     Time: 2013-02-22 09:24:53.204     Class: org.identityconnectors.framework.api.operations.UpdateApiOp     Method: update     Level: OK     Message: Exception:
    java.lang.NullPointerException: Parameter 'uid' must not be null.
    This is the attribute map that get's passed in. unixids are the child values.
    Thread Id: 125     Time: 2013-02-22 09:24:53.202     Class: org.identityconnectors.framework.api.operations.UpdateApiOp     Method: update     Level: OK     Message: Enter: update(ObjectClass: __ACCOUNT__, null, [Attribute: {Name=unixuids, Value=[sdfasdfasd]}], null)
    Here is my what my schema looks like for if it helps:
    <ObjectClassInfos>
    <ObjectClassInfo type='__ACCOUNT__' container='false' embedded='false'>
    <AttributeInfos>
    <AttributeInfo name='unixuids' type='String'>
    <AttributeInfoFlag value='MULTIVALUED'/>
    </AttributeInfo>
    <AttributeInfo name='__NAME__' type='String'>
    <AttributeInfoFlag value='REQUIRED'/>
    <AttributeInfoFlag value='NOT_UPDATEABLE'/>
    </AttributeInfo>
    </AttributeInfos>
    </ObjectClassInfo>
    </ObjectClassInfos>
    How did you fix your problem?
    Edited by: DJ on Feb 22, 2013 9:58 AM

  • Why can't we simply have an option to enable/disable Javascript on sites again in the settings for Firefox 27? Suddenly my Gmail attachments won't open. Gmail.

    Suddenly my Gmail attachments have stopped opening, and I receive the message: JavaScript must be enabled in order for you to use Gmail in standard view. However, it seems JavaScript is either disabled or not supported by your browser. To use standard view, enable JavaScript by changing your browser options, then try again.
    I found a Mozilla support thread where it was explained that Javascript has been turned off for a while in FF. OK. Then there was a complicated answer about how you could still turn it back on by typing in a config code into the address bar. What? Or, you could download an extension to do that for you. Why?
    Please-- if you really feel like users can't be trusted, and Javascript must be turned off, at least bring back the ability to enable/disable Javascript on a per site basis in options, without having to know code. It's Gmail.
    Thank you.

    There is nothing on that thread that says Javascript is turned off by default. to quote:
    "In Firefox 23, as part of an effort to simplify the Firefox options set and protect users from unintentially damaging their Firefox, the option to disable JavaScript was removed from the Firefox Options window.
    However, the option to disable JavaScript was not removed from Firefox entirely. You can still access it from about:config or by installing an add-on. "
    The UI checkbox to disable Javascript was removed, but the option still exists in about:config (which isn't code btw, it's just preferences), nor was Javascript turned off by default, in fact the opposite is true, it is enabled by default with the option to disable it made a little more difficult to find, as only advanced users need to disable Javascript.
    Please try to clear the cache and cookies for gmail, let's see if those are causing problems. [[Delete cookies to remove the information websites have stored on your computer]], [[How to clear the Firefox cache]]

  • JDeveloper Extensions

    Hi folks,
    I'm (mostly for my own use/interest) developing a few JDeveloper extensions.
    During development & testing of my extensions, I find that the IDE wraps & hides any exceptions that I don't handle. This is great behaviour for an end user who is using the extension, but makes life difficult during development. Is there any way for me to disable this behaviour so that any unhandled exceptions get delivered to me somehow (or should I be looking somewhere for this information)?
    Thanks,
    Chris
    PS - If the answer changes based on version, I'm currently using the 10.1.3 preview release.

    Hi Chris,
    There's no way to turn them on, I'm afraid. I'm on a personal crusade against the part of the JDeveloper implementation that causes this ;)
    The reason you don't see stack traces is that we use an assertion mechanism (existed prior to Java 1.4) for printing stack traces. In our nondebug builds (e.g. production code released to customers), all usages of these assertion APIs are stripped out by our compiler.
    Because of that, there's no way for you to see the stack traces unless you can get hold of a debug version of jdev.jar. Since we don't ship that, it's not possible.
    One small possibility is to use the debugger and set exception breakpoints. However, this isn't very useful, since you need to know in advance what kind of exceptions are being thrown.
    There are a couple of things I'm hoping to do in future to improve this:
    - Migrate to java.util.logging and 1.4 asserts instead of our own custom Assert implementation.
    - Possibly look into making the debug ide.jar / javatools.jar / jdev.jar available to extension developers. This would probably not be part of the base product, but in the separate esdk download. This would also make it far easier to debug your extension code (no more _slots in the data window).
    Thanks,
    Brian

  • SSO Enabling a custom application with OAM

    Hi All !
    Am a bit stuck on a problem and need some urgent help. Actually we are trying to launch some custom-built (J2EE/.NET) web applications from the Oracle Portal with SSO i.e. once the user logs into the portal he would not have to log-in again to the applications which would be launched from the portal home page.
    We have successfully integrated the Oracle Portal with the OAM SSO, but facing some problems with SSO enabling the custom applications. Any help on what should be the ideal integration architecture and approach for SSO enabling the apps with minimum amount of modification of the application code.
    The licenses are available for OID, OVD, OAM.
    Thanks in advance. Any views/comments/links to useful material appreciated.
    Cheers
    Soumak

    If your custom application uses its own database for Authentication, then you have to modify the login process for your application. i.e. you have to trust the OAM to have done the authentication and then create any custom cookie that your application might use in its landing page.
    I am assuming that your custom application have some way of tracking if the user has logged in or not. You can protect the Custom application URL within OAM and once the user has logged in you can then generate your custom application cookie.
    Even if you use OVD, you stil have to modify login process in your custom appliation to trust the third party to have done the authentication.
    Thanks
    Ram

  • Enable/Disable Column in a Advanced Bean Table

    Hi,
    I have 2 columns that needs to be enabled/disabled on a standard oa page PO Lines summary page.
    I went through couple of blogs/forums and found 2 approaches :-
    Approach 1
    1) Extended the standard VO POLinesMerge.
    2) Added a attribute column DeriveDisplayFlag of type VARCHAR2 . This call a database function and will return Y or N
    3) Added a attribute of type ShowAdditionalColumn boolean. the get method of this attribute returns TRUE if DeriveDisplayFlag is 'Y' otherwise returns FALSE.
    4) created a substitution for the custom VO
    5) uploaded the substitution to mds.
    6) copied the xml/class files to $JAVA_TOP/..
    7) Bounced entire middle tier
    8) using personalization, entered a SPEL command on the rendered property. I know rendered will hide/show the column but for time being I just want this to work.
    But this fails :-
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = XXPBPoLinesMergeVO; APPLICATION_MODULE = oracle.apps.po.document.server.DocumentAM;
    I am not aware how to get around this. Can someone help please?
    Approach 2
    1) steps 1 to 6 from Approach 1.
    2) trying to extend controller class OrderLinesTableRNCO. But have couple of questions. This iis a advanced bean table so how should i reference individual record and the column that i need to disable/enable ?
    Conceptual questions
    Also, when i am entering a new record at what point in time the 2 new attribute will derive its value? the 2 attributes are dependent on the Item number column but i have not created a dependency between the attributes and Item# column.
    Will the controller logic fire for every column while i am entering a new record?
    Thanks.

    Hi Anil,
    Thanks for the response. I have given up that i will get reply on this post.
    I have done the substitution and upload the jpx to umsing importer.
    But you are correct may be i might have done something wrong. Can you please help me. I can send you the files if you can review and let me know it will be great.
    Also, will this approach work since PO Lines is a advanced bean table ?
    One of the experts suggested to use Bound values. I am not sure how to implement it though?
    I have went and told back to my business team that I am not able to do this so now they have asked me to enable/disable columns based on a dff value on po header. I thought this will be easier by extending the controller class on PO Lines table but that too is not working.
    Can you help me please ?
    Here is my code to extend the controller class :-
    package xxpb.oracle.apps.po.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;
    import oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean;
    import oracle.apps.fnd.framework.webui.beans.table.OAColumnBean;
    import oracle.apps.fnd.framework.webui.beans.table.OASortableHeaderBean;
    import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
    import oracle.apps.po.document.order.webui.OrderLinesTableRNCO;
    public class XXPBOrderLinesTableRNCO extends OrderLinesTableRNCO
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAAdvancedTableBean tableBean =
    (OAAdvancedTableBean)webBean.findIndexedChildRecursive("LinesTableRN");
    OAMessageLovInputBean poLineLov =
    (OAMessageLovInputBean)tableBean.findIndexedChildRecursive("XXPBSecondaryUOMLOV");
    poLineLov.setDisabled(false);
    }

Maybe you are looking for

  • Headphone doesn't work in windows 7 at macbook pro 13 (early 2010)

    I installed all drivers from bootcamp 3.1. But when I plug in headphone, there is no sound in my speaks and headphone in windows 7. But in mac os, that would be fine. And i try to reinstall and update. it still doesn't work. How to solve this problem

  • Images open small, zooming works poorly

    When I open a large image (one larger in resolution than my monitor), it opens in a small window on the far right of my screen. When I move it to the middle of my screen, resize it so I can see more of it and zoom in again, the window snaps back to t

  • Error 1 occurred at AB_Destination.lvclass:

    during the build (source distr) the folliwing pops up: Error 1 occurred at AB_Destination.lvclass:Copy_File.vi -> AB_Source.lvclass:etc etc... It first made a path and a file in build directory: C:\builds\Program Files\National Instruments\LabVIEW 8.

  • Updates on SCCM Client for Silverlight, Visual C++

    Recently I've noticed that after installing a new Windows 7 system with the latest SCCM client ( 5.00.7858.1203 ), the first Software Scan shows each machine needs these three updates Is there any reason to not download these and put them into the Cl

  • Multiple persistent units

    Hi, I have one EJB project with two beans refering to two different data bases using two persistence units. Bean A - persistence unit DB_A_unit  - entity class CL_A - table DB_A Bean B - persistence unit DB_B_unit  - entity class CL_B - table DB_B In