How to count pacients per day

Hi all...
I'm doing a system for a hospital, and I need to count the number of patients taken care of per day by some sector of the hospital.
In the mysql database i have the day that the patient interned and the they he left the hospital...
how can I do that???
thx...

Hi all...
I'm doing a system for a hospital, and I need to
count the number of patients taken care of per day
by some sector of the hospital.
In the mysql database i have the day that the patient
interned and the they he left the hospital...
how can I do that???
thx...Do you have a specific Java question? If so, please post it here.

Similar Messages

  • How to backup ONCE per DAY only

    Hi
    It takes forever (2hrs+) to backup 300GB onto our Time Capsule, and the backup slows down my computer so much to the point I want to pull my hair out! I can't seem to find a way to do an automatic backup once per day only rather than hourly without turning off the automatic backup and doing it manually.
    Does anyone know how to do an automatic backup to Time Capsule once per day only?
    Thank you!

    Thank you for your assistance!
    That is exactly what I was looking for, and am very relieved to know there is something available!!
    I was hesitant to download it at first because since it is backing up all my files, I was afraid of the possibility of having a built in bug that would allow an outsider to access my files. However, I researched it, and it seems there are many happy & satisfied users of the Time Machine Editor software.
    Thanks again! Hopefully Apple will just swallow their pride and make this ability available in one of their own software updates in the future.

  • How to count no. of days from selection criteria in BEx

    hi,
    I need to do some calculations in query and one of requirements is to count number of days for which query was executed (day period is in query selection criteria)
    I would like to use it for calculated KF definition.
    Does somebody knows how to get this number?
    Regards,
    Andrzej

    Hi Andrzej,
    The answer is correct - you have to do it in user-exit. You have to learn it becouse its a very powerfull solution and is very ofen used in reporting.
    See help ... http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a56f5e09411d2acb90000e829fbfe/content.htm
    In the interface of this exit you will find all query selections + sy-datum = what you need.
    Pozdrowka
    Wojtek

  • PWA Timesheet - How to limit hours per day on timesheet submission?

    I've set "Maximum Hours per day" limiation to 24 hours on "Timesheet settings and defaults" and it works when a user click "Save" on "Timesheet" view. 
    But when the user click "Send" without saving first, it bypasses this limitation and save the timesheet reporting with any amount of hours that the user entered.
    Is there any way to solve this and limit the user so he won't be able to submit more than 24 hours per day?
    Thanks

    Under configure timesheet settings and defaults
    In the Hourly Reporting Limits section, specify the maximum and minimum hours allowed in a timesheet and the maximum number of hours allowed to be reported in a day. If team members report time beyond these limits, errors appear on their timesheets when
    they submit them.
    make it 8 hours then check.
    kirtesh

  • How to count the per group-entries and put them in the new table

    Hello Guru,
    I want to sort the table cdhdr.
    for example :
      SELECT objectclas objectid changenr   *******
      INTO TABLE cdhdr_data
      FROM cdhdr
      WHERE ( ********) AND
            objectclas = i_objectclas
    The problem that I need to order the table by objectclas and objectid.
    Let say objectclas is always MATERIAL.
    Let's assume our key is changenr. May be our key will change to "objectclas objectid".
    So, my problem that I need to get the number of the same "objectid" with different "changenr".
    And also I need to put the count number of each object id with different changenr in the table cdhdr_data.
    For example
    objectclas        objectid       changenr      count
    MATERIAL      00***001      1                   3
    MATERIAL      00***001      4                   3
    MATERIAL      00***001      7                   3
    MATERIAL      00***005      2                   2
    MATERIAL      00***005      6                   2
    MATERIAL      00***003      5                   2
    MATERIAL      00***003      3                   2
    So later I'm going to use it.
    LOOP AT cdhdr_data FROM sy-tabix TO ( sy-tabix + cdhdr_dat ( sy-tabix ) + count - 1 )
    some optimized cdpos processing
    IF entry found.
    *don't loose time
    *change the boundery
    sy-tabix = count
    ENDIF.
    ENDLOOP.
    Best Regards,
    Kais

    Hi Marcin,
    Thanks for replying.
    I'm having a trouble.
    Let say I got an error on insert into ****.
    It says me that the object (i_)cdhdr_data is not known.
    Why, should I avoid to put objectclas = i_objectclas there.
    I need to have MATERIAL OR DOKUMENT.
    I can't just put 10000entries like that.
    I'm also sceptic about how much this operation will cost.
    Because I need to proceed the data with cdpos.
    And This's why I'm doing that.
    Later with this implementation I'm gone use LOOP AT *** FROM sy-tabix TO ****.
    If I use my method, it will cost lower than inserting, changing, ...
    I rather ignore the objectid and don't make any processing.
    But with your solution I can say its rapidly.
    Let assume there's n entries in cdhdr and m entries per n in cdpos.
    So my algorithm will select n entries and will follow n*m entries but some of them will be proceeded an other not.
    in cdhdr :
    for n entries : n * 1 selecting
    in cdpos :
    always : n*m comparing,
    processing between : n1 - nm
    With you algorithm we will do :
    in cdhdr :
    for n entries : n* (1 selection + 1 modifing + 1 appending) <=> each operation cost O(1)
    in cdpos :
    for comparing between : n1 - nm
    processing between : n1 - nm
    Let see the middle value :
    your case :
    in cdhdr  we have : n * O(3) ~ n * O(1) ~ O(n)
    in cdpos :
    O(c(nm)/2) + O(p(nm))2) ~ O((cp)((nm)/2)) ~ O(d(nm))  d= (cp)/2 ~ p/2
    we know that O(c*n) ~ O (n) ; c ist a constant
    c : comparing cost
    p : processing cost
    p >> c
    my case :
    in cdhdr  we have : n * O(1) ~ O(n)
    in cdpos :
    O(c(nm)) + O(p((nm)/2)) ~ ? maybe O(d(nm)) d = c + (p/2) ~ p/2
    c : comparing cost
    p : processing cost
    p >> c
    Ok, this in theorie, but in reality I've no idea.
    Is there a mathematician there ?
    Regards,
    Kais
    FORM get_cdhdr_data_modified_1
      USING
        i_from_date TYPE dats
        i_from_time TYPE terf
        i_to_date TYPE dats
        i_to_time TYPE terf
        i_objectclas TYPE j_objnr
      CHANGING
        cdhdr_data TYPE SORTED TABLE.
    types: begin of t_cdhdr_data,
                objectclas type cdhdr-objectclas,
                objectid type cdhdr-objectid,
                changenr type cdhdr-changenr,
                count type i,
          end of t_cdhdr_data.
      DATA : i_cdhdr_data type table of t_cdhdr_data with key objectclas objectid changenr with header line.
      DATA: st_index LIKE sy-tabix, count TYPE i.
      SELECT objectclas objectid changenr
      INTO TABLE i_cdhdr_data
      FROM cdhdr
      WHERE ( ( udate GT i_from_date AND udate LT i_to_date ) OR
              ( udate EQ i_from_date AND udate NE i_to_date AND utime GE i_from_time ) OR
              ( udate EQ i_to_date AND ( udate NE i_from_date OR utime GE i_from_time ) AND utime LE i_to_time )
            ) AND
            objectclas = i_objectclas.
      INSERT INTO i_cdhdr_data FROM i_cdhdr_data.
    ENDSELECT.
    LOOP AT i_cdhdr_data.
      AT NEW objectid.
        "remember start position
        st_index = sy-tabix.
      endat
      at end of objectid.
      count = sy-tabix - st_index + 1. "count accual position
      cdhrd_data-count = count. "now you have how many entries are in each objectid
      MODIFY TABLE i_cdhdr_data FROM i_cdhdr_data.
    ENDAT.
    ENDLOOP.

  • How to add extra per day records based on maximum occurances in the week.

    Hello,
    I need to add extra records based on maximum occurances on a day in a week.
    For example, the result of the query shows that maximum occuances in a week 0 is 3 on so I need to add empty records in each day in that week.
    SQL QUERY:
    with  numbers as (
    SELECT ROWNUM N FROM dual 
      CONNECT BY LEVEL <=35
    ),months as (
    SELECT     ADD_MONTHS('01-JUN-10',n-1) AS current_month,
         TO_CHAR(ADD_MONTHS('01-JUN-10',n-1),'fmMonth-YYYY') AS current_month_label
    FROM numbers
    WHERE ADD_MONTHS('01-JUN-10',n-1) <= NVL(add_months('01-JUN-10', :monthcount-1),:p_month)
    ORDER BY n ASC
    ) , dates as (
    select     trunc(trunc(m.current_month, 'MM'), 'D') + n - 1 calendar_date,
         trunc((n - 1) / 7) AS week_num,
                    m.current_month as current_month
    from     numbers, months m
    where trunc(dom.schedule.calendar_begin(m.current_month) + n - 1, 'd') <= last_day(m.current_month)
    Order By week_num, calendar_date
    select dates.week_num, edate, name from (
    --week 0
    select '30-MAY-10' as edate, 'JJ' as name from dual union
    select  '31-MAY-10' as edate, 'MK' as name from dual union
    select  '01-JUN-10' as edate, 'MK' as name from dual union
    select  '01-JUN-10' as edate, 'BK' as name from dual union
    select  '01-JUN-10' as edate, 'JJ' as name from dual union
    select  '04-JUN-10' as edate, 'KK' as name from dual union
    select  '04-JUN-10' as edate, 'LA' as name from dual      union
    -- week 1
    select  '06-JUN-10' as edate, 'BK' as name from dual union
    select  '06-JUN-10' as edate, 'JJ' as name from dual union
    select  '07-JUN-10' as edate, 'KK' as name from dual union
    select  '11-JUN-10' as edate, 'LA' as name from dual      
    ) a  join dates on dates.calendar_date = a.edate   
    order by week_num, to_date(edate);CURRENT RESULT :
    WEEK_NUM             EDATE                NAME
    0                   30-MAY-10            JJ
    0                   31-MAY-10             MK
    0                   01-JUN-10             MK
    0                   01-JUN-10             JJ
    0                   01-JUN-10             BK
    0                   04-JUN-10             KK
    0                   04-JUN-10             LA
    1                   06-JUN-10             BK
    1                   06-JUN-10             JJ
    1                   07-JUN-10             KK
    1                   11-JUN-10             LAREQUIRED RESULT:
    WEEK_NUM             EDATE                NAME
    0                   30-MAY-10             JJ
    0                   30-MAY-10            null
    0                   30-MAY-10            null
    0                   31-MAY-10            MK
    0                   31-MAY-10            null
    0                   31-MAY-10            null
    0                   01-JUN-10             BK
    0                   01-JUN-10              JJ
    0                   01-JUN-10             MK
    0                   02-JUN-10             null
    0                   02-JUN-10             null
    0                   02-JUN-10             null
    0                   03-JUN-10             null
    0                   03-JUN-10             null
    0                   03-JUN-10             null
    0                   04-JUN-10             KK
    0                   04-JUN-10             LA
    0                   04-JUN-10             null
    0                   05-JUN-10             null
    0                   05-JUN-10             null
    0                   05-JUN-10             null
    --Number of Week 1 records should be 14 = (max occurances on 06-JUN-10)  * 7
    1                   06-JUN-10             BK
    1                   06-JUN-10             JJ
    1                   07-JUN-10             KK
    1                   07-JUN-10             null
    1                   08-JUN-10             null
    1                   08-JUN-10             null
    1                   09-JUN-10             null
    1                   09-JUN-10             null
    1                   10-JUN-10             null
    1                   10-JUN-10             null
    1                   11-JUN-10             LA
    1                   11-JUN-10             null
    1                   12-JUN-10             null
    1                   12-JUN-10             nullI would appreciate it if you could help me to find efficient way to achieve this?
    Thanks,
    GM
    Edited by: user12068331 on Sep 28, 2010 2:17 PM
    Edited by: user12068331 on Sep 28, 2010 2:48 PM

    Ok,
    Few things to clarify first :
    1 - How do you define week number ?
    Oracle has 2 different way for week number : normal week number (WW) and isoweek (IW).
    is your weeknumber one of those, or is it something else ?
    2 - Depending on the country the week doesn't start on the same day : in France (as most of Europe I think) first day is monday, where in the USA (as far as I know) first day is sunday.
    the to_char builtin function can display weeknumber :with a as (
    --week 0
    select 0 as weeknum, to_date('30-MAY-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 0 as weeknum, to_date('31-MAY-2010','DD-MON-YYYY') as edate, 'MK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'MK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'BK' as name from dual union all
    select 0 as weeknum, to_date('01-JUN-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 0 as weeknum, to_date('04-JUN-2010','DD-MON-YYYY') as edate, 'KK' as name from dual union all
    select 0 as weeknum, to_date('04-JUN-2010','DD-MON-YYYY') as edate, 'LA' as name from dual union all
    -- week 1
    select 1 as weeknum, to_date('06-JUN-2010','DD-MON-YYYY') as edate, 'BK' as name from dual union all
    select 1 as weeknum, to_date('06-JUN-2010','DD-MON-YYYY') as edate, 'JJ' as name from dual union all
    select 1 as weeknum, to_date('07-JUN-2010','DD-MON-YYYY') as edate, 'KK' as name from dual union all
    select 1 as weeknum, to_date('11-JUN-2010','DD-MON-YYYY') as edate, 'LA' as name from dual
    select to_char(a.edate,'IW') isoweek, to_char(a.edate,'WW') numweek, a.*
    from a;
    IS NU    WEEKNUM EDATE                          NA
    21 22          0 Sunday    30/05/2010 00:00:00  JJ
    22 22          0 Monday    31/05/2010 00:00:00  MK
    22 22          0 Tuesday   01/06/2010 00:00:00  MK
    22 22          0 Tuesday   01/06/2010 00:00:00  BK
    22 22          0 Tuesday   01/06/2010 00:00:00  JJ
    22 23          0 Friday    04/06/2010 00:00:00  KK
    22 23          0 Friday    04/06/2010 00:00:00  LA
    22 23          1 Sunday    06/06/2010 00:00:00  BK
    22 23          1 Sunday    06/06/2010 00:00:00  JJ
    23 23          1 Monday    07/06/2010 00:00:00  KK
    23 24          1 Friday    11/06/2010 00:00:00  LA
    11 rows selected.

  • How many iPhones stolen per day? Prevent shutdown.

    Dear friends.
    Since I had my iPhone stolen I'm searching for a way (without jailbreaking it) to prevent that my new iPhone gets lost.
    "Find my iPhone" is only useful when the thief is dum.b as hel.l and when nobody has found it (yet).
    Does Apple see comercial advantages on this situation? How many iPhones are stolen a day?!
    I mean, why in the world wouldn't you develop security apps and security features so we don't lose our beloved phones?
    This is serious, and it seems Apple doesn't care. I don't want to jailbreak my iPhone, but you are not helping, Apple!
    I would like to see a Restriction setting that would block the shutdown of my iPhone when it's locked. It would require a passcode to shut it down. It's so simple!
    This way thieves wouldn't be able to shut it down!
    The same works for Airplane mode and Wi-Fi. A passcode should be required to turn it off (if I enable this feature).
    Advanced considerations: DFU mode and recovery mode should "expire", the iPhone should reset itself after some time (e.g. 10 minutes) so the iPhone would come back to life and allow tracking.
    SECURITY!
    So far nothing was done in this area. I believe Apple should pay more attention to this.
    Best regards,
    Will

    Will Segatto wrote:
    Dear friends.
    Since I had my iPhone stolen I'm searching for a way (without jailbreaking it) to prevent that my new iPhone gets lost.
    "Find my iPhone" is only useful when the thief is dum.b as hel.l and when nobody has found it (yet).
    Does Apple see comercial advantages on this situation? How many iPhones are stolen a day?!
    I mean, why in the world wouldn't you develop security apps and security features so we don't lose our beloved phones?
    This is serious, and it seems Apple doesn't care. I don't want to jailbreak my iPhone, but you are not helping, Apple!
    I would like to see a Restriction setting that would block the shutdown of my iPhone when it's locked. It would require a passcode to shut it down. It's so simple!
    This way thieves wouldn't be able to shut it down!
    The same works for Airplane mode and Wi-Fi. A passcode should be required to turn it off (if I enable this feature).
    Advanced considerations: DFU mode and recovery mode should "expire", the iPhone should reset itself after some time (e.g. 10 minutes) so the iPhone would come back to life and allow tracking.
    SECURITY!
    So far nothing was done in this area. I believe Apple should pay more attention to this.
    Best regards,
    Will
    Sorry requiring a passcode to shut down the phone isn't a good idea.
    do you know how many users forget their 4 digit passcode to unlock their phones - use the search function at the top right and you'll see all the threads.

  • Calculate Per Day Salary Into Text Field

    HI,
    I want to calculate per day Salary so that i am using Code .i am enter salary in to :P65_SALARY1 text fiedl and calculated per day salary should come into :P65_per_day_salry text field. I have write that code in to item Source and select
    Source Used :-Always.replacing any existing value in session state
    Souce Type :- PL/SQL Expression or Function
    Source value or expression :- Type That below Code
    I have created item :P65_MONTH for Select Month
    BEGIN
    IF :P65_MONTH ='JAN' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)!=0 THEN
    :P65_SALARY1/28;
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)=0 THEN
    :P65_SALARY1/29;
    ELSIF :P65_MONTH ='MAR' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='APR' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='MAY' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='JUN' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='JUL' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='AUG' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='SEP' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='OCT' THEN
    :P65_SALARY1/31;
    ELSIF :P65_MONTH ='NOV' THEN
    :P65_SALARY1/30;
    ELSIF :P65_MONTH ='DEC' THEN
    :P65_SALARY1/31;
    END IF;
    END;When i run Page 65 Then Show me error
    ORA-06550: line 1, column 27: PLS-00103: Encountered the symbol "BEGIN" when expecting one of the following: ( - + case mod new not null avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp interval date pipe
    Error      ERR-1020 Error in PLSQL item processing (function).
    Now Please Tell me how can i calculate Per Day Salary And How to remove that Error.
    Thanks

    HI,
    i have to change according to you but that give me error like.
    ORA-06550: line 5, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol ":= was inserted before "/" to continue. ORA-06550: line 7, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol ":= was inserted before "/" to continue. ORA-06550: line 9, column 13: PLS-00103: Encountered the symbol "/" when expecting one of the following: := . ( @ % ; indicator The symbol
    Error      ERR-1904 Unable to compute item default: type = Function Body computation_type= BEGIN IF :P65_MONTH ='JAN' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)!=0 THEN :P65_SALARY1/28; ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)=0 THEN :P65_SALARY1/29; ELSIF :P65_MONTH ='MAR' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='APR' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='MAY' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='JUN' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='JUL' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='AUG' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='SEP' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='OCT' THEN :P65_SALARY1/31; ELSIF :P65_MONTH ='NOV' THEN :P65_SALARY1/30; ELSIF :P65_MONTH ='DEC' THEN :P65_SALARY1/31; END IF; END;.
    OK      
    How can i remove this.
    Thanks

  • In Lookout, how can I make the equivalent of a "4 changes per day" set-back thermostat?

    Ok... I need some help here....
    I have a Pot_TSP (Temperature setpoint) that uses a PLC register as its remote source. I added a night-time temperature setback feature by adding a "DAYTIME" expression as a permissive, and tying two new Pots (Pot_SP1 and Pot_SP2) to Pot_TSP's "reset value" :       NIF(Expression_Daytime, Pot_SP1, Pot_SP2). 
    Client now wants this increased to 4 optional temp changes per day, just like a household 7-day programmable T-stat. Adding the additional conditions to the "reset" parameter was easy; one extra TimeOfDay timer for each temperature Setpoint change, arranged as "OR" functions. Each time the clock hits one of these TOD targets, Pot_TSP gets "reset" and the "reset value" gets written to it. Here's where I start to bog down... How do you arrange this so that when one of the 4 TOD targets goes "true", its corresponding SP value gets written to Pot_TSP? The closest I've been able to get is this: make a new Pot (Pot_X) with a min of 1 and a max of 4 and use a NCHOOSE to select which of the 4 Temp setpoint Pots Pot_X will use as the (next) SP. If I rotate Pot_X and the clock hits a TOD target, a value corresponding to the selected Pot gets written to Pot_TSP. 
    So can someone please tell me how to get Pot_X to align itself with the TOD events? I can get a limping model if I slave the NCHOOSE function to a Counter object, but if the customer has Lookout turned off or disconnected long enough to miss one of the events, Pot_X will go out of sync. Same goes for incrementing the Pot object. Can't allow that...
    Since the clock never stops and only hits each TOD once every 24 hours, there would never be more than one of the 4 TOD conditions true at one time... is there a way to build an expression object (or the like) to ultimately produce a numeric (the Pot_TSP value) using the following logic: If TOD1 is true, return Pot_SP_1;  If TOD2 is true, return Pot_SP_2, If TOD3 is true, return Pot_SP_3; If TOD4 is true, return Pot_SP_4   ????
    Thanks guys.
    G

    Hi Ryan
    Thanks again for your input! I'm more comfortable with the DataTable object (now that it's become more familiar), and thanks to you I now have a DataTable constructed for one zone (7 rows for the days-of-the-week, and 16 columns for the variables). Displaying of the cell data, cursor navigation, and reading/writing to the Pots' remote position source (in other words the actual GUI) work just fine. In order to expedite completion of the project for which this DataTable is intended, I am at a point where I am prepared to clone the DataTable 3 times to get 4 zones (that's one panel), then clone that result times the number of panels the site has....but I'd like to run this by you first:
    Unless it's contrary to "best practices", should I do as above, or try to further multiplex the DataTable I already have by adding to it the other three zones? The Table I have now serves one zone; can it be expanded to serve (dare I suggest it) one panel (4 zones)? If you recall, I started out thinking I'd need one dedicated Pot for each variable in each zone (16) times 7 days = 96; using the DataTable, the cursor replaced the d-o-t-w so the number of Pots needed dropped to 16. My point: if I have to make separate DataTable objects for each zone, I also need to make 48 more Pots to serve them (which I'm obviously trying to avoid). Then I have to repeat this times the number of panels on site. I'm guessing that adding 3 more zones to the existing (one zone) DataTable is no problem since there's plenty of room left... 
    But would you add them as columns (to keep the cursor consistent across the zones) or add them as rows (to keep the columns consistent across the zones)? 
    If added as columns, can I avoid making those extra 48 Pots? Can I make my existing 16 Pots read/write to multiple columns, like change the Remote Source for Pot_Temp_SP_1 from "..\DataTable.B" to something like "nchoose(Pot_Zone_Selector,..\DataTable.B,..\DataTable.R)" where columns B and R contain Temperature setpoint values for Zones 1 and 2 respectively?
    If added as rows, I'm guessing I don't have to make those extra 48 Pots. But what's the best way to deal with the cursor? Should I be looking at multiple cursors (one for each zone)?
    I should also point out I've been using only L3 Pots since "normal" Pots won't accept an expression as a remote position source; if I change this to regular Pots coupled with SymbolicLinks, does it change the picture at all?
    ...and I'm using Ver 6.0.2
    Thanks,
    George

  • How many mails i can send at a time per day using APEX mail system?

    HI,
    I am working on application, when i have written a process to send mail, i have a project where i have to send mail at a time for all the email id's
    given list there are upto 5000 email id's where text body also include certain set of data from a report. thinking at a time 3000 its difficult i divided
    it region wise, but still each region have 2000 odd email id's. during testing when i run the process just 950 mails i could send then i got a error
    saying "ORA-20001: You have exceeded the maximum number of email messages per workspace. Please contact your administrator." so please
    can any one help me to know How many mails i can send at a time per day using APEX mail system?
    Thanks in advance
    Gowthami

    Hi jfosteroracle,
    You are getting the error may be the following reason,
    Check the following,
    Login as ADMIN and Goto -->Manage Instance-->Instance Settings--> Mail-->Maximum Emails per workspace
    Actually this number denotes the Number of mails can be sent per 24 hour for the workspace,It may exceeded.
    It may be the reason.
    Thank you.     
    Regards,
    Gurujothi
    Edited by: Gurujothi on Jun 27, 2012 5:54 AM

  • How to count a song played in a day?

    Okay so I am asked to create a jukebox project for my school. And the specification for that is, each user can only play two songs per day. I am really confused on how to deal with this, so far I am thinking of using the GregorianCalendar, but just confused on how to do this. Any suggestions?
    the code so far:
    import java.util.Date;
    import java.util.GregorianCalendar;
    public class JukeboxAccount {
         private int id;
         private int songPlayed;
         private String username;
         public JukeboxAccount(String name , int identification){
              id = identification;
              username = name;
         public int getID(){
              return id;
         public boolean songsPlayedPerDay(){
              GregorianCalendar today = new GregorianCalendar();
              today.setTimeInMillis(10000000);
              if (songPlayed < 2){
                   songPlayed++;
                   return true;
              else
                   return false;
    }I know the code above for the songsPlayed is still messy, that's why I need some suggestions.

    well I think I found my self a good solution and it is just as SUSHANT_J said, I should keep track when the song is played and check with the current date.
    Now after this I need to compare with when the song is played and with the current date. How do I get the currentdate? If I just say:
    GregorianCalendar current = new GregorianCalendar();
    the problem here is to get the currentDate and the date when the song played, how do I get this??

  • HT2105 is there a limit on redeeming gift cards per day? how about purchasing in app?

    is there a limit on redeeming gift cards per day? how about purchasing in app?

    AFAIK, there's no limit to how many gift cards can be redeemed in a 24 hour period. Same for In-App purchases.

  • How do I unlock my spending limit per day?

    Apparently, my account has a $300 spending limit per day on iTunes. Can anyone tell me how I can remove that?

    Are you sure it is your iTunes account, or maybe your credit/debit card that has a limit? You would have to contact iTunes to find out about that. http://www.apple.com/emea/support/itunes/contact.html

  • I can only purchase 3 times per day,how can i turn off this sort of protection?

    I can only purchase 3 times per day,how can i turn off this sort of protection?

    You cannot go back, but you can fix the battery problem, which is NOT an iOS 7 problem. I've had much better battery life on iOS 7 than I have have had in the previous 6 years of iPhones. If you are not then there's something wrong with your phone, not with iOS 7.

  • How many workbooks have been visited by end users per day

    Hi SDN's,
    How many workbooks have been visited by end user per day.Is there any process to knew... Do we have any T-Codes to knew...
    Thanks & Regardz,
    Aluri

    nope... unless you're in 7.0
    the statistics before 7.0 only check queries... workaround would be to have a report on BW statistics filtering on the queries that are in your workbooks... that might give you an "idea", but if there people who run those queries outside of the workbook, it will "affect" your "statistics"

Maybe you are looking for