How to group JDev extension for distribution

Hello

I created an extension of JDeveloper on 11 GR 1 material. The extension will give an option under 'Run' in the popup menu jdeveloper. I am able to run the JDeveloper extension, by using the 'Run the Extension' option. Now, in order to distribute, I created a zip file with record jar and meta-inf of the project with bundle.xml. If I import the zip of the "check for updates", I can see the name of the extension by clicking next. After the reboot, I don't see the option which should be less "Run".

Please can anyone suggest what Miss me?

Thank you

Hello

Please check the minimum and maximum version attribute. You can try removing the as well.

Tags: Java

Similar Questions

  • How many groups of disks for + DATA?

    Hi all

    Made Oracle recommends that a group of disks asm wholesale/shared for all databases?
    In our case we're going to 11.2 and 10 g rac against 11.2 ask...

    Am I right to say that I need to set the compatibility of the asm to 10 in order to be able to use the same disk?
    It is a good idea? Or should I create another group of disks for the db 10g?
    I guess that there are features that are not available when compatibility is reduced to 10g...

    Yes, it is possible but not recommended because the ASM would distribute the e/s in such a way to disc 1 would get 4 times requests for disk 2, which is probably not what you want in terms of performance.

    Bjoern

  • How to install an extension for my router

    original title; HOW to SET UP NET GEAR for MY ROUTER to ALLOW MY EXTENSION greater DISTANCE for RECEPTION OF SIGNAL from main router

    I have a netgear router and I want to install an Extender (netgear), so I get enough power from further away in my house.  My main router doesn't have a button of annual work plans.

    Hello

    1. What is the model of the extender?

    Please see the link.

    http://www.NETGEAR.com/images/WN3000RP_DS_22Mar1118-17219.PDF

    I suggest also please contact Netgear support team for assistance.

    http://forum1.NETGEAR.com/

  • How the group using SQL for the desired output.

    Hi all

    I am currently using oracle 10.2.0.4.0

    Create a table script:
    CREATE TABLE FORTEST
    ( gpno VARCHAR2(10 BYTE),
      classnumber  VARCHAR2(10 byte),
      age_min NUMBER,
      age_max NUMBER,
      amount NUMBER)
    INSERT statement:
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 01,0,29,1) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 01,30,35,2) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 01,36,40,3) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 02,0,29,1) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 02,30,35,2) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 02,36,40,5) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 03,0,29,1) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 03,30,35,2) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G123' , 03,36,40,3) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G124' , 01,0,29,1) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G124' , 01,30,35,2) 
    insert into fortest  (GPNO,classnumber,age_min,age_max,amount) values
    ('G124' , 01,36,40,3) 
    power required:
    gpno    classnumber    age_min    age_max    amount
    G123    1,3                0        29        1
    G123    1,3                30       35        2
    G123    1,3                36       40        3
    G123    2                  0        29        1
    G123    2                  30       35        2
    G123    2                  36       40        5
    G124    1                  0        29        1
    G124    1                  30       35        2
    G124    1                  36       40        3
    as for gpno g123, classnumber 1 and 3, the rates are the same in all the age_min and age_max they need to be grouped.
    even if gpno 123 classnumber 2 has the same rates as the classesnumber 1 and 3 for the age groups 0 to 29 and 30 to 35,
    rates are different for ages 36 to 40. so it should not be placed together. How can I do this in SQL

    any help is appreciated.

    Thanks in advance.

    Hello

    Thorny problem!

    Unfortunately, LISTAGG was created to the Oracle 11.2. About half of the complexity here is the aggregation of chain, i.e. forming the list of the classnumbers, as '1.3', using only functions available in Oracle 10.2.

    Here's a solution:

    WITH     got_gpno_classnumber_cnt   AS
    (
         SELECT     gpno, classnumber, age_min, age_max, amount
         ,     COUNT (*) OVER ( PARTITION BY  gpno
                                      ,            classnumber
                          )   AS gpno_classnumber_cnt
         FROM    fortest
    --     WHERE     ...     -- If you need any filtering, this is where it goes
    )
    ,     pairs          AS
    (
         SELECT    a.gpno
         ,       a.classnumber
         ,       MIN (b.classnumber)
                    OVER ( PARTITION BY  a.gpno
                              ,                    a.classnumber
                      )     AS super_classnumber
         FROM       got_gpno_classnumber_cnt  a
         JOIN       got_gpno_classnumber_cnt  b  ON   a.gpno     = b.gpno
                                      AND  a.age_min     = b.age_min
                                    AND  a.age_max     = b.age_max
                                    AND  a.amount     = b.amount
                                    AND  a.gpno_classnumber_cnt
                                            = b.gpno_classnumber_cnt
         GROUP BY  a.gpno
         ,            a.classnumber
         ,       b.classnumber
         HAVING       COUNT (*)     = MIN (a.gpno_classnumber_cnt)
    )
    ,     got_rnk          AS
    (
         SELECT DISTINCT
                 gpno, classnumber, super_classnumber
         ,     DENSE_RANK () OVER ( PARTITION BY  gpno
                                   ,                    super_classnumber
                                   ORDER BY          classnumber
                           )         AS rnk
         FROM    pairs
    )
    ,     got_classnumbers     AS
    (
         SELECT     gpno, classnumber, super_classnumber
         ,      SUBSTR ( SYS_CONNECT_BY_PATH (classnumber, ',')
                       , 2
                     )     AS classnumbers
         FROM     got_rnk
         WHERE     CONNECT_BY_ISLEAF = 1
         START WITH     rnk             = 1
         CONNECT BY     rnk             = PRIOR rnk + 1
              AND     gpno             = PRIOR gpno
              AND     super_classnumber  = PRIOR super_classnumber
    )
    SELECT DISTINCT
           g.gpno
    ,       c.classnumbers
    ,       g.age_min
    ,       g.age_max
    ,       g.amount
    FROM       got_gpno_classnumber_cnt  g
    JOIN       got_classnumbers         c  ON   c.gpno        = g.gpno
                                 AND  c.classnumber  = g.classnumber
    ORDER BY  g.gpno
    ,            c.classnumbers
    ;
    

    Out (just as you requested):

    GPNO       CLASSNUMBERS       AGE_MIN    AGE_MAX     AMOUNT
    ---------- --------------- ---------- ---------- ----------
    G123       1,3                      0         29          1
    G123       1,3                     30         35          2
    G123       1,3                     36         40          3
    G123       2                        0         29          1
    G123       2                       30         35          2
    G123       2                       36         40          5
    G124       1                        0         29          1
    G124       1                       30         35          2
    G124       1                       36         40          3
    
  • How to group them by for a single column of OBIEE 11 g

    Hello

    I have a pivot table, where I dimensions such as Desc, date and columns 1 did. (OBIEE version 11117)

    I need the data to be included in the format, made wise date 2 months and total of the first made of the month

    January 1, 152 January 1531 January 15February 1, 152 February 1528 February 15
    up to the date ofIn total, Jan
    A36123456
    B917368163
    C918459153
    D1319586210

    When the Date parameter, Till Date = Jan 2nd, 15, (running report date parameter).

    I create the time dimension, where based there is if I take the year then it works but if I take months or a date, it does not work.

    [nQSError: 27037] Level pending: "D0 time." "" Time of H0. "" month_mon ". (HY000)

    Ask your Suggestions or help

    Total of jan can be derived as below

    case when 'D0 time. " "" date_day "BETWEEN TIMESTAMPADD (SQL_TSI_DAY, DAYOFMONTH (your_date}) *-(1) + 1, (your_date)) AND TIMESTAMPADD (SQL_TSI_DAY, TIMESTAMPADD (1), (SQL_TSI_MONTH, 1, TIMESTAMPADD (SQL_TSI_DAY, DAYOFMONTH (your_date) *-(1) + 1, (Your_date))) then 'Fact_value' end of another null)

  • How to remove 'memory extension monitor' JDev?

    Son of reference:

    Jdev 12.1.2 extremely slow when you type the code. CPU + 60%

    https://blogs.Oracle.com/Shay/entry/is_your_jdeveloper_slow_it_sho

    How to check and disable "memory monitor extension" for JDeveloper 12.1.2 as shown in the 2nd URL (#5 (tip)?

    I run into a similar problem (slow response when typing) and eliminated about everything I can think of except that.

    Yes, I uninstalled the program AV.  But the problem still exists.

    (I'll save the details for another post)

    Thank you

    MK

    See the help on the tab 'extensions' If you find the extension of memory monitor it. If you find you first disable the extension in the extensions menuOutils and then delete the file extension of your jdev installation jar file.

    Timo

  • How to group by field derived for the field value below?

    Hi all

    I class field with the name of CLASS_FLD data item, I want to group by on left(CLASS_FLD,2).

    How to write him group by for the left(class_FLD,2) of expression above?

    I used earlier messages based on the syntax below but I am unable to make the Group

    <? for-each - group: row; xdoxslt:left(./CLASS_FLD,2)? > <? type: xdoxslt:left (current-group () / CLASS_FLD, 2); ' ascending '; data-type = "text"? >

    Thank you and best regards,

    1157496 wrote:

    Give me the syntax for the first group of lines BY expression counts.

    and also how the syntax would be if he is Businessunit group then group by expression (left(account,2)

    Mean you nested groups, first group BUSINESSUNIT and then other group ACCOUNT

    If yes then the internal group based on the ACCOUNT, we could watch as below

    for-each - Group: Current - Group (); xdoxslt:Left(./Account,2)? >

    For example

    . . . .

  • How to install third-party extensions for cc 2015?

    My extensions Manager refuses to install Magic by Anastasiy's color. I had it in 2014 of CC, but despite the extension itself being compatible with CC 2015, the extensions Manager obviously isn't. I searched the forums, help, FAQ and no answers. How to install this extension without the extension manager?

    Thank you!

    What do you mean by 3rd party Lori?

    For our own site add-ons, you must use the application of CC desktop rather than the extensions Manager. For 3rd party extensions, you can use the CmdLineTool, explained here. : Adobe Exchange

  • Extensions for Adobe AE package?

    I have written an extension for Adobe AE CC CEP5 and want to distribute but the extensions Manager does not appear in support of AE. How should be done on the distribution of extensions for AE?

    Hi brendanT,

    You can sign your extension using the signature here:

    Download Extension Builder 3 - Adobe Labs

    ... and distribute manually, using your own installation program, or using Packager for creative.adobe.com/addons online.  For package manager online, here is a useful list of tokens of path:

    Chips of path

  • How can I propose extensions to Oracle SQL / Oracle DBMS?

    Hallo

    Is there a standard process to offer extensions to the Oracle database?

    I waited for some extensions for Oracle 8 I consider as very useful and quite easy to implement compared to others who have found their way into the product. I want to put them in some sort of base of the proposal. How can I do?

    These are the extensions:

    (1) comparison of Tuple according to the lexicographic order

    Imagine a table of SALES (product_id, year, quarter, amount).

    I like question all sales of the third quarter of 2008 to the second quarter of 2009 as this:
    select *
      from sales
     where (year, quarter) >= (2008, 3)
       and (year, quarter) <= (2009, 2)
    and even
    select *
      from sales
     where (year, quarter) between (2008, 3) and (2009, 2)
    Clues are lexicographically ordered, these conditions must be easily supported by the database. If there is an index on the SALES (year, quarter), it will be easy to make a simple index range scan here.

    Note that the notation of tuple is not completely new. I can write something like
    select *
      from sales
     where (year, quarter) in (select year, quarter from some_table)
    These days, you should not set a table in the way we did above. You must set a date column year_quarter and represent each quarter - Let's say - from his first day, which is the third quarter of 2008 by July 1, 2008.
    You might even guarantee this by a check constraint 'year_quarter = (year_quarter, 'q'). The above query must be written:
    select *
      from sales
     where year_quarter between date '2008-07-01' and date '2009-04-01'
    But it's still heavy.

    If you always set a table in the way that I did at the beginning, you will end up using index based on a function on phrases such as "year * 10 + quarter" in support of these "intuitive" such as queries
    select *
      from sales
     where year * 10 + quarter between 20083 and 20092
    But imagine you want in 2008 and all you have is this a function-based index:
    select *
      from sales
     where year = 2008
    The index based on a function on SALES (year * 10 + quarter) does not help. You can write:
    select *
      from sales
     where year * 10 + quarter between 20081 and 20084
    But it's not really practical.

    The extension project allows you to query both a given year (Beach) and a specific range of quarter, effectively using the same index defined on (year, quarter).


    (2) comparison operators that deal with NULL as a normal value

    If you need to compare two columns and treat NULL values as a normal value, you need to write something like "(t1.a = t2.a ou (t1.a est null et t2.a est null)"): "
    select *
      from tab1 t1
     where not exists (
             select *
               from tab2 t2
              where (t1.a = t2.a or (t1.a is null and t2.a is null)
                and (t1.b = t2.b or (t1.b is null and t2.b is null)
           )
    It would be much easier to read and certainly much easier to optimize by the optimizer if there is an equality operator 'is' which deals with NULL as a normal value.
    select *
      from tab1 t1
     where not exists (
             select *
               from tab2 t2
              where (t1.a == t2.a
                and (t1.b == t2.b
           )
    You can even ask the same idea to >, > =, <, < = and allow such tags only 'with null max"and" min null ":
    select *
      from tab
     where x <= 7000 with null min
       and y >= 10 with null max
    null <= null with null max --> true
    null <= 1 with null max --> false;
    1 <= null with null max --> true
    1 <= 2 with null max --> true
    (3) new aggregate function to indicate that one value is expected

    Imagine there is an aggregate function called unique (...) which takes all values and checks if they are identical. If so, this single value is returned. Otherwise, an exception SQL ORA-# is raised.

    When you use the group by clauses and functionally dependent columns, you write queries as follows.
    Imagine that you have a CONTRACT table (contract_id, contract_owner_id,...) and a CONTRACT_DETAIL table (contract_detail_id, contract_id,...).
    You want to select all contracts and for each contract its owner and the number of the contract details. With 'unique', you can write:
    select c.contract_id
         , unique(c.contract_owner_id)
         , count(*) detail_cnt
      from contract c, contract_detail cd
     where c.contract_id = cd.contract_id
     group by c.contract_id
    Today, I write either
    select c.contract_id
         , max(c.contract_owner_id) -- functionally dependant on c.contract_id
         , count(*) detail_cnt
      from contract c, contract_detail cd
     where c.contract_id = cd.contract_id
     group by c.contract_id
    or
    select c.contract_id, c.contract_owner_id, count(*) detail_cnt
      from contract c, contract_detail cd
     where c.contract_id = cd.contract_id
     group by c.contract_id
            , c.contract_owner_id -- functionally dependant on c.contract_id
    Both have drawback that I need to use a comment to describe what is happening. And worse, if my assumption was wrong, the database fails with an error and doesn't force me to rethink things.

    Another use of unique (...) is in combination with analytical functions.
    For example, when I use «aggr (...)» keep (dense_rank first/last seen by...) ", in most cases, the order by clause defines a unique first or last line."
    In these cases, the aggregate function "aggr (...)" is of no real use.

    Imagine a time-stamped time table PROJECT_STATUS with the 'no temporal primary key' project and the TS timestamp column.
    Technically, (project, ts) is a unique key of the table. So, there is always only one line with the maximum timestamp TS.
    I want to choose the status ID of all projects. I can write:
    select ps.project_id
         , max(status) keep (
            dense_rank last order by  ts
           ) as status
      from project_status ps
      group by ps.project_id
    I can use 'min' instead of 'max' with the same result. Using 'unique' instead not wrongly suggests that a maximum or minimum is selected but would be only a mathematical expectation is chosen has established:
    select ps.project_id
         , unique(status) keep (
            dense_rank last order by  ts
           ) as status
      from project_status ps
      group by ps.project_id
    We have two variants of "unique":

    (1) normal 'single (x)' treats NULL as a value. Thus, it would be illegal if there were a few lines with x = NULL and a few lines with x = 5.

    (2) "single (x ignores nulls)" ignores all values null (similar to "last_value(... ignore nulls) (...)") and is less strict because x must be unique for all non-null values. He allows that x has the value NULL for some lines and 5 for the other. In this case, it returns 5.

    You open a session request for improvement through Metalink.

    The procedure is documented in Metalink document 166650.1 as follows:

    How to connect to an enhancement request:

    Create a new Service request in MetaLink.
    In creating an SR - brief Description screen, in the problem field Type, select request for development.
    Important factors to remember when to complete the Service request model requires development and create demand for services:
    Fully describe why the current functionality of product does not satisfy your needs.
    Explain in detail building wanted implemented
    If possible, describe how the product can be changed to achieve the desired results.
    Describe your expectations of the company. The dates of the step key and justifications as to why this request is so important and the benefits that your organization has everything to gain if it takes will be accepted.
    Once your Service request has been created, it will be assigned to a Support engineer who will validate your information. In some cases, your application may be a defect in the product new or known that the technical support engineer may provide a fix, workaround, or adopt Oracle development for resolution. In other cases, you can present a valuable product enhancement that can improve the functionality of the Oracle product. In all cases, the Support Engineer will be able to qualify your application and pass the information to the development of the Oracle.
    Once the technical support engineer validates your request and agreement on action plan is created, your Support Engineer will create a new development application and you provide with a request to improve tracking number. The research on MetaLink BUG tool then receive updates status.
    Please note that the technical support engineer will end the SR once the improvement was noted.

    In addition, see the document 214168.1

  • Can I set up a "permanent group" in contacts for SMS group or by e-mail?

    Can I set up a "permanent group" in contacts for SMS group or by e-mail?

    We need a lot more information to give you special help. Tell us step by step in detail what your actions are.

    Tell us a story

    -with a beginning, middle and end. We need to figure out what you know and that you have lived.

    If this problem is new, tell us what immediately preceded its appearance - add software, upgrade or update? New equipment?

    Quoted by of Apple  'how to write a good question.

    To help other members in answering your question, give as much detail as possible.

    • Include your name (peripheral) product and specifications such as the speed of the processor, memory and storage capacity. Please do not include your serial number, IMEI, MEID or any other personal information.
    • Provide the version of your operating system and the relevant applications numbers, e.g. "OS X 10.4.11" or "Safari 4.1.3.
    • Describe the problem and include all the Details on what seems to make it.
    • The list of troubleshooting steps you have already tried, or temporary corrections that you discovered.

    For a detailed 'coaching', please see usage tips , help us help you on these forums and wrote an effective communities of Apple Support question

    "Keep it short and Simple"-take your time... but be thorough - CCC

  • WHEN YOU USE THE CONSTRUCTOR OF MY SITE, I CAN'T COPY AND PASTE WROTE THE BROWSER SECURITY SETTINGS HOW TO NOT CHANGE THESE FOR ME TO COPY / PASTE?

    WHEN YOU USE THE CONSTRUCTOR OF MY SITE, I CAN'T COPY AND PASTE WROTE THE BROWSER SECURITY SETTINGS HOW TO NOT CHANGE THESE FOR ME TO COPY / PASTE?

    https://support.Mozilla.com/en-us/KB/granting+JavaScript+access+to+the+Clipboard

    This extension will help you implement the security policies for access to the Clipboard.

    Allow the extended Clipboard support:

    https://addons.Mozilla.org/en-us/Firefox/addon/852

  • How can I find extention for outlook Express

    How can I find extention for Outlook Express

    Thank you

    God bless you

    taddydad

    You should know what type of program is supposed to be used to open this file - and this program must be installed on your computer.

    What kind of file is it?  What is the file extension (3 or 4 characters after the point)?

    If you know what type of program is needed and you already have this program installed, the best way to create the association is

    • find a file with the extension in question
    • Right click on it
    • Select "open with > choose program.
    • Select the correct application of the list
    • Check the box "always use the program selected to open this type of file"
    • Click OK.

    If the program you need is not in the list, click on the "Browse" button and locate the program exe file in C:\Program Files.

  • I found a cd of OS Windows XP in the House who said for distribution only with a new hp or compaq pc, is it legal to install this on my pc tailor-made with a new product key?

    The Windows XP operating system disk

    I found a cd of OS Windows XP in the House who said for distribution only with a new hp or compaq pc, is it legal to install this on my pc tailor-made with a new product key?

    I found a cd of OS Windows XP in the House who said for distribution only with a new hp or compaq pc, is it legal to install this on my pc tailor-made with a new product key?

    No, it is an OEM drive and only good for the computer, it came with.

    If you have a valid license of retail XP but no installation disc:

    How to replace Microsoft software

    http://support.Microsoft.com/default.aspx/KB/326246

  • Where is the screen of the new group of Contacts for use in Windows Mail?

    I have Windows Vista Home Premium and "Contacts" do not provide a heading for 'Contact group'. How can I set up a new group of Contacts for the group released in Windows Mail email?

    Hello

    This Information should help you solve your problem.

    "How to restore the missing 'new Contact' and the 'New Contact Group' button in Vista Contacts folder"

    http://www.Vistax64.com/tutorials/186477-new-contact-new-contact-group-button-missing.html

    'Lack of buttons of the Windows Contacts toolbar?'

    http://www.vista4beginners.com/missing-buttons-from-Windows-contacts-toolbar

    See you soon.

Maybe you are looking for