Need help on the use of Partition for a SELECT statement

-Hello everyone,
-This my request. I'm a junior developer of the APEX.
-database version is 11g version 4.0 apex
DEFINE startmonth = "Aug 2012";
DEFINE endmonth   = "Oct 2012";
WITH  all_months  AS
(
   SELECT ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM-1) AS which_month
   ,      ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM  ) AS next_month
   from all_objects
   where
   rownum <= months_between(to_date('&endmonth','MON YYYY'), add_months(to_date('&startmonth','MON YYYY'), -1))
)
,
lt_event_type_a AS
( select event_type, active, e_id 
  from lt_event_type
  where active = 1
)
,
engagement_event_a as
(SELECT * FROM engagement_event
 where active =1
 )

select lt_ev.event_type,TO_CHAR (am.which_month, 'Mon YYYY')  AS month, count(ce.engagement_id) as monthly_events_per_event_type
  from lt_event_type_a lt_ev
  
  left join engagement_event_a ev  on
    lt_ev.event_type = ev.event_type
  
  left join court_engagement ce on
    ev.e_eng_id = ce.engagement_id
     and ce.court_name like '%' --will be filtered with a court_name parameter
 
  right join all_months am on
    ce.date_joined_court <= LAST_DAY(am.which_month) 
    and (ce.date_terminated is null or ce.date_terminated > LAST_DAY(am.which_month) )
 group by rollup(lt_ev.event_type, am.which_month)
 order by lt_ev.event_type, am.which_month ;
 
- and the results are
 EVENT_TYPE                                         MONTH             MONTHLY_EVENTS_PER_EVENT_TYPE
-------------------------------------------------- ----------------- -----------------------------
Absent without leave                               Sep 2012                                      1 
Absent without leave                               Oct 2012                                      1 
Absent without leave                                                                             2 
Court Appearance                                   Sep 2012                                      2 
Court Appearance                                   Oct 2012                                      3 
Court Appearance                                                                                 5 
Incentive granted                                  Aug 2012                                      1 
Incentive granted                                  Sep 2012                                      2 
Incentive granted                                  Oct 2012                                      1 
Incentive granted                                                                                4 
Judicial direction                                 Oct 2012                                      1 
Judicial direction                                                                               1 
Police report                                      Sep 2012                                      2 
Police report                                      Oct 2012                                      2 
Police report                                                                                    4 
Positive test                                      Sep 2012                                      1 
Positive test                                      Oct 2012                                      1 
Positive test                                                                                    2 
Sanction imposed                                   Aug 2012                                      1 
Sanction imposed                                   Sep 2012                                      1 
Sanction imposed                                   Oct 2012                                      1 
Sanction imposed                                                                                 3 
                                                                                                21 

 23 rows selected 
 
- but the condition is that I list all types of event in the search list
-with a total number of events by event type for each month in a number of calendar months (user will select months like August 2012 or a range of month August 2012 - October 2012)
-the query above just list all the events (see table engagement_event) that have the date_join_court and date_terminated meets the required conditions.
-I wonder, is it possible to enumerate all types of event, then monthly for each event type with the total as
  EVENT_TYPE                                         MONTH             MONTHLY_EVENTS_PER_EVENT_TYPE
-------------------------------------------------- ----------------- -----------------------------
A very long long name                              Aug 2012                                      0 
A very long long name                              Sep 2012                                      0 
A very long long name                              Oct 2012                                      0 
A very long long name                              Total                                           0 
Absent without leave                               Aug 2012                                      0 
Absent without leave                               Sep 2012                                      1 
Absent without leave                               Oct 2012                                      1 
Absent without leave                               Total                                         2 
Court Appearance                                   Aug 2012                                      0 
Court Appearance                                   Sep 2012                                      2 
Court Appearance                                   Oct 2012                                      3 
Court Appearance                                   Total                                         5 
Incentive granted                                  Aug 2012                                      1 
Incentive granted                                  Sep 2012                                      2 
Incentive granted                                  Oct 2012                                      1 
......
-I tried to use PARTTTION, but still, it does not produce the correct result,
-Here's a version shortened the tables related to the query
-Thank you very much in advance.
--create lookup table for event type
 CREATE TABLE "LT_EVENT_TYPE" 
   ("E_ID" NUMBER, 
     "EVENT_TYPE" VARCHAR2(50 BYTE), 
     "DATE_CREATED" DATE, 
     "ACTIVE" NUMBER(2,0) DEFAULT 1
   ) 

 --create table court_engagement
  CREATE TABLE "COURT_ENGAGEMENT" 
   (     "ENGAGEMENT_ID" NUMBER, 
     "COURT_NAME" VARCHAR2(50 BYTE), 
     "DATE_REFERRED" DATE, 
     "DETERMINATION_HEARING_DATE" DATE, 
     "DATE_JOINED_COURT" DATE, 
     "DATE_TERMINATED" DATE, 
     "TERMINATION_TYPE" VARCHAR2(50 BYTE), 
     "DATE_CREATED" DATE, 
     "ACTIVE" NUMBER(2,0) DEFAULT 1, 
     "DEFENDANT_ID" NUMBER
   )
   --create table engagement_event
   CREATE TABLE "ENGAGEMENT_EVENT" 
   (     "EVENT_ID" NUMBER, 
     "E_ENG_ID" NUMBER, 
     "EVENT_TYPE" VARCHAR2(50 BYTE), 
     "START_DATE" DATE, 
     "END_DATE" DATE, 
     "RELATED_SERVICE_ID" NUMBER, 
     "DATE_CREATED" DATE, 
     "ACTIVE" NUMBER(2,0)
   )
-------
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (9,'A very long long name',to_date('02/11/12','DD/MM/RR'),0);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (6,'Excellent performance',to_date('27/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (7,'Sanction imposed',to_date('27/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (8,'Incentive granted',to_date('27/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (2,'Police report',to_date('25/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (1,'Court Appearance',to_date('25/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (3,'Judicial direction',to_date('25/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (4,'Positive test',to_date('25/09/12','DD/MM/RR'),1);
Insert into LT_EVENT_TYPE (E_ID,EVENT_TYPE,DATE_CREATED,ACTIVE) values (5,'Absent without leave',to_date('27/09/12','DD/MM/RR'),1);
----------
   
REM INSERTING into COURT_ENGAGEMENT
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (13,'BBB',null,null,to_date('01/09/12','DD/MM/RR'),to_date('14/09/12','DD/MM/RR'),'Graduated',to_date('03/10/12','DD/MM/RR'),1,4);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (16,'BBB',null,null,to_date('15/09/12','DD/MM/RR'),to_date('07/11/12','DD/MM/RR'),'Did not Graduate',to_date('04/10/12','DD/MM/RR'),1,4);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (20,'AAA',null,null,to_date('07/10/12','DD/MM/RR'),null,'Did not Graduate',to_date('08/10/12','DD/MM/RR'),1,10);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (30,'BBB',null,null,to_date('04/09/12','DD/MM/RR'),null,null,to_date('05/11/12','DD/MM/RR'),1,19);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (21,'AAA',null,null,to_date('07/10/12','DD/MM/RR'),null,null,to_date('10/10/12','DD/MM/RR'),1,11);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (15,'AAA',null,null,to_date('02/10/12','DD/MM/RR'),null,null,to_date('03/10/12','DD/MM/RR'),1,3);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (23,'AAA',null,to_date('30/09/12','DD/MM/RR'),to_date('29/09/12','DD/MM/RR'),null,null,to_date('15/10/12','DD/MM/RR'),1,8);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (25,'AAA',null,to_date('10/10/12','DD/MM/RR'),to_date('20/09/12','DD/MM/RR'),null,null,to_date('18/10/12','DD/MM/RR'),1,15);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (27,'AAA',null,to_date('11/09/12','DD/MM/RR'),to_date('19/07/12','DD/MM/RR'),null,null,to_date('23/10/12','DD/MM/RR'),1,16);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (2,'BBB',to_date('01/10/12','DD/MM/RR'),to_date('01/10/12','DD/MM/RR'),to_date('29/09/12','DD/MM/RR'),null,'Did not Graduate',to_date('27/09/12','DD/MM/RR'),1,2);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (28,'AAA',null,to_date('03/10/12','DD/MM/RR'),to_date('01/10/12','DD/MM/RR'),null,null,to_date('24/10/12','DD/MM/RR'),1,17);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (17,'AAA',null,null,to_date('08/10/12','DD/MM/RR'),to_date('11/10/12','DD/MM/RR'),'Did not Graduate',to_date('04/10/12','DD/MM/RR'),1,6);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (18,'AAA',null,null,to_date('03/09/12','DD/MM/RR'),to_date('16/10/12','DD/MM/RR'),'Graduated',to_date('05/10/12','DD/MM/RR'),1,7);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (19,'BBB',null,null,to_date('01/10/12','DD/MM/RR'),to_date('09/10/12','DD/MM/RR'),'Graduated',to_date('05/10/12','DD/MM/RR'),1,9);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (22,'AAA',null,null,null,null,null,to_date('11/10/12','DD/MM/RR'),1,12);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (24,'AAA',to_date('08/10/12','DD/MM/RR'),to_date('01/10/12','DD/MM/RR'),to_date('04/10/11','DD/MM/RR'),null,'GangNam Style',to_date('17/10/12','DD/MM/RR'),1,14);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (26,'BBB',null,to_date('17/10/12','DD/MM/RR'),to_date('16/10/12','DD/MM/RR'),null,null,to_date('18/10/12','DD/MM/RR'),1,7);
Insert into COURT_ENGAGEMENT (ENGAGEMENT_ID,COURT_NAME,DATE_REFERRED,DETERMINATION_HEARING_DATE,DATE_JOINED_COURT,DATE_TERMINATED,TERMINATION_TYPE,DATE_CREATED,ACTIVE,DEFENDANT_ID) values (29,'AAA',null,null,to_date('20/09/12','DD/MM/RR'),null,'GangNam Style',to_date('30/10/12','DD/MM/RR'),1,18);

---------------
REM INSERTING into ENGAGEMENT_EVENT
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (8,18,'Incentive granted',to_date('01/10/12','DD/MM/RR'),null,null,to_date('05/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (21,2,'Police report',to_date('20/09/12','DD/MM/RR'),to_date('02/10/12','DD/MM/RR'),null,to_date('24/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (7,2,'Court Appearance',to_date('02/10/12','DD/MM/RR'),to_date('16/10/12','DD/MM/RR'),12,to_date('03/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (11,19,'Court Appearance',to_date('02/10/12','DD/MM/RR'),null,null,to_date('05/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (13,21,'Court Appearance',to_date('01/10/12','DD/MM/RR'),to_date('11/10/12','DD/MM/RR'),null,to_date('10/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (18,24,'Incentive granted',to_date('01/10/12','DD/MM/RR'),to_date('15/10/12','DD/MM/RR'),null,to_date('17/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (20,2,'Police report',to_date('16/09/12','DD/MM/RR'),to_date('18/09/12','DD/MM/RR'),10,to_date('23/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (24,17,'Court Appearance',to_date('16/10/12','DD/MM/RR'),null,null,to_date('25/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (26,30,'Judicial direction',to_date('01/10/12','DD/MM/RR'),null,null,to_date('06/11/12','DD/MM/RR'),0);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (9,2,'Court Appearance',to_date('01/09/12','DD/MM/RR'),to_date('15/09/12','DD/MM/RR'),10,to_date('05/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (12,20,'Judicial direction',to_date('07/10/12','DD/MM/RR'),null,null,to_date('08/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (17,24,'Sanction imposed',to_date('16/10/12','DD/MM/RR'),to_date('31/10/12','DD/MM/RR'),null,to_date('17/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (23,13,'Court Appearance',to_date('01/10/12','DD/MM/RR'),null,34,to_date('24/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (5,2,'Positive test',to_date('01/10/12','DD/MM/RR'),to_date('10/10/12','DD/MM/RR'),1,to_date('02/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (10,19,'Judicial direction',to_date('01/10/12','DD/MM/RR'),null,null,to_date('05/10/12','DD/MM/RR'),1);
Insert into ENGAGEMENT_EVENT (EVENT_ID,E_ENG_ID,EVENT_TYPE,START_DATE,END_DATE,RELATED_SERVICE_ID,DATE_CREATED,ACTIVE) values (19,25,'Absent without leave',to_date('18/10/12','DD/MM/RR'),null,null,to_date('18/10/12','DD/MM/RR'),1);
-Thanks for reading this.

Ann

Please give sample data and expected results.

Hope below is what you'd expect - yet, I would like to ask a clarification - you have a filter 'where active = 1.
And yet, you want these types in the output. I commented on this to my query filter.
You can change accordingly

WITH  all_months  AS
(
   SELECT ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM-1) AS which_month
   ,      ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM  ) AS next_month
   from all_objects
   where
   rownum <= months_between(to_date('&endmonth','MON YYYY'), add_months(to_date('&startmonth','MON YYYY'), -1))
)
,
lt_event_type_a AS
( select event_type, which_month,next_month
  from lt_event_type, all_months
  --where active = 1
)
,
engagement_event_a as
(SELECT * FROM engagement_event
 where active =1
 )

select lt_ev.event_type,TO_CHAR (lt_ev.which_month, 'Mon YYYY')  AS month,
      count(ce.engagement_id) as monthly_events_per_event_type
  from engagement_event_a ev
  left outer join court_engagement ce on
   ( ev.e_eng_id = ce.engagement_id
        and ce.court_name like '%' )
  right outer join lt_event_type_a lt_ev   on
    (ce.date_joined_court <= LAST_DAY(lt_ev.which_month)
    and (ce.date_terminated is null or ce.date_terminated > LAST_DAY(lt_ev.which_month) )
    and lt_ev.event_type = ev.event_type
    )
 group by rollup(lt_ev.event_type, lt_ev.which_month)
 order by lt_ev.event_type, lt_ev.which_month ;

EVENT_TYPE                                         MONTH    MONTHLY_EVENTS_PER_EVENT_TYPE
-------------------------------------------------- -------- -----------------------------
A very long long name                              Aug 2012                             0
A very long long name                              Sep 2012                             0
A very long long name                              Oct 2012                             0
A very long long name                                                                   0
Absent without leave                               Aug 2012                             0
Absent without leave                               Sep 2012                             1
Absent without leave                               Oct 2012                             1
Absent without leave                                                                    2
Court Appearance                                   Aug 2012                             0
Court Appearance                                   Sep 2012                             2
Court Appearance                                   Oct 2012                             3
Court Appearance                                                                        5
Excellent performance                              Aug 2012                             0
Excellent performance                              Sep 2012                             0
Excellent performance                              Oct 2012                             0
Excellent performance                                                                   0
Incentive granted                                  Aug 2012                             1
Incentive granted                                  Sep 2012                             2
Incentive granted                                  Oct 2012                             1
Incentive granted                                                                       4
Judicial direction                                 Aug 2012                             0
Judicial direction                                 Sep 2012                             0
Judicial direction                                 Oct 2012                             1
Judicial direction                                                                      1
Police report                                      Aug 2012                             0
Police report                                      Sep 2012                             2
Police report                                      Oct 2012                             2
Police report                                                                           4
Positive test                                      Aug 2012                             0
Positive test                                      Sep 2012                             1
Positive test                                      Oct 2012                             1
Positive test                                                                           2
Sanction imposed                                   Aug 2012                             1
Sanction imposed                                   Sep 2012                             1
Sanction imposed                                   Oct 2012                             1
Sanction imposed                                                                        3
                                                                                       21 

 37 rows selected 

Tags: Database

Similar Questions

  • Need help with the launching track pack for forza code 4

    Bought new Forza 4 and the lancer Track Pack code does not work, how do I get a code that is generated in the form I've already paid for it. Rank of loads of numbers and sent 10 s of emails but cant seem to get help.

    This is the help I get when the cat to an Ambassador xbox on xbox.com

    Terry wrote:
    Need help with the launching track pack for forza code 4
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Your question will be answered by an Ambassador of the Xbox. You have been connected to the Ambassador as a user Xbox [3]
    The Xbox Ambassador says:
    Hello
    Terry wrote:
    Hello
    The Xbox Ambassador says:
    Hey
    Terry wrote:
    just to be on the phone to xbox live support and was told to come here
    The Xbox Ambassador says:
    ok\
    The Xbox Ambassador says:
    What is your problem?
    Terry wrote:
    I bought the 4 for forza ansd 360 new sealed Christmas...
    Terry wrote:
    has got 2 codes that accompanies the game but the pack track code does not work
    The Xbox Ambassador says:
    Wow good
    Terry wrote:
    whenever I put in the code it says code redeemed
    The Xbox Ambassador says:
    I think the code is used. You must return to the retailer
    Terry wrote:
    I tried to, but since I already opened the case they will not accept
    The Xbox Ambassador says:
    Oh. No,
    Terry wrote:
    the code had been used or defective as I am the only person who has touched the game once opened, tried to enter the code when it is open
    The Xbox Ambassador says:
    Maybe it was auto bought?
    Terry wrote:
    so, how do I get another code generated track Pack if defective?
    The Xbox Ambassador says:
    I do not know.
    Terry wrote:
    bought the game new, so I get the track pack
    The Xbox Ambassador says:
    Oh. It's bad.
    The Xbox Ambassador says:
    I think that if you Exchange 1 code it will buy it
    Terry wrote:
    car pack code worked, starter pack did not work
    The Xbox Ambassador says:
    Oh.
    The Xbox Ambassador says:
    It's a bad
    The Xbox Ambassador says:
    BTW you have an evolution of the tests?
    Terry wrote:
    Yes, I want to? but more anxious to get a code object generated for this pack
    The Xbox Ambassador says:
    Hey if I help can u give me this game too?
    Terry wrote:
    ?????????????????
    Terry wrote:
    So is it possible to get a code for that time?
    The Xbox Ambassador says:
    Hey
    The Xbox Ambassador says:
    Yes.
    The Xbox Ambassador says:
    you need to contact them
    The Xbox Ambassador says:
    and tell them that the code is used.
    Terry wrote:
    I was told to come here? where can I go to get the code?

    Hi Terryg76,

    ·         What version of the operating system is installed on the computer?

    I suggest you to contact the game manufacturer for more help and information.

  • Need help on the use of the PCI-6221 and c# to control three digital Port and an analog of entry

    I need to send the digital output at three ports and then read an analog input voltage using the analog card PCI-6221.

    I did a c# program to fight against it. I built four tasks altogether. Three tasks for three digital output ports and a single task for analog input.

    How can I reduce the time?

    Using my method, to 3.3ms in total. And it's slow.

    I can build one task for three ports?

    What is the best way to the control task to reduce the time of communication with the PC?

    Is that possible to save a lot of analog reading entry in the memory of the DAQ hardware and then read it all together from the computer in order to reduce time consumption?

    1 million thanks!

    Hello

    Hi Jin,

    To answer your questions, Yes, you are able to configure a task of digital output to use three output ports and PCI-6221 has a buffer of memory FIFO aboard 4095 samples.

    I would like to direct you to the example of NOR-DAQmx for c# files located in the following location on your computer

    C:\Documents and Settings\All Users\Documents\National Instruments\NI-DAQ\Examples\DotNET2.0

     

    Here, you will find predefined examples in c# that should give you a good idea of how to go about architecting your code to achieve the results you need.

    There is also a useful help file which you will find by navigating to Start > all programs > National Instruments > NOR-DAQ > help of NOR-DAQmx .NET Framework 2.0

    I hope that this answer is useful.

    Best regards

    Steve H

  • Need help with the use of beam between two subVis

    Hi all

    I have two inside a big Vi subVis that need to be connected one to the other.

    It's a complicated thing, I already have many sons in the wholesale Vi, which will become a mess if I connect these two subVis line-by-line (there are nearly 16 lines between them).

    I tried bundle but failed two times (basically I don't know how to connect the wires grouped source Subvi the slot - VI intended).

    Could someone give me an idea?  A simple example of VI would be useful.

    Thank you

    + Kunsheng

    You can get a lot of help on the Web site of NOR, too, as this document.

  • Need help with the use of GROUP BY in a select statement UNION

    I am writing a query that allows to combine a legacy system that interfaces it is trial balance in the Oracle of R12 GL.  It was only meant to continue for a month or two, but it is likely to continue for 6 months. Please Auditors Auditors, to provide proof that the system is in balance with Oracle GL.  By my verification requirements, I need to make a full reconciliation from the month of conversion (life in the amount of date), then PTD for each month. 

    The legacy account is placed in attribute1 on the lines of the journals. Uses of the old system balancing segments that are also used on the platform in Oracle for this division, i.e., Procure-to-Pay has been cut over Oracle, but not everything yet.  So, I can't count on the GL_BALANCES table for the info, I get from the JE_LINES.

    My problem is not the only request for the month.  But when I try to combine the queries with a Union, to aggregation of each measurement period in its own column, the group is necessary after each selected instruction rather than allowing me to put at the end of the UNION.  (When I put the group by at the end of the UNION, I have the 'not one group' function)

    So I get duplicate for each month of discrete measure accounts. When I duplicate in my Oracle database accounts, I can't count on the VLOOKUP function in excel to exactly match an account of inheritance.  I know there are more sophisticated ways to provide this output, but I'm hoping to get this info in a simple query.

    Thank you in advance for any advice you can provide

    Example of data output (the goal for me is to get the two rows to appear as one based on common points on the LEGACY_ACCOUNT and the ORACLE ACCOUNT

    The LEGACY ACCOUNT ORACLE ACCOUNT JUN_15 JUL_15 AUG_15 SEP_15 OCT_15 NOV_15 DEC_15
    010000001109000003584190-600552-1001-100231-000-0000-0000-000000-242961.040000
    010000001109000003584190-600552-1001-100231-000-0000-0000-00000192588.0200000

    Here is a simplified version of my code that returns both records.  In my research, I had found a number of conversations where it has been shown that the group could be put at the end of the select statement.  However, when I remove the group from the first select statement I get SQL error: ORA-00937: not a function of simple-group

    Select

    l.attribute1 LEGACY_ACCOUNT,

    C.SEGMENT1: '-' | C.SEGMENT2: '-' | C.SEGMENT3: '-' | C.SEGMENT4: '-' | C.SEGMENT5: '-' | C.SEGMENT6: '-' | C.SEGMENT7: '-' | COMBINATION OF C.SEGMENT8,

    JUN_15 TO_NUMBER('0').

    JUL_15, sum (NVL(l.accounted_dr,0.00)-NVL(l.accounted_cr,0.00)),

    TO_NUMBER('0') AUG_15.

    TO_NUMBER('0') SEP_15.

    TO_NUMBER('0') OCT_15.

    TO_NUMBER('0') NOV_15.

    DEC_15 TO_NUMBER('0')

    Of

    b GL.gl_je_batches,

    GL.gl_je_headers h,

    GL.gl_je_lines l,

    GL.gl_code_combinations c,

    GL.gl_je_sources_tl j

    where b.je_batch_id = h.je_batch_id

    and h.je_header_id = l.je_header_id

    and l.code_combination_id = c.code_combination_id

    and h.je_source = j.je_source_name

    and c.segment1 ('190 ', '191', '192', '193', '194', ' 195 ', ' 196',' 197', ' 198 ', ' 199',)

    ('200 ', '203', ' 205', '206 ', '330', '331', '332',' 333 ', ' 334',' 335', ' 336 ', ' 337')

    and j.language = 'en '.

    and h.PERIOD_NAME ("JUL-15'")

    Group

    l.attribute1,

    C.SEGMENT1: '-' | C.SEGMENT2: '-' | C.SEGMENT3: '-' | C.SEGMENT4: '-' | C.SEGMENT5: '-' | C.SEGMENT6: '-' | C.SEGMENT7: '-' | C.SEGMENT8

    UNION

    Select

    l.attribute1 LEGACY_ACCOUNT,

    C.SEGMENT1: '-' | C.SEGMENT2: '-' | C.SEGMENT3: '-' | C.SEGMENT4: '-' | C.SEGMENT5: '-' | C.SEGMENT6: '-' | C.SEGMENT7: '-' | COMBINATION OF C.SEGMENT8,

    JUN_15 TO_NUMBER('0').

    TO_NUMBER('0') JUL_15.

    AUG_15, sum (NVL(l.accounted_dr,0.00)-NVL(l.accounted_cr,0.00)),

    TO_NUMBER('0') SEP_15.

    TO_NUMBER('0') OCT_15.

    TO_NUMBER('0') NOV_15.

    DEC_15 TO_NUMBER('0')

    Of

    b GL.gl_je_batches,

    GL.gl_je_headers h,

    GL.gl_je_lines l,

    GL.gl_code_combinations c,

    GL.gl_je_sources_tl j

    where b.je_batch_id = h.je_batch_id

    and h.je_header_id = l.je_header_id

    and l.code_combination_id = c.code_combination_id

    and h.je_source = j.je_source_name

    and c.segment1 ('190 ', '191', '192', '193', '194', ' 195 ', ' 196',' 197', ' 198 ', ' 199',)

    ('200 ', '203', ' 205', '206 ', '330', '331', '332',' 333 ', ' 334',' 335', ' 336 ', ' 337')

    and j.language = 'en '.

    and h.PERIOD_NAME ("AUG-15'")

    Group

    l.attribute1,

    C.SEGMENT1: '-' | C.SEGMENT2: '-' | C.SEGMENT3: '-' | C.SEGMENT4: '-' | C.SEGMENT5: '-' | C.SEGMENT6: '-' | C.SEGMENT7: '-' | C.SEGMENT8

    order by 1

    Is there a good reason to make this period both as a series of trade unions?  This looks like a classic pivot for me query.  This will make a way through the tables and should get the desired results.

    Select l.attribute1 legacy_account,

    c.Segment1: '-' | c.Segment2: '-' | c.segment3: '-' | c.segment4: '-' |

    c.segment5: '-' | c.segment6: '-' | c.segment7: '-' | combination of c.segment8,

    sum (case when h.period_name = 'JUN-15'

    then nvl(l.accounted_dr,0.00)-nvl(l.accounted_cr,0.00)

    otherwise 0 end) jun_15,.

    sum (case when h.period_name = 'JUL-15'

    then nvl(l.accounted_dr,0.00)-nvl(l.accounted_cr,0.00)

    otherwise 0 end) jul_15,.

    - and similar to DEC - 15

    GL.gl_je_batches b, gl.gl_je_headers h, gl.gl_je_lines l.

    GL.gl_code_combinations c, gl.gl_je_sources_tl j

    where b.je_batch_id = h.je_batch_id

    and h.je_header_id = l.je_header_id

    and l.code_combination_id = c.code_combination_id

    and h.je_source = j.je_source_name

    and c.segment1 ('190', '191', '192', '193', '194', '195',' 196', ' 197',

    '198 ', '199', '200', '203', '205' ', 206',' 330 ', ' 331',

    "332 ', '333', '334', '335',' 336 ', ' 337')

    and j.language = 'en '.

    and h.period_name (' Jun-15', ' 15 JUL', ' AUG-15'... "" ")

    L.attribute1 group,

    c.Segment1: '-' | c.Segment2: '-' | c.segment3: '-' |

    c.segment4: '-' | c.segment5: '-' | c.segment6: '-' |

    c.segment7: '-' | c.segment8

    If you're on the 11G version of the database, you might want to look at the PIVOT keyword that will do the same thing in a more concise expression.

    John

  • Need help in the use of dbms_lob.read

    I need to upload a file in an Oracle table to a Blob column. The name of the file with the contents of the file are all in a BLOB column.

    Once it's done, I need to read the file and extract the contents of the file and load it into an intermediate table.

    Downloaded file is a. CSV file.



    For example, the. CSV file is: ABC.csv file and its contents will look like:

    1, Hello, Nisha

    2, Hello, happy

    3, bye, Rahul

    Etc...



    This is why the table containing the BLOB column will contain:

    Creation_date file

    ABC.csv 09/11/2009



    How can I read a file from the BLOB and upload column in an intermediate table?



    Final staging table should look like:

    Record number welcome name

    1 Hello Nisha

    2 happy salvation

    Rahul 3 bye



    I think I'm supposed to use dbms_lob.read, but I'm not really sure how to use it. If there is any script, please mail me the same.



    Thank you...

    But for my needs, I multiiple users downloading the same file in the table of the BLOB.

    It's just worse and worse.

    You can do this asynchronously - have a background process download the CSV file and insert into the destination table. Depends on if your users want to see the results immediately. You can also have your users load the OS, insert it into the destination table, and then in the blob store.

    Information on how to obtain one record of the other of the. The blob column CSV file...

    You will be happy. This is a very unusual request, but you can try searching the interwebs - something can emerge.

    Basically what did your 'condition' is to take a simple piece of functionality, which is well understood and more easily satisfied using built-ins regular, and sought to implement pretty much the hardest way possible. So, good luck with that.

    Cheers, APC

    blog: http://radiofreetooting.blogspot.com

  • Need help with the use of conditions in the correspondence management

    Hello

    Could someone please provide me with any tutorials or tips on the use of conditions in the correspondence management.

    Thank you.

    http://help.Adobe.com/en_US/enterpriseplatform/10.0/CorrespondenceManagementSolution/WS6db 1f95d7f6c954f-27f2691012b7fafb54f - 7ffe.html

  • Need help with the use of masks

    I tried to use the quick selection tool to select areas of a photo in an adjustment layer, but it is not put at the disposal of the adjustment. The selection is done on the photo, but not in the adjustment layer box, as the selection brush only. I find that the selection brush is rather hard to use that you can't see exactly what you select as it only indicates in the layer box not on the photo itself.

    I'm sure there is a better way to do it, but I'm not.

    Can someone give me a hint or a clue, please?

    It would be really useful to be able to use the quick selection tool, or one of the other selection tools to isolate parts of images for extra work, or to keep separate work on the rest of the image.

    I know I'm not understanding something in Elements 8 page 129 + Barbara instructions.

    You must select the box before making the adjustment layer, on the one hand. To change the area of the layer afterwards, you paint according to the instructions in Chapter 10. Selections have no effect on an existing adjustment layer.

  • I need help with the use of Class.forName and getResourceAsStream

    I am trying to write code that will play an audio file. All references I found the point of code as follows...

                              Class dir = Class.forName("lib.testother");
                                InputStream input = dir.getResourceAsStream("/explosion.aac");
                                Player player =
                                    javax.microedition.media.Manager.createPlayer(input, "audio/aac");
                                player.realize();
                                VolumeControl vol = getVolumeControl(player);
                                if (vol != null)
                                {
                                    int volume = vol.getLevel();
                                    vol.setLevel(volume);
                                }
                                player.prefetch();
                                player.start();
    

    I use Blackberry JDE. Now, I'm supposed to put the audio file of the project?

    Second, how then use the class.forName function? I put the audio file as a member of the project and then tried the above code and I get that it can not find lib.testother (which is the path of the code).

    If I use getClass() instead of dir above, getResourceAsStream returns null.

    Are there examples of the use of these or how to include the audio in your project... from end-to-end. The code snippet above is all I could find and it isn't enough.

    THX

    D

    Check this thread:

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=11616&query.ID=18...

  • Put the name of partition in a SELECT statement

    Hello

    I'm trying to do something like that.

    SELECT u.id FROM user PARTITION (SELECT partition_name FROM dba_tab_partitions WHERE table_name = 'users') u u.active = 1 WHERE

    The problem is that you cannot have a select in there to retrieve the name of the partition. Is there a way I can do this in a single SELECT statement?

    Thanks in advance

    Object name cannot be passed to a SQL dynamically. You need to know the name of the object during the compilation of a SQL. If you want to make it dynamic, then use dynamic SQL using EXECUTE IMMEDIATE or DBMS_SQL.

  • Need help on the limits of understanding for extended documents

    Help! I work for a University and our academic advisor service includes academic worksheets that show all the required courses for each major. We strive to create spreadsheets in the forms, however, not all of our advisors have Acrobat Pro (they drive IX). Adobe support says that there are limitations in the number of copies of forms that are deployed and the number of recipients (500 limit for each). Advisors will enter our shared drive to access spreadsheets to fill and fill them for students facing us. We will then use the submit button that attaches the completed worksheet to our e-mail. We will then send the attachment to the student and save a copy in our repository of documents, Image now. When students return a date each semester, recover us the file from the repository of documents and to update and re - send the student and save it again in the repository. We are concerned that we run a problem with the number of times that we can do. The limit of 500 'deployment' and beneficiaries applies in this case of what we are trying to do?

    For Acrobat Reader XI you need not drive to extend forms.

  • Need help on the use of the Regex to parse the addresses

    Let me start by saying three things:

    1. I suck at the regex
    2. I googled this and did not come with an answer, and
    3. I am in ColdFusion 10

    I have a form with an AutoComplete entry that allows a user to enter street addresses (either in full as "123 Main St, Mayberry" or in the part "123 Main St" or "Main St" or "Main St, Mayberry".)  I need to say if the user provided a street number or not at the beginning of the value they get into the entry.  I'm testing the value of entry with this code:

    < ReFind ("^([0-9]{1-5})", q) cfif >

    <! - address begins with a number - >

    < cfelse >

    <! - address does not start with a number - >

    < / cfelse >

    q is the input value passed in my code for the AutoComplete feature.

    x should be 0 (if the input value does not begin with a number) or a positive integer (if the input value starts with a number).

    Basically, I just need to know if the input value begins with a five-digit.

    I guess I could just do something like:

    < Val (q) cfif >

    I'm better use an expression, and if so, what I'm doing wrong with the one I tried?

    -Carl V.

    1.5 {} {1-5} is not.

    Perhaps read my series of articles about CF regexes to help you get up to speed with them better:

    http://adamcameroncoldfusion.blogspot.co.UK/2012/12/regular-expressions-in-ColdFusion-part .html

    --

    Adam

  • Need help with the site of Editions for a friend - Thnx

    Hello

    I recently got in creating websites so I am pretty new to this, Ive created a site for a friend with dreamweaver CS5 and it looks pretty awesome I also published the site using dreamweaver. Then a few weeks later, my friend started telling me to put new images etc. because it is not familiar with dreamweaver and guys its becomes a bit boring. I want him to be able to post pictures and texts on his own, but I do not know how, someone told me that other cms joomla. And the noob I am I couldn't understand oy what are these programs... Anyone has any advice, tutorials or something useful please share it with me.

    Thnx in andvance and sorry if spelling is a bit messy enlish is my 3rd language.

    Viktoriya El Madhoun wrote:

    I have a major in mathematics and science

    Huumm... he need more money both of those in the design of Web site.

    Viktoriya El Madhoun wrote:

    I plan to learn flash too, Whats ure opinion on flash, Ive been reading online and many people say it's a dying art? Should I learn, or just ignore it?

    As John says, I would not bother. Flash does not work on the iphone or the ipad is a reading in which direction he's going.

    The big money is to know a language like php/mysql server, so if you can get your head around those and combine it with your in-depth knowledge of html/css, it will give you a great competitive advantage.

    Many more customers now wonder for Web sites with a sort of interactivilty. To offer those you must know an inner language server outwards or you will be limited to base sites, which can produce zillions of others.

  • Need help in the use of ctx_doc.themes)

    Hello
    I am new to oracle text, I have a table that has a column "e_id" (primary key) and text data in a column that is indexed context, now I want to find words appearing frequently in this column, so I use the ctx_doc.themes () procedure to achieve.
    I created an array of result "ctx_themes" which has query_id, themes and columns of weight which will fill after executing the ctx_doc.themes proc (), but I am facing the error after execution of the ctx_doc.themes () procedure, so below please help me in the question of fixing.

    Start
    ctx_doc.set_key_type ('PRIMARY_KEY');
    end;

    Start
    ctx_doc. Themes ('text_data_index', 'e_id', 'CTX_THEMES', 1, full_themes = > FALSE, num_themes = > 20);
    end;
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Error from the 1 in the command line:
    Start
    ctx_doc. Themes ('text_data_index', 'e_id', 'CTX_THEMES', 1, full_themes = > FALSE, num_themes = > 20);
    end;
    Error report:
    ORA-20000: Oracle text error:
    DRG-11445: rowid value is not valid: e_id
    ORA-06512: at "CTXSYS. DRUE", line 160
    ORA-06512: at "CTXSYS. CTX_DOC', line 210
    ORA-06512: at line 2
    20000 00000 - '%s '.
    * Cause: The stored procedure 'raise_application_error.
    We called that causes this error to be generated.
    * Action: Fix the problem, as described in the error message or contact
    the administrator of the application or the DBA for more information.

    Thank you.

    If your name of the index myindex you can do:

    select token_text, sum(token_count) as total
    from dr$myindex$i
    where token_type = 0
    having sum(token_count) > 10
    group by token_text
    order by total desc
    

    Lists all of the chips with more than 10 occurrences.

    Otherwise, I think that ctx_report.index_stats will list page high fees, but I'm not sure about this.

  • Need help with the debugging of flash for survey email form script!

    Hi all

    I have a survey form .fla file I adapted a fedback form work. They use .asp to compile and send an email, but I can't work on why the survey form does not work. Anyone would be able to run on this script and tell me if there is anything wrong with it. I've been going on it again and again, but can not see something wrong!

    Question1. Text = question2.text = question3.text = question4.text = question5.text = question6.text = question7a.text = question7b.text = question7c.text = question7d.text = question7e.text = question7f.text = contact_message.text = age.text = business.text = contact_email.text = message_status.text = "";

    send_button.addEventListener (MouseEvent.Click, Submit);

    reset_button.addEventListener (MouseEvent.CLICK, reset);

    System.security.allowDomain ("localhost");

    var: timer;

    var var_load:URLLoader = new URLLoader;

    var URL_request:URLRequest = new URLRequest("mail.asp");

    URL_request. Method = URLRequestMethod.POST;

    function submit(e:MouseEvent):void

    {

    If (question1.text == "" |) Question2.text == ' | Question3. Text == ' | question4. Text == ' | question5. Text == ' | question6. Text == ' |          question7a. Text == ' | question7b. Text == ' | question7c. Text == ' | question7d. Text == ' | question7e. Text == ' | question7f. Text == ' | contact_message. Text == ' | Age.Text == ' | "Business.Text == ' | contact_email. Text == "")

    {

    MESSAGE_ERROR. Text = "* fill all fields!";

    }

    else if (! validate_email (contact_email.text))

    {

    MESSAGE_ERROR. Text = "* Invalid Email!";

    }

    on the other

    {

    MESSAGE_ERROR. Text = "";

    message_status. Text = "Send"... » ;

    var email_data:String = '& question1 =' + question1.text

    + '& question2 =' + question2.text

    + '& question3 =' + question3.text

    + '& question4 =' + question4.text

    + '& question5 =' + question5.text

    + '& question6 =' + question6.text

    + '& question7a =' + question7a.text

    + '& question7b =' + question7b.text

    + '& question7c =' + question7c.text

    + '& question7d =' + question7d.text

    + '& question7e =' + question7e.text

    + '& question7f =' + question7f.text

    + '& message =' + contact_message.text

    + "& age =" + age.text

    + ' & company = "+ business.text

    + '& email =' + contact_email.text;

    var URL_vars:URLVariables = new URLVariables (email_data);

    URL_vars. DataFormat = URLLoaderDataFormat.TEXT;

    URL_request. Data = URL_vars;

    var_load. Load (URL_request);

    var_load.addEventListener (Event.COMPLETE, receive_response);

    }

    }

    function reset(e:MouseEvent):void

    {

    Question1. Text = question2.text = question3.text = question4.text = question5.text = question6.text = question7a.text = question7b.text = question7c.text = question7d.text = question7e.text = question7f.text = contact_message.text = age.text = business.text = contact_email.text = message_status.text = "";

    }

    function validate_email(s:String):Boolean

    {

    var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.) + \w{2,4} +;

    var r: Object = p.exec (s);

    If (r is nothing)

    {

    Returns false;

    }

    Returns true;

    }

    function receive_response(e:Event):void

    {

    var loader: URLLoader = URLLoader (e.target);

    var email_status = new URLVariables (loader.data) .resposta;

    If (email_status is "Yes")

    {

    message_status. Text = "thank you for your comments. We will be in touch shortly. « ;

    Timer = new Timer (500);

    timer.addEventListener (TimerEvent.TIMER, on_timer);

    Timer.Start ();

    }

    on the other

    {

    MESSAGE_ERROR. Text = "Message send didn t!"

    }

    }

    function on_timer(te:TimerEvent):void

    {

    If (timer.currentCount > = 5)

    {

    Question1. Text = question2.text = question3.text = question4.text = question5.text = question6.text = question7a.text = question7b.text = question7c.text = question7d.text = question7e.text = question7f.text = contact_message.text = age.text = business.text = contact_email.text = message_status.text = "";

    timer.removeEventListener (TimerEvent.TIMER, on_timer);

    }

    }

    Thanks in advance.

    J

    your string is incorrect.  use:

    var email_data:String = '? '. Question1 ="+ question1.text

    + '& question2 =' + question2.text

    + '& question3 =' + question3.text

    + '& question4 =' + question4.text

    + '& question5 =' + question5.text

    + '& question6 =' + question6.text

    + '& question7a =' + question7a.text

    + '& question7b =' + question7b.text

    + '& question7c =' + question7c.text

    + '& question7d =' + question7d.text

    + '& question7e =' + question7e.text

    + '& question7f =' + question7f.text

    + '& message =' + contact_message.text

    + "& age =" + age.text

    + "& business =" + business.text

    + '& email =' + contact_email.text;

Maybe you are looking for

  • iPad stuck on the cloud backup. Cannot be reset

    Hi it seems ipad got stuck on the backup window. I tried to hold the power button to restart, but it does not allow me to go further and gets stuck on this window only... Appreciate any help

  • Cannot use e-print to print from Amazon Kindle Fire HD camera

    I was able to use e-print to print on my Officejet 4630 using my Kindle Fire HD tablet.  However, I succumbed the same Kindle Fire HD print on my HP Officejet 1512 using the same e-print application...  Keep in mind that the 1512 connects to my netwo

  • HP ENVY 15-j052nr TouchSmart laptop

    I just got a new TouchSmart 15 - j052nr as a gift and I need a more powerful graphics card if I'll keep. I don't know if I can install theNVIDIA GeForce GT 740 M located on the TouchSmart 15-j051nr or maybe something more powerful. Thanks for any adv

  • Not enough memory on printer color 5525dn

    A toner cartridge out would cause an insufficient memory on a color 5525 printer error message? It is supposed to have 164 mega bytes, and I can't imagine missing memory. Is there a way to reset something or what is normally the cause? Thank you

  • Bridge WAG160N-mode configuration

    OK, here's what I'm trrying: I have this old wag160n, which is very old and I am facing a lot of problems with it. I have ourchaced a new E2500 router licksys wireless and I try to use the WAG as a modem. WAG is configured as: Wireless is disabled -