not a single group function

Hello


I have this request with me
select  
mst.ENTRY_DATE    ordered_date , mst.FIELD, 
V.ADDRESS1        Address   , 
OPN_JOB_DESC      job_number,
ra.CUSTOMER_NAME    customer_NAME, 
DECODE ( GROSS_ITEM_REF , NULL , SUBSTR (PRODUCT_ATTR_VAL_DISP , INSTR( PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ) , GROSS_ITEM_REF )      item_number, 
dECODE (GROSS_ITEM_NAME , NULL,itm.attribute2,GROSS_ITEM_NAME  )        item_description, 
subdtlest.ITEM_UOM                unit_of_measurement, 
SUM ( subdtlest.QTY_ISSUE  )            Quantity_Issue,
sum(nvl (subdtlest.CALC_CEMENT_SK ,subdtlest.CALC_AMOUNT ) )    quantity ,
mst.DN_DESCRIPTION   Description
--decode(MST.DESCRIPTION ,NULL ,mst.DN_DESCRIPTION,MST.DESCRIPTION) Description
 from 
   XXNP_OPN_JOBLOG_001          mst , 
   XXNP_OPN_JOBLOG_STAGE_002   dtl , 
   XXNP_OPN_JOBLOG_SLURRY_003  subdtl ,
   XXNP_OPN_JOBLOG_EST_002     subdtlest,
   qp_list_lines_v            line  ,
   QP_LIST_HEADERS_TL          head  ,
   QP_LIST_HEADERS_B           curr,   
   ra_customers ra ,
   AR_ADDRESSES_V v ,
   MTL_SYSTEM_ITEMS itm  
   where   
dtl.OPN_JOBLOG_001_ID                        = mst.OPN_JOBLOG_001_ID         AND 
subdtl.OPN_JOBLOG_001_ID                = dtl.OPN_JOBLOG_001_ID          AND
subdtl.OPN_JOBLOG_006_ID                  = dtl.OPN_JOBLOG_006_ID         and  
subdtlest.OPN_JOBLOG_001_ID           = subdtl.OPN_JOBLOG_001_ID       AND
subdtlest.OPN_JOBLOG_006_ID         = subdtl.OPN_JOBLOG_006_ID      AND
subdtlest.OPN_JOBLOG_007_ID         = subdtl.OPN_JOBLOG_007_ID      AND
line.LIST_HEADER_ID          =       head.LIST_HEADER_ID                          and  
curr.LIST_HEADER_ID              =   head.LIST_HEADER_ID                        and  
substr ( PRODUCT_ATTR_VAL_DISP , 1, instr ( PRODUCT_ATTR_VAL_DISP ,'.' )-1 )  = subdtlest.ITEM_NUMBER
and   itm.SEGMENT3 = substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ) 
and   mst.CONTRACT                       =  head.name   
and   RA.CUSTOMER_ID = v.CUSTOMER_ID
and   ra.customer_id = mst.customer_id
and   V.ADDRESS1 =  mst.CONTRACT      
and mst.OPN_JOB_DESC='K/D/UP24/UN006/KOP/PL/0112/1'
and itm.ORGANIZATION_ID  =103
and itm.INVENTORY_ITEM_STATUS_CODE = 'Active'
group by 
mst.ENTRY_DATE ,  
V.ADDRESS1     , 
OPN_JOB_DESC   ,mst.FIELD,
ra.CUSTOMER_NAME , 
substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ), 
itm.ATTRIBUTE2        , 
subdtlest.ITEM_UOM ,
mst.DN_DESCRIPTION  ,GROSS_ITEM_REF ,GROSS_ITEM_NAME
order by  substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  )   Asc

i require  a field called balance which is sum of Quantity_issue and Quantity fields
i tried this

select  
mst.ENTRY_DATE    ordered_date , mst.FIELD, 
V.ADDRESS1        Address   , 
OPN_JOB_DESC      job_number,
ra.CUSTOMER_NAME    customer_NAME, 
DECODE ( GROSS_ITEM_REF , NULL , SUBSTR (PRODUCT_ATTR_VAL_DISP , INSTR( PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ) , GROSS_ITEM_REF )      item_number, 
dECODE (GROSS_ITEM_NAME , NULL,itm.attribute2,GROSS_ITEM_NAME  )        item_description, 
subdtlest.ITEM_UOM                unit_of_measurement, 
SUM ( subdtlest.QTY_ISSUE  )            Quantity_Issue,
sum(nvl (subdtlest.CALC_CEMENT_SK ,subdtlest.CALC_AMOUNT ) )    quantity ,
sum(sum(nvl (subdtlest.CALC_CEMENT_SK ,subdtlest.CALC_AMOUNT ) ) + SUM ( subdtlest.QTY_ISSUE  )  )balance,
mst.DN_DESCRIPTION   Description
--decode(MST.DESCRIPTION ,NULL ,mst.DN_DESCRIPTION,MST.DESCRIPTION) Description
 from 
   XXNP_OPN_JOBLOG_001          mst , 
   XXNP_OPN_JOBLOG_STAGE_002   dtl , 
   XXNP_OPN_JOBLOG_SLURRY_003  subdtl ,
   XXNP_OPN_JOBLOG_EST_002     subdtlest,
   qp_list_lines_v            line  ,
   QP_LIST_HEADERS_TL          head  ,
   QP_LIST_HEADERS_B           curr,   
   ra_customers ra ,
   AR_ADDRESSES_V v ,
   MTL_SYSTEM_ITEMS itm  
   where   
dtl.OPN_JOBLOG_001_ID                        = mst.OPN_JOBLOG_001_ID         AND 
subdtl.OPN_JOBLOG_001_ID                = dtl.OPN_JOBLOG_001_ID          AND
subdtl.OPN_JOBLOG_006_ID                  = dtl.OPN_JOBLOG_006_ID         and  
subdtlest.OPN_JOBLOG_001_ID           = subdtl.OPN_JOBLOG_001_ID       AND
subdtlest.OPN_JOBLOG_006_ID         = subdtl.OPN_JOBLOG_006_ID      AND
subdtlest.OPN_JOBLOG_007_ID         = subdtl.OPN_JOBLOG_007_ID      AND
line.LIST_HEADER_ID          =       head.LIST_HEADER_ID                          and  
curr.LIST_HEADER_ID              =   head.LIST_HEADER_ID                        and  
substr ( PRODUCT_ATTR_VAL_DISP , 1, instr ( PRODUCT_ATTR_VAL_DISP ,'.' )-1 )  = subdtlest.ITEM_NUMBER
and   itm.SEGMENT3 = substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ) 
and   mst.CONTRACT                       =  head.name   
and   RA.CUSTOMER_ID = v.CUSTOMER_ID
and   ra.customer_id = mst.customer_id
and   V.ADDRESS1 =  mst.CONTRACT      
--and   OPN_JOB_DESC = :P_JOB_NUMBER
and itm.ORGANIZATION_ID  =103
and itm.INVENTORY_ITEM_STATUS_CODE = 'Active'
and mst.OPN_JOB_DESC='K/D/UP24/UN006/KOP/PL/0112/1'
group by 
mst.ENTRY_DATE ,  
V.ADDRESS1     , 
OPN_JOB_DESC   ,mst.FIELD,
ra.CUSTOMER_NAME , 
substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  ), 
itm.ATTRIBUTE2        , 
subdtlest.ITEM_UOM ,
subdtlest.CALC_CEMENT_SK ,subdtlest.CALC_AMOUNT, subdtlest.QTY_ISSUE ,
mst.DN_DESCRIPTION  ,GROSS_ITEM_REF ,GROSS_ITEM_NAME
order by  substr ( PRODUCT_ATTR_VAL_DISP , INSTR(PRODUCT_ATTR_VAL_DISP, '.', -1, 1) + 1  )   Asc

but i get the cursor pointing to mst.entry_date and the message "not a single group function"

kindly guide me
thanking in advance

Tags: Database

Similar Questions

  • Not a "simple-group function.

    SQL > select max(THREAD#), SEQUENCE #, NAME from v$ archived_log;

    Select max(THREAD#), SEQUENCE #, NAME from v$ archived_log

    *

    ERROR on line 1:

    ORA-00937: not a single group group function

    Often, I face "not a single-group function. I tried with the order by clause, also,

    -Please clarify why this error occurs?

    Hello

    You must use Group by clause in your query when you use the Group feature as count, sum, max in query

    Select max(THREAD#), SEQUENCE #, NAME of Group v$ archived_log by SEQUENCE #, NAME;

    Thank you

    Su.GI

  • ORA-00937: not a single group group function

    Hello world

    I got an error above with followingcode... Please help me

    SELECT

    ROW_NUMBER() OVER (PARTITION OF LANEDIRECTION, ORDER BY TIMEID COSIT) AS RN, DAYASNUMBER,.

    (to_date (timeid, 'YYYYMMDD hh24miss')) as cte.

    drive ((to_date (timeid, 'AAAAMMJJ hh24miss')), 1) on next_start_date (partition by order lanedirection (to_date (timeid, 'YYYYMMDD hh24miss')));

    VOLUME, (LEAD

    volume)

    DURING)

    PARTITION BY dayasnumber, link_id

    ORDER BY

    DayAsNumber, link_id, (to_date (timeid, 'YYYYMMDD hh24miss'))) as next_volume,

    Lag)

    volume)

    DURING)

    PARTITION BY dayasnumber, link_id

    ORDER BY

    DayAsNumber, link_id, (to_date (timeid, 'YYYYMMDD hh24miss'))) as prior_volume,

    COSIT,

    LANEDIRECTION, AVGSPEED,

    LINK_ID,

    TO_CHAR ((to_date (timeid, 'YYYYMMDD hh24miss')), "hh24") that the hours,

    12 AS EXPECTED_COUNT,

    COUNT (TO_NUMBER (SUBSTR (TO_CHAR (timeid), 9, 2))) AS ACTUAL_COUNT,

    CASE

    WHEN COUNTY (TO_NUMBER (SUBSTR (TO_CHAR (timeid), 9, 2))) = 12

    THEN

    « N »

    WHEN COUNTY (TO_NUMBER (SUBSTR (TO_CHAR (timeid), 9, 2))) = 11

    THEN

    'I '.

    WHEN COUNTY (TO_NUMBER (SUBSTR (TO_CHAR (timeid), 9, 2))) < 6

    THEN

    « C »

    ON THE OTHER

    ' O '

    END

    AS PATCHED

    FROM (select DAYASNUMBER,

    TimeID, COSIT,

    LANEDIRECTION, VOLUME, AVGSPEED,

    LINK_ID

    OF C2_DATA_MIN where <>volume 0

    DAYASNUMBER GROUP,

    COSIT,

    TimeID,

    LANEDIRECTION, VOLUME, AVGSPEED,

    LINK_ID);

    Thanks in advance

    You have an aggregate count that needs a group by clause, you may need to use over().

    Also, what type of data is timeid? If it is a DATE, you should not use to_date on it. If it is of type VARCHAR,

    You should not use to_char on it. Do you both, so let's not.

    If it's a DATE, never use to_char with a format mask.

  • Help with error - 934 group function is not allowed here

    Hey there will, I'm having problems with a request and just does not know how to do it without error.

    I'm trying to get all the employee emerging infectious diseases that have less than 2 number max of DID (dependants) in the table.

    It's my current query

    SELECT Employee.LName. ' ' || Employee.Fname as Full_Name, Employee.EID

    The left outer JOIN employee depends on Employee.EID = Dependent.EID

    Having Count (DID)--2 > ((select Max (N) as From (SELECT Employee.EID, Count (DID) As N FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID, Count (DID))) N)

    Order of Employee.Lname, Employee.Fname

    Which gives me an error on column 4, no matter what I do. If I remove the Count (DID) in the group by clause (which I tried it earlier), it gives me a is not an error of the function of single group...

    The most frustrating thing is that

    Select Max (N) as From (SELECT Employee.EID, Count (DID) As N FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID) N

    Works perfectly, but because it's a mission, I have to do in one step (no substeps/views)

    Any help?

    Thank you very much

    Hello

    ac981e5d-D10A-4520-BF42-23a894d04fb7 wrote:

    Ok. I'm taking your code in a view... I get this.

    and there is an orange underscore and a text of the error that says

    Select incoherent list in group by... change the group by clause of e.fname, e.lname, e.eid, count, max

    Which isn't what either the Oracle database would do.  Everything about orange (or any other color) sounds like it is caused by a front-end that could be interacting with Oracle.  In addition, the Oracle error messages always come with a 3-letter-5 code, as ORA-00933.

    under the selection internal (first medium)

    You have deleted the WITH clause.  The parser can recognize the error when it has reached the first left parenthesis.

    Create view AS A10T2

    (

    SELECT e.lname. ' ' || e.fname AS full_name

    e.eid

    (D.) AS this_group_count

    MAX (COUNT (d.)) ON (AS highest_group_count)

    E employee

    LEFT OUTER JOIN dependent d ON e.eid = d.eid

    GROUP BY e.lname, e.fname, e.eid

    )

    SELECT full_name

    eid

    Of aggregate_results

    WHERE this_group_count > = highest_group_count - 2

    ORDER BY full_name

    You need the WITH to define this clause means "AGGREGATE_RESULTS":

    Create view AS A10T2

    WITH aggregate_results AS

    (

    SELECT e.lname. ' ' || e.fname AS full_name

    ...

    Why do you have an ORDER BY clause in a view?   (It is probably not cause of your errors, just make the inefficient view)

    Command line error: column 5: 23

    Error report-

    SQL error: ORA-00933: SQL not correctly completed command

    00933 00000 - "not correctly completed SQL command.

    * Cause:

    * Action:

    This is another indication that some front is getting involved.  Looks like your front-end reports the exact Oracle error message, "0RA-00933" and then builing it's own error code, "00933. 00000 ", on this basis.  ORA-00933 is a reasonable mistake to wait if you omit the line ' WITH the aggregated results AS.  Once again, until I can actually run your code, I can't test it, and I can't run your code until you post CREATE TABLE and INSERT statements for some examples of data, or change the problem to use commonly available tables, such as those in the scott schema.

    and when I try my code

    CREATE VIEW A10T2 AS

    SELECT Employee.LName. ' ' || Employee.Fname as Full_Name, Employee.EID

    The left outer JOIN employee depends on Employee.EID = Dependent.EID

    Seen (Count (DID)) + 2 > (select Max (N) From (SELECT Employee.EID, Count (DID) As "N" FROM Employee Inner Join Dependent On Employee.EID = Dependent.EID group by Employee.EID))

    Order of Employee.Lname, Employee.Fname

    I get

    Command line error: column 2: 8

    Error report-

    SQL error: ORA-00937: not a function of simple-group

    00937 00000 - 'not a single-group function.

    * Cause:

    * Action:

    Then the orange underscore even under my inner ("select employee. EID, Count (DID) as "N" ") says to change the Group of Employee.eid, Count (DID)

    I just don't understand why he tells me to group them by Count (DID)?

    Isn't that what you did in your original post, and I have explained in answer #2?  If you continue to repeat the same mistake, you can expect continue to get the same error.  Given that you have a code, you know causes an error, do you think really that what makes a vision will cause the error to disappear?

    The inner query works fine on its own...

    Right; It's the outer query where you are missing the GROUP BY clause.

  • No group functionality

    Since around seven 30 - Oct 1st or so I was unable to use all group functions in any group. 'Old' and those that I just created. I can't send or receive calls or messages in any group. I tried these steps below, and none of them worked. Help?

    (1) sign out and back in

    (2) change of profile information

    (3) update the customer on the later (7.11.0.102)

    (4) to uninstall and reinstall Skype

    (5) clean uninstall and reinstall of Skype

    (6) signature mobile to see if that will fix anything on the end of my PC

    Mobile works very well, however my PC version does not. It worked very well in advance and then just suddenly stopped working for groups. Update the client did nothing. However, I can / message of appeal to people individually. I don't understand. I thought it was the linked server, but my friends have not had any problems...

    Skype is based on some Windows Services work properly, or something?

    I'm under 10 Home Windows (64-bit).

    Welp, after scouring the net I found the problem. It turns out that my situation was the same as this post here.

    http://community.Skype.com/T5/Windows-desktop-client/re-Skype-connection-problems-MSNP-connection-of...

  • When I opened the window "save the Page under", the drop-down box file name indicates the files that have been saved a long time ago. It is not cleared by a function 'clear history' that I can find. How can I erase this?

    1. Question

    When I opened the window "save the Page under", the drop-down box file name indicates the files that have been saved a long time ago. It is not cleared by a function 'clear history' that I can find. How can I erase this?

    Hello.

    I think this is a related issue of Windows, because it is the Manager to save the windows file that we are talking about here (right?). You should contact Microsoft for help with this one, I think. You expect to be able to delete entries simply by touching delete on your keyboard when they are concentrated (that is how it goes for the removal of the form entries specific autocomplete in Firefox), but I have not tried.

    I'm sorry I can't be more helpful.

  • A way to group controls and indicators on the Front Panel and that they can be made Visible or not as a group?

    I would like to combine several orders and LEDs on the front panel in a group in a way that allows me to do the whole group Visible or not.

    I tried to use a Cluster, but it has a side effect that all elements must be inside the controls or indicators, but not mixed.

    Is there any graphic element, like a panel that can contain other controls and indicators on the inside and make them Visible or not as a group regardless of whether they are commands or the LEDs?

    Good suggestions on how to do this?

    Thank you.

    The tab control is still not my favorite, appearance but it's a way fast and effective to show and hide groups of controls and indicators.

  • Of image processing and machine vision do not appear in the function Palette

    Hello

    I have the problem and I can't solve

    Of image processing and machine vision do not appear in the function Palette, although I have implemented NEITHER imaq and NI Vision Acquisition why?

    Can someone help me?

    Vision Development module is the package that contains the entire library of Vision.

    http://www.NI.com/LabVIEW/vision/

  • Msgrocm.dll Setup library could not be loaded, or function OcEntry could not be found. Please notify

    I seem to have a problem with getting to the section Adding Windows /Remove. components Whenever I try to click on windows control panel Add/Remove programs/add components configuration, the following message appears; Msgrocm.dll Setup library could not be loaded, or function OcEntry could not be found. Please notify

    Hi jaderob,

    Follow the steps and check the results below:

    a. Click Start, point to control panel and then click System.

    (b) in the Advanced tab, click Environment Variables.

    c. under System Variables, click path, and then click on edit.

    d. click in the Variable value box, and then press END to move the insertion point at the end of the Variable value box.

    e. Type; % SYSTEMROOT%\SYSTEM32\WBEM, and then click OK.

    f. click OK and then click OK.

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • DRIVER FOR VISTA OR DELL 1600N MFP PRINTER NOT TO "DRIVE" THE FUNCTIONS.

    DRIVER FOR VISTA FOR DELL 1600N MFP PRINTER NOT TO "DRIVE" THE FUNCTIONS. MORE SPECIFICALLY: 1) I CAN'T SCAN; 2.) I CAN'T REDUCE THE SIZE OF THE PAGE WHEN I PRINT. (3.) I CAN NOT SEND FAX.

    I INSTALLED THE RECOMMENDED DRIVE, BUT IT DOES NOT WORK. MY GUESS IS THAT I NEED TO UPGRADE VISTA TO A SUPERIOR VERSION OR A DOWNGRADE TO XP (WHICH THIS PRINTER WAS WORKING WELL ON).

    http://www.google.com.au/search?hl=en&source=HP&q=Dell+Support&Meta=&aq=f&aqi=G10&AQL=&OQ=&gs_rfai=

    Dell drivers and downloads.

    http://support.Dell.com/support/topics/global.aspx/support/DellCare/contact_technical_support

    Contact Dell printer drivers re OK.

    See you soon.

    Mick Murphy - Microsoft partner

  • TMSPE Migration fails - could not create the Group

    Hello

    The performance of the Migration tool after installation TMSPE, I get 1 error warning and 1. From downstairs, it seems that {soul} is the problem here, but where can I change it with the recommended replacements? I see not {soul} anywhere in the model FindMe Provisioning or anywhere elsewhere in the TMS...

    CAUTION:

    Caller id model invalid for mycompany group could not migrated: [email protected] / * /. Legal replacement values are {mobile_phone} and {office_phone}.

    ERROR:

    Could not create the group for {display_name = [mycompany], display_name_pattern is [{display_name}], video_uri_pattern_inherited = [false], video_uri_pattern is [[email protected] / * /], device_uri_pattern = [[email protected] / * /], device_uri_pattern_inherited = [false]} URL: / groups the exception returned by the API was the argument

    [email protected] / * /.

    is the invalid state: Code of state InvalidArgument: 1005.

    The exception message is: POST

    http://localhost:8788/ur/groups returned a 400 Bad Request response status

    Could not create the group for {display_name = [mycompany], display_name_pattern is [{display_name}], video_uri_pattern_inherited = [false], video_uri_pattern is [[email protected] / * /], device_uri_pattern = [[email protected] / * /], device_uri_pattern_inherited = [false]} URL: / groups the exception returned by the API was the argument

    [email protected] / * / is the invalid state: Code of state InvalidArgument: 1005.

    The exception message is: POST

    http://localhost:8788/ur/groups returned a 400 Bad Request response status

    Anyone can shed some light on this?

    Thank you

    Tom

    You can try to remove the device uri scheme and the findme bosses and then try to make the migration again. If its success, you can re - fill these easy once tmspe is running.

    / Magnus

    Sent by Cisco Support technique iPhone App

  • I installed lightroom 6.2 but I do not see the new functionality "dehaze".

    I installed lightroom 6.2 but I do not see the new functionality "dehaze".

    Dehaze is not available in Lightroom 6.2.

    It is only available in Lightroom 2015.1 CC and later versions.

  • Where can I find the 2 stucco that comes with photoshop, is not in the group. Co

    Where can I find the 2 stucco that comes with photoshop, is not in the group. Co

    Hello

    The model of stucco 2 should be in patterns of Texture Fill 2 .

  • Query that does not work inside the function

    So I have this movement script that I copied from Cs6 as «Copying the movement in AS3» It works fine until I tried to control it with a function of mouse event. So what don't understand me? It works very well outside the function but not at all backwards.


    Import fl.motion.AnimatorFactory;

    Import fl.motion.MotionBase;

    Import fl.motion.Motion;

    flash.filters import. *;

    to import flash.geom.Point;

    var __motion_NewBall_7: MotionBase;

    theButton.addEventListener (MouseEvent.CLICK, on_press1);

    function on_press1(event: MouseEvent): void {}

    If (__motion_NewBall_7 == null) {}

    __motion_NewBall_7 = new Motion();

    __motion_NewBall_7.duration = 60;

    __motion_NewBall_7.addPropertyArray ("x", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-4.02143,-8.04286,-12.0603,-16.0857,-20.1071,-24.1246,-28.15,-35.6987,-43.2474,-50.7885,-58.3447,-65.8934,-73.4346,-80.9832,-88.5395,-96.0882,-103.637,-111.186,-118.727,-126.283,-133.824,-141.38,-148.929,-156.478,-164.026,-171.575,-179.124,-186.672,-194.221,-201.77,-209.311,-216.867,-224.416,-231.957,-239.506,-247.062,-254.611,-262.152,-269.708,-277.257,-284.805 -292.346 ([, - 299.903, - 307.451,-315]);

    __motion_NewBall_7.addPropertyArray ("y", [0, 9.41071, 18.8214, 28.2227, 37.6429, 47.0536, 56.4549, 65.875, 75.2857, 84.6964, 94.1071, 103.518, 112.919, 122.339, 131.75, 124.157, 116.564, 108.979, 101.379, 93.7857, 86.2004, 78.6, 84.0237, 89.4474, 94.8656, 100.295, 105.718, 111.137, 116.56, 121.989, 127.413, 132.837, 138.261, 143.679, 149.108, 154.526, 159.955, 165.379, 170.803, 176.226, 181.65, 187.074, 192.497, 197.921, 203.345, 208.763, 214.192, 219.616, 225.034, 230.458, 235.887, 241.311, 246.729, 252.158, 257.582, 263.005 268.424]) 273.853, 279.276, 284,7]);

    __motion_NewBall_7.addPropertyArray ("scaleX", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("scaleY", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("Scewx", [0]);

    __motion_NewBall_7.addPropertyArray ("transformations", [0]);

    __motion_NewBall_7.addPropertyArray ("rotationConcat", [0]);

    __motion_NewBall_7.addPropertyArray ("blendMode", "normal");

    __motion_NewBall_7.addPropertyArray ("cacheAsBitmap", [false]);

    __motion_NewBall_7.addPropertyArray ("opaqueBackground", [null]);

    __motion_NewBall_7.addPropertyArray ('visible', [true]);

    var __animFactory_NewBall_7: AnimatorFactory = new AnimatorFactory (__motion_NewBall_7);

    __animFactory_NewBall_7.transformationPoint = new Point (0.500000, 0.500000);

    __animFactory_NewBall_7.addTarget (myClip, 0);

    }

    }

    use:

    Import fl.motion.AnimatorFactory;

    Import fl.motion.MotionBase;

    Import fl.motion.Motion;

    flash.filters import. *;

    to import flash.geom.Point;

    theButton.addEventListener (MouseEvent.CLICK, on_press1);

    var __motion_NewBall_7: MotionBase;

    var __animFactory_NewBall_7: AnimatorFactory; //<-just the="" declaration="" was="" to="" be="" moved. ="" not="" the="">

    function on_press1(event: MouseEvent): void {}

    If (__motion_NewBall_7 == null) {}

    __motion_NewBall_7 = new Motion();

    __motion_NewBall_7.duration = 60;

    __motion_NewBall_7.addPropertyArray ("x", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-4.02143,-8.04286,-12.0603,-16.0857,-20.1071,-24.1246,-28.15,-35.6987,-43.2474,-50.7885,-58.3447,-65.8934,-73.4346,-80.9832,-88.5395,-96.0882,-103.637,-111.186,-118.727,-126.283,-133.824,-141.38,-148.929,-156.478,-164.026,-171.575,-179.124,-186.672,-194.221,-201.77,-209.311,-216.867,-224.416,-231.957,-239.506,-247.062,-254.611,-262.152,-269.708,-277.257,-284.805 -292.346 ([, - 299.903, - 307.451,-315]);

    __motion_NewBall_7.addPropertyArray ("y", [0, 9.41071, 18.8214, 28.2227, 37.6429, 47.0536, 56.4549, 65.875, 75.2857, 84.6964, 94.1071, 103.518, 112.919, 122.339, 131.75, 124.157, 116.564, 108.979, 101.379, 93.7857, 86.2004, 78.6, 84.0237, 89.4474, 94.8656, 100.295, 105.718, 111.137, 116.56, 121.989, 127.413, 132.837, 138.261, 143.679, 149.108, 154.526, 159.955, 165.379, 170.803, 176.226, 181.65, 187.074, 192.497, 197.921, 203.345, 208.763, 214.192, 219.616, 225.034, 230.458, 235.887, 241.311, 246.729, 252.158, 257.582, 263.005 268.424]) 273.853, 279.276, 284,7]);

    __motion_NewBall_7.addPropertyArray ("scaleX", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("scaleY", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("Scewx", [0]);

    __motion_NewBall_7.addPropertyArray ("transformations", [0]);

    __motion_NewBall_7.addPropertyArray ("rotationConcat", [0]);

    __motion_NewBall_7.addPropertyArray ("blendMode", "normal");

    __motion_NewBall_7.addPropertyArray ("cacheAsBitmap", [false]);

    __motion_NewBall_7.addPropertyArray ("opaqueBackground", [null]);

    __motion_NewBall_7.addPropertyArray ('visible', [true]);

    __animFactory_NewBall_7 = new AnimatorFactory (__motion_NewBall_7); Set after the motion, _motion_NewBall_7 exists

    __animFactory_NewBall_7.transformationPoint = new Point (0.500000, 0.500000);

    __animFactory_NewBall_7.addTarget (myClip, 1);

    }

    }

  • Add a view to a single application or a single group

    Hello

    I am currently trying to integrate our existing monitoring applications "home made" at Headquarters.
    These applications, several in fact, JSPs call WebServices and verify the results = > sort of high-level JUnit.

    Our idea is to integrate these applications into HQ with HQU Plugins like the plugin of health HQ.

    Is it possible to add a view for a single application or a single group?

    Resource attach seeems points to work for the platform and server but fails for the Group and demand.

    Thanks for your help
    Nicolas.

    You can certainly control the display of the view for the applications,
    groups, or even resources.  See the live_exec for a plugin
    example of this.  It shows only for groups which have platforms.
    See live_exec / Plugin.groovy attachmentIsShown() method.

    Charles

Maybe you are looking for