sharing multiple calendars?

I've implemented several calendars, thinking they were all a calendar with multiple events or categories.

Now, I want to share them.  Is there a way to share them at the same time, or should I share each separately, in which case it would receive 7 different invitations she would have to accept?

If you have created multiple calendars there is 2 things you can do. You can share each of them separately or move all the events in a calendar and share it on its own.

Tags: iCloud

Similar Questions

  • Smartphones blackBerry sync multiple calendar blackberry accounts in an outlook

    My blackberry calendar, I have 5 accounts of other calendar related to 5 different email accounts: work, school, staff, facebook, device.  Each event appears with a different color, and this is very useful for me.

    Default (CICAL and CMIME) are both the personal e-mail account.

    Calendar entries under the personal e-mail account and the only one that allows to synchronize in my outlook.  Even if I create the calendar event in outlook and sync it on my blackberry, it comes out as personal messaging.

    Here's what I want:

    one) to be able to synchronize all calendars BlackBerry to outlook.

    (b) when I create something in my outlook, it syncs to my blackberry as 'work '.

    (c) Optional: capacity, if possible, to choose those to sync.  For instance, synchronize all the calendar events blackberry to outlook with the exception of the facebook calendar events

    Help, please.  Thank you!

    The Desktop Manager only syncs with calendar CICAL default on the device.

    Take a look at this article. He talks about the fusion of multiple calendars in one

    http://www.BlackBerry.com/BTSC/KB19240

  • Multiple calendars

    Is it possible to synchronize multiple calendars?

    The sync app only a calendar. support sync multiple calendars in the future.

  • [10g] Best to fill and update multiple calendars work?

    I would like to create multiple calendars working and be able to update as needed. Each work schedule would be for 5 years at the most (right now), but it is possible that at some point in the future, I might want to extend that.

    A work schedule can be applied to a single resource or group of resources. Each individual belongs to a group of resources. What I think, is that if an individual resource has a calendar of work involved, this calendar is used, but if not, it uses the calendar of its resource group, and if the group does not have one, the default schedule is used. Theoretically, each resource can have its own schedule of work, and there would be probably 500 resources to the maximum. In practice, many resources will have the same or similar work schedules.

    Each calendar will be based on one of the 3 standards: all calendars days are working days, on a daily basis, but weekends are working days, or every day except weekends and holidays are working days. (Weeks begin on Sunday and Saturday and Sunday are weekends). The standard calendar would be then modified to create each unique timing as required. For example, if a resource has been used, their calendar is perhaps the standard of works not on weekends and holidays, but could also include a stay of one week in February and stay for a week in July. I'm not sure what the best approach is to define a calendar in the first place and then be able to update an employee decides to holiday (or any other situation that may affect the working days).

    In addition, I really want to be able to integrate the working hours, which can vary daily, but would probably would be pretty standard. I don't know if this information is part of the work table, or as something separate to be combined with work table.

    My ultimate goal in doing all this is to try to plan a project of great amongst the many resources.

    Some examples of data showing where I am so far:
    CREATE TABLE     work_groups
    (     group_id     VARCHAR2(5)     NOT NULL
    ,     group_name     VARCHAR2(25)     
    ,     group_desc     VARCHAR2(200)
    ,     CONSTRAINT     work_groups_pk     PRIMARY KEY (group_id)
    );
    
    INSERT INTO     work_groups
    VALUES     ('A','Group A','Group A description');
    INSERT INTO     work_groups
    VALUES     ('B','Group B','Group B description');
    INSERT INTO     work_groups
    VALUES     ('C','Group C','Group C description');
    INSERT INTO     work_groups
    VALUES     ('D','Group D','Group D description');
    
    CREATE TABLE     resources
    (     resource_id     VARCHAR2(20)     NOT NULL
    ,     type          VARCHAR2(1)
    ,     description     VARCHAR2(200)
    ,     group_id     VARCHAR2(5)     
    ,     CONSTRAINT     resources_pk     PRIMARY KEY (resource_id)
    ,     CONSTRAINT     group_id_fk     FOREIGN KEY (group_id)
                             REFERENCES  work_groups (group_id)
    );
    
    INSERT INTO     resources
    VALUES     ('A001','M','text here','A');
    INSERT INTO     resources
    VALUES     ('A002','M','text here','A');
    INSERT INTO     resources
    VALUES     ('A003','M','text here','A');
    INSERT INTO     resources
    VALUES     ('B001','M','text here','B');
    INSERT INTO     resources
    VALUES     ('B002','M','text here','B');
    INSERT INTO     resources
    VALUES     ('C001','M','text here','C');
    INSERT INTO     resources
    VALUES     ('C002','M','text here','C');
    INSERT INTO     resources
    VALUES     ('C003','M','text here','C');
    INSERT INTO     resources
    VALUES     ('D001','M','text here','D');
    INSERT INTO     resources
    VALUES     ('12345','L','text here','A');
    INSERT INTO     resources
    VALUES     ('12346','L','text here','A');
    INSERT INTO     resources
    VALUES     ('12347','L','text here','B');
    INSERT INTO     resources
    VALUES     ('12348','L','text here','B');
    INSERT INTO     resources
    VALUES     ('12349','L','text here','C');
    INSERT INTO     resources
    VALUES     ('12350','L','text here','C');
    INSERT INTO     resources
    VALUES     ('12351','L','text here','D');
    I don't know if I should have a separate table to define a relationship between a resource or resource groups and a calendar id (each resource or group would be able to assign 1 calendar unique id, although several resources/groups could share the same schedule id), or if I have to add an additional column to each table above to assign the calendar id.
    CREATE TABLE     calendars
    (     cal_id          NUMBER(4)     NOT NULL
    ,     cal_title     VARCHAR2(25)
    ,     cal_desc     VARCHAR2(200)
    ,     CONSTRAINT     calendars_pk     PRIMARY KEY (cal_id)
    );
    
    INSERT INTO     calendars
    VALUES     (1,'Default','This is the default calendar to use for workdays');
    INSERT INTO     calendars
    VALUES     (2,'All Days','This calendar treats all days as workdays');
    INSERT INTO     calendars
    VALUES     (3,'Weekends Off','This calendar gives weekends off, but no holidays');
    INSERT INTO     calendars
    VALUES     (4,'Holidays Off','This calendar gives weekends and holidays off');
    
    CREATE TABLE     workdays
    (     cal_id          NUMBER(4)     NOT NULL
    ,     cal_date     DATE          NOT NULL
    ,     cal_year     NUMBER(4)
    ,     work_day     NUMBER(3)
    ,     work_date     DATE
    ,     work_week     NUMBER(2)
    ,     work_year     NUMBER(4)
    ,     work_days     NUMBER(5)
    ,     cal_days     NUMBER(6)
    ,     CONSTRAINT     workdays_pk     PRIMARY KEY (cal_id, cal_date)
    ,     CONSTRAINT     cal_id_fk     FOREIGN KEY (cal_id)
                             REFERENCES  calendars (cal_id)
    );
    cal_id - refers to the calendars table
    cal_date - the date of the current calendar
    cal_year - the actual year of calendar for the calendar date
    work_day - work in this year of work (resets every year, starting from 1 is 0 if this calendar date is not a working day)
    work_date - if a day of work, date calendar, otherwise, the date of the schedule for the last day of work (or the first week of the calendar, the next working day)
    work_week - the work date work week (numbered from 1, reset each year the first Sunday of the year, before the first Sunday will be the week last year, and the first year of the calendar will be every day before the Sunday included in the first week, until the first week of a calendar may be more than 7 days)
    work_year - year of the work date
    work_days - day of work shop (except in the first calendar week, before the first shop day is 0), starts at 1 (initially), cumulative (does not reset each year)
    calendar cal_days - day of the work date, starts at 1 (initially), cumulative (does not reset each year)

    Assuming that the calendar starts on 01/01/2010 (these values are less correct - I just do my best guess to provide the sample data):
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/01/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,1);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/02/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,2);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/03/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,3);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/04/2010','mm/dd/yyyy'),2010,1,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,1,4);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/05/2010','mm/dd/yyyy'),2010,2,TO_DATE('01/05/2010','mm/dd/yyyy'),1,2010,2,5);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('12/23/2010','mm/dd/yyyy'),2010,250,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,357);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('12/24/2010','mm/dd/yyyy'),2010,0,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,358);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/01/2011','mm/dd/yyyy'),2011,0,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,366);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/02/2011','mm/dd/yyyy'),2011,0,TO_DATE('12/23/2010','mm/dd/yyyy'),1,2011,250,367);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/03/2011','mm/dd/yyyy'),2011,1,TO_DATE('01/03/2010','mm/dd/yyyy'),1,2011,251,368);
    I tried Googling work calendars, and similar things, but I can't seem to find something that fits my situation. If someone could point me in the right direction, I would appreciate it.

    I work in 10g (XE).

    Published by: user11033437 on July 19, 2011 15:05

    Also, I do not know if it would be better to store just somehow days, each group of resources/doesn't work and generate a schedule on the fly as needed, rather than trying to eventually store thousands of dates in the database?

    Hello

    Interesting problem!

    I don't know exactly what you want, however. Are you are looking for a way to answer such questions "resource A001, what are the first 6 days of work or after January 4, 2010?" or "how many working days does have resource A001 between January 4 and January 12, 2010? Post a few examples of the questions that you might ask, as well as desired outcomes, given the sample data you posted.

    user11033437 wrote:


    I would like to create multiple calendars working and be able to update as needed. Each work schedule would be for 5 years at the most (right now), but it is possible that at some point in the future, I might want to extend that.

    A work schedule can be applied to a single resource or group of resources. Each individual belongs to a group of resources.

    Is a 'group resouce' identical to a 'working group '?
    If a resource moves from one group to another, you need to keep track of historical information? For example, if the resource is A001 not havfe its own calendar and is part of the work_group A Juanuary 1, 2010, but then moves to work_group B July 1, 2010, you will need to answer questions like "how many days have you A001 have in 2010", where it must be remembered that the work_group has apllied calendar during the first half of the year , but work_group Schedule B has been used for the second half?

    What I think, is that if an individual resource has a calendar of work involved, this calendar is used, but if not, it uses the calendar of its resource group, and if the group does not have one, the default schedule is used. Theoretically, each resource can have its own schedule of work, and there would be probably 500 resources to the maximum. In practice, many resources will have the same or similar work schedules.

    Each calendar will be based on one of the 3 standards: all calendars days are working days, on a daily basis, but weekends are working days, or every day except weekends and holidays are working days. (Weeks begin on Sunday and Saturday and Sunday are weekends). The standard calendar would be then modified to create each unique timing as required. For example, if a resource has been used, their calendar is perhaps the standard of works not on weekends and holidays, but could also include a stay of one week in February and stay for a week in July. I'm not sure what the best approach is to define a calendar in the first place and then be able to update an employee decides to holiday (or any other situation that may affect the working days).

    It seems that the easiest thing would be to save only the base calendar exceptions. In other words, because the employee normally respect the calendar ' no weekend or holidays ", simply enter 5 rows for that particular employee Mark 5 days of work, he will be missed in February. If the emplyoee will work Saturday in June (in addition to its regular schedule), then enter a line for each Saturday in June.
    >

    In addition, I really want to be able to integrate the working hours, which can vary daily, but would probably would be pretty standard. I don't know if this information is part of the work table, or as something separate to be combined with work table.

    It depends on what you want exactly. Post a couple opf examples of questions you do not want to answer and the real answers, given the sample data that you post.

    My ultimate goal in doing all this is to try to plan a project of great amongst the many resources.

    Some examples of data showing where I am so far:

    CREATE TABLE     work_groups
    (     group_id     VARCHAR2(5)     NOT NULL
    ,     group_name     VARCHAR2(25)
    ,     group_desc     VARCHAR2(200)
    ,     CONSTRAINT     work_groups_pk     PRIMARY KEY (group_id)
    );
    
    INSERT INTO     work_groups
    VALUES     ('A','Group A','Group A description');
    INSERT INTO     work_groups
    VALUES     ('B','Group B','Group B description');
    INSERT INTO     work_groups
    VALUES     ('C','Group C','Group C description');
    INSERT INTO     work_groups
    VALUES     ('D','Group D','Group D description');
    
    CREATE TABLE     resources
    (     resource_id     VARCHAR2(20)     NOT NULL
    ,     type          VARCHAR2(1)
    ,     description     VARCHAR2(200)
    ,     group_id     VARCHAR2(5)
    ,     CONSTRAINT     resources_pk     PRIMARY KEY (resource_id)
    ,     CONSTRAINT     group_id_fk     FOREIGN KEY (group_id)
                             REFERENCES  work_groups (group_id)
    );
    
    INSERT INTO     resources
    VALUES     ('A001','M','text here','A');
    INSERT INTO     resources
    VALUES     ('A002','M','text here','A');
    INSERT INTO     resources
    VALUES     ('A003','M','text here','A');
    INSERT INTO     resources
    VALUES     ('B001','M','text here','B');
    INSERT INTO     resources
    VALUES     ('B002','M','text here','B');
    INSERT INTO     resources
    VALUES     ('C001','M','text here','C');
    INSERT INTO     resources
    VALUES     ('C002','M','text here','C');
    INSERT INTO     resources
    VALUES     ('C003','M','text here','C');
    INSERT INTO     resources
    VALUES     ('D001','M','text here','D');
    INSERT INTO     resources
    VALUES     ('12345','L','text here','A');
    INSERT INTO     resources
    VALUES     ('12346','L','text here','A');
    INSERT INTO     resources
    VALUES     ('12347','L','text here','B');
    INSERT INTO     resources
    VALUES     ('12348','L','text here','B');
    INSERT INTO     resources
    VALUES     ('12349','L','text here','C');
    INSERT INTO     resources
    VALUES     ('12350','L','text here','C');
    INSERT INTO     resources
    VALUES     ('12351','L','text here','D');
    

    It seems that all lines have the same description. If the description of the issues in this problem, would not better illustrate how this is important, having different descrioptions which appeared in different outputs? However, if the description plays no role in this problem, then why include in the sample data at all?

    I don't know if I should have a separate table to define a relationship between a resource or resource groups and a calendar id (each resource or group would be able to assign 1 calendar unique id, although several resources/groups could share the same schedule id), or if I have to add an additional column to each table above to assign the calendar id.

    CREATE TABLE     calendars
    (     cal_id          NUMBER(4)     NOT NULL
    ,     cal_title     VARCHAR2(25)
    ,     cal_desc     VARCHAR2(200)
    ,     CONSTRAINT     calendars_pk     PRIMARY KEY (cal_id)
    );
    
    INSERT INTO     calendars
    VALUES     (1,'Default','This is the default calendar to use for workdays');
    INSERT INTO     calendars
    VALUES     (2,'All Days','This calendar treats all days as workdays');
    INSERT INTO     calendars
    VALUES     (3,'Weekends Off','This calendar gives weekends off, but no holidays');
    INSERT INTO     calendars
    VALUES     (4,'Holidays Off','This calendar gives weekends and holidays off');
    

    What is cal_id = 1? How is it different from the other three?

    
    CREATE TABLE     workdays
    (     cal_id          NUMBER(4)     NOT NULL
    ,     cal_date     DATE          NOT NULL
    ,     cal_year     NUMBER(4)
    ,     work_day     NUMBER(3)
    ,     work_date     DATE
    ,     work_week     NUMBER(2)
    ,     work_year     NUMBER(4)
    ,     work_days     NUMBER(5)
    ,     cal_days     NUMBER(6)
    ,     CONSTRAINT     workdays_pk     PRIMARY KEY (cal_id, cal_date)
    ,     CONSTRAINT     cal_id_fk     FOREIGN KEY (cal_id)
                             REFERENCES  calendars (cal_id)
    );
    

    I suspect that there is a simpler way, especially if there is a regular order to types of day (e.g., people who take vacations outside normally get weekeneds, too).
    You may have a table like this, that was a line a day:

    CREATE TABLE  days
    (       a_date      DATE     PRIMARY KEY
    ,     day_type    NUMBER (1)              -- 1=Weekend, 2=Holiday, 3=Other
    );
    
    INSERT INTO days (a_date, day_type) VALUES (DATE '2010-01-01', 2) /* New Years Day */;
    INSERT INTO days (a_date, day_type) VALUES (DATE '2010-01-02', 1) /* Saturday */;
    INSERT INTO days (a_date, day_type) VALUES (DATE '2010-01-03', 1) /* Sunday */;
    INSERT INTO days (a_date, day_type) VALUES (DATE '2010-01-04', 3) /* Monday - back to work */;
    ...
    

    Another table (I'll call him work_sched) shows what resources are not working when:

    CREATE TABLE  work_sched
    (       p_key          NUMEBR     PRIMARY KEY     -- Arbitrary Unique ID
    ,     group_id         VARCHAR2 (5)          -- Exactly one of the columns group_id or ...
    ,     resource_id      VARCHAR2 (20)          --     ... resource_id will always be NULL
    ,     a_date              DATE
    ,     works_on     NUMBER (1)          -- works when days.day_type >= this value
    ,     remarks          VARCHAR2 (40)
    );
    

    To indicate that work_group 'L' is working normally on type 3 days only (i.e., weekends and public holidays):

    INSERT INTO work_sched (group_id, a_date, works_on) VALUES ('L', NULL, 3);
    

    (Assume that p_key is filled by a trigger).
    The NULL value in the column a_date indicates that it applies to every day, unless another line in the work_sched table. Instead of NULL, mabe some date impossible (for example, January 1, 1900) would be more convenient to specify default values.
    Exceptions to this schedule would be indicated by other lines in work_sched. For example, if "12345" is an employee who is on vacation for a week in February:

    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-02-08', 4, 'Vacation');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-02-09', 4, 'Vacation');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-02-10', 4, 'Vacation');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-02-11', 4, 'Vacation');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-02-12', 4, 'Vacation');
    

    And if that employee works Saturday in June:

    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-06-05', 1, 'Fiscal year-end crunch');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-06-12', 1, 'Fiscal year-end crunch');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-06-19', 1, 'Fiscal year-end crunch');
    INSERT INTO work_sched (resource_id, a_date, works_on, remarks) VALUES ('12345', DATE '2010-06-26', 1, 'Fiscal year-end crunch');
    

    Where to find the number of days of work, we would join work_sched in days using these two conditions:

    ON   work_sched.date           = days.a_date
    AND  work_sched.works_on  <= days.day_type
    

    cal_id - refers to the calendars table
    cal_date - the date of the current calendar
    cal_year - the actual year of calendar for the calendar date
    work_day - work in this year of work (resets every year, starting from 1 is 0 if this calendar date is not a working day)
    work_date - if a day of work, date calendar, otherwise, the date of the schedule for the last day of work (or the first week of the calendar, the next working day)
    work_week - the work date work week (numbered from 1, reset each year the first Sunday of the year, before the first Sunday will be the week last year, and the first year of the calendar will be every day before the Sunday included in the first week, until the first week of a calendar may be more than 7 days)
    work_year - year of the work date
    work_days - day of work shop (except in the first calendar week, before the first shop day is 0), starts at 1 (initially), cumulative (does not reset each year)
    calendar cal_days - day of the work date, starts at 1 (initially), cumulative (does not reset each year)

    There is a large amount of denormalized data. in other words, you should be able to easily deduct cal_date cal_year, but sometimes it is convenient store denormalized data.

    Assuming that the calendar starts on 01/01/2010 (these values are less correct - I just do my best guess to provide the sample data):

    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/01/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,1);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/02/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,2);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/03/2010','mm/dd/yyyy'),2010,0,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,0,3);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/04/2010','mm/dd/yyyy'),2010,1,TO_DATE('01/04/2010','mm/dd/yyyy'),1,2010,1,4);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/05/2010','mm/dd/yyyy'),2010,2,TO_DATE('01/05/2010','mm/dd/yyyy'),1,2010,2,5);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('12/23/2010','mm/dd/yyyy'),2010,250,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,357);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('12/24/2010','mm/dd/yyyy'),2010,0,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,358);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/01/2011','mm/dd/yyyy'),2011,0,TO_DATE('12/23/2010','mm/dd/yyyy'),51,2010,250,366);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/02/2011','mm/dd/yyyy'),2011,0,TO_DATE('12/23/2010','mm/dd/yyyy'),1,2011,250,367);
    INSERT INTO     workdays
    VALUES     (3, TO_DATE('01/03/2011','mm/dd/yyyy'),2011,1,TO_DATE('01/03/2010','mm/dd/yyyy'),1,2011,251,368);
    

    I tried Googling work calendars, and similar things, but I can't seem to find something that fits my situation. If someone could point me in the right direction, I would appreciate it.

    I work in 10g (XE).

    Published by: user11033437 on July 19, 2011 15:05

    Also, I do not know if it would be better to store just somehow days, each group of resources/doesn't work and generate a schedule on the fly as needed, rather than trying to eventually store thousands of dates in the database?

    That's what I thought, too.

    Post some sample data (if it is not what you have already posted), some examples of questions and the right answers you want from each question given that the sample data.

  • How to set up multiple calendar to 7.9.6 OBIA

    Friends, could someone please explain to me what this 'Multiple calendar' option is to 7.9.6. There is not much information in the configuration in this respect guide.

    My Question is, is 'Multiple Calendar Options' means 7.9.6 supports different calendars but at a time or it support more than one calendar at a time in the application.

    Where I come from the East, our source is EBS and some business users want OBIA calendar to match the EBS so that they can see periods of adjustment so... but on the other side, they also want analysis weekly... which is not present in EBS (our EBS is configured with 445 calendar adjustments... is so much more low periods)... so do not know how to go on this issue.

    is there a possibility to use EBS from Claendar (company) as well as another 445 calendar that will give us the week level analytical skills? Lets say it allows different calendars at the same time... so how does it work?... t - it aggregates for different calendars?... Please explain.


    Any help on this will be highly appreciated.

    Thank you

    Published by: Madhu.Hosadurga on 23-Sep-2009 03:49

    Hey madhu,.
    Try this here forum: Applications Business Intelligence

    Cheers, MNC.

  • Shared Google calendars are not displayed

    Hello

    One of my friends shared a Google calendar with me and he does not appear in the calendar application. I added a Google calendar in the app and my own looks great. Added by Google calendars is the number of week and holidays. The only calendar that seems to be missing is my friends. The web interface for Google Calendar shows that my friends calendar so sharing seems to be configured correctly. I guess I could set up my friends like s iCal calendar, but it seems that I shouldn't need to do really.

    That's why I ask you is this a bug or is it missconfiguration on my part?

    Concerning
    Adrian

    Phone: ZTE C open
    FFOS: 1.3 with the zte-release channel was last updated

    Hi AdrianAramaz,

    I'm sorry to hear that you are having problems with the visibility of the shared calendars in your Firefox OS calendar application.

    I did some tests on different versions of Firefox OS and was able to reproduce the same behavior. I opened a ticket #1085084 bugzilla to track this issue.

    In the meantime, if possible, the event creator can give yourself permissions to schedule special to "make changes AND manage sharing." In my tests, this permission enabled me to see the events in the calendar of Firefox OS app.

    I'm sorry that I wasn't able to find a solution better, more stable, but I hope you find this information useful.

    Please let us know if you have other questions about your device Firefox OS and thank you for reporting this issue.

    -Ralph

  • synchronization of multiple calendars on multiple iPhones

    My wife and I i-Phone (6) and iPads (pro and 3rd generation). We have a Mac mini computer. Is it possible to bind calendars anywhere where a date is entered that, it will appear in all? and may be seen or changed of all.

    If this is not available on our platforms, are there apps that would work?

    Thank you

    It should be. Make sure the settings > iCloud > calendars is enabled on all devices. This should synchronize the calendars on all devices with the same Apple ID. If your wife uses her own ID, as it should, then use sharing of family to synchronize, so

    http://www.Apple.com/icloud/family-sharing/

  • BlackBerry Smartphones Multiple Calendar/Address Book Synch problems

    New torch, using 1 month.

    Well At & T. works usage provider. Former user of Windows mobile. New to blackberry.

    Had already existing Outlook calendar and list of Outlook contacts.

    Using the email four accounts on phone (verizon.net (Outlook), Gmail x 2 and hotmail.com)

    Trying to avoid having to restart the phone back to the factory setting and try again.

    My Outlook to synchronize to my gmail on phone contacts list which in turn double my contacts list because has already synched to my list of contacts from at & t on the phone. The software does not recognize the list of contacts of at & t on the phone, wants only sych to gmail one.

    My calendar wants to sync to all Calenders and in turn have multiple copies of the appointments for the same day/month/year.

    I don't have a wireless sync to one of the accounts.

    Can I delete certain contact and/or calendar on the phone to prevent multiple synchronization to all accounts on the phone?

    Tried default calendar (doesn't), unable to the list of default contacts (no option for this).

    Have deleted all the emails, accounts, but their corresponding list of contacts and calendars will not disappear, even after re-booting.

    Is there any resolution? Or do I just start and resume phone to the factory settings and sych from scratch? I have all the necessary data on my PC.

    Thank you for your help.


  • Sharing multiple files Amoungst VMs in ESX 3.5

    I / we need to share files between multiple virtual machines.   I find that I am sort of stuck between the fact that ESX doesn't support NTFS and nothing but supports the ESX VMFS.  Ideally, what I would like is to have is a shared NTFS volume / share accessible to all computer virtual running Windows server 2003 or 2008 DataStore which has direct access, i.e. not going on the network, since it would decrease performance.  A shared VMFS data store would work, but in native mode Windows won't make the VMFS volume.

    Any suggestions?

    Without clustering technology, it is not practical to share a volume between several virtual machines.  Since each vm will think that the disc is owned by them, it will not recognize the changes made by any other virtual machine.  By example, if the vmA and vmB share a disc, and both start at the same time, they are both aware of the same data on this disc.  If after the start, vmA wrote a folder named test on drive, vmB will not see this change because it was not made by this virtual machine.  If vmB now writes a folder named test on the same disc, now you're in trouble.  vmA and vmB have both write a folder named test on the same disc.  Thus, no new file is seen by the other vm.  If you do not change all the data on the disc, then you will be fine, most of the time.  If you are trying to write, then you risk data corruption.

    -KjB

    VMware vExpert

  • Address book &amp; blackBerry Smartphones Multiple calendar

    Is it possible to have two different calendars and notebooks of addresses on the 8310 Curve? I would like to have a calendar/address book for the House and then a different calendar/address book for work. I do not want to mix the two.

    Is this possible?

    Yep - would like to have this ability, so in the meantime the answers to your question. Even if it were a 3rd add-on from the party.

  • Multiple calendars to WCP

    Hello

    Is it possible to have somehow like Google calendar in the calendar of the Webcenter Portal?  In other words, we have several calendars (for personnel, groups and all as a public calendar).  Then, each user can freely subscribe a specific timetable by layering in the calendar of events?

    How can we configure those?

    Thank you

    Hello

    I guess that all of the features you mentioned-

    (1) personal

    (2) group-> which can be group space calendar

    (3) public-> create a PUBLIC Group area with just calendar page, that would suffice

    (4) superposition of

    All of these features are already available in webcenter.

    To set up and use

    http://docs.Oracle.com/CD/E15523_01/WebCenter.1111/e10149/events.htm

    Integrate the Service of events - 11g Release 1 (11.1.1.6.2)

    It may be useful

  • Replication of the object - sharing multiple files

    Hi all,

    When file sharing I create the shared file data blocks, then

    call addHaveObjects

    netGroup.addHaveObjects (0, packetLenght);

    where packetLength is the number of actual data segments are split.

    I added headphones for the request and the result

    NetGroup.Replication.Request

    netGroup.writeRequestedObject (event.info.requestID, object.chunks [event.info.index]);

    NetGroup.Replication.Fetch.Result

    in the info.code I would iterate through the pieces and addWantObject(i,i), where i is the current chunk, like that I would add all the pieces to addWantObject

    Problem

    This works very well when sharing file for other peers, but only first time, when I repeat the scenario once more for the same or different, files that nothing happens.

    NetGroup.Replication.Request - is never called

    Source code around, that I follow to recreate the functionality of file sharing can be found at

    http://www.flashrealtime.com/file-share-object-replication-Flash-P2P/

    Index of the object are unique for the Group and they must always point to the same data of the object.

    When you do...

    netGroup.addHaveObjects (0, packetLenght);

    .. you're stating "I have these pieces of information ready to share" the Group
    Your second call with the same parameters have no effect, because you already said that and the group "is already" you have those. given that peers who wanted already they have these recoveries they are no longer needed and NetGroup.Replication.Request is not called again

    For a different file, you must assign a different id for 'startIndex' and 'endIndex' and make sure that beaches overlap ever; given your piece of code, it looks like you always start at 0; in the whole of the group never send different data in the same index of the object

  • sync multiple google calendars?

    A Palm Pre will be 'synergy' multiple calendars in google (to a single account)?

    I have six calendars put in place in my google account. Box of reception (my main calendar), meetings, travel, training, etc. Will all these synchronization of calendars of Palm Pre calendar application?

    Yes, they do every show upward on the pre.

  • Multiple blackBerry 10 CalDAV / CardDAV calendars/addressbooks share a single account

    Hello

    I'm setting up my address on my Q10 books and calendars. I have several calendars like this

    /CalDAV.php/Group1/Calendar1

    /CalDAV.php/Group1/Calendar2

    /CalDAV.php/Group1/addressbook1

    /CalDAV.php/group2/Calendar1

    /CalDAV.php/group2/addressbook1

    etc., but they are all available with the same name of user and password. Now, when I try to implement in my Q10, first one that I choose works, but when I try to set up a second, the phone complains that the account already exists (I guess because they share the same e-mail address - no - and the operating system does not notice the different servers).

    What should do?

    I tried, and I did some further testing and got to work now:

    CalDAV and CardDAV to the same server works out-of-the-box, probably because they are of a different type. So who takes care of the Contacts.

    If I then different accounts only for groups, not individual calendars (/ groupinstead of /group/calendar), multiple calendars in a group are detected automatically.

    So now I have 1 Mac OS x Server and a CalDAV account by /groupN, with the Q10 necessarily /groupN/calandar1...n on its own. Great! Thanks for your help anyway.

    One last thing: for Mac OS x Server, the e-mail address is a required field. Why? I don't need it to connect...

  • BlackBerry Smartphones multiple Outlook calendars?

    Hello.

    I am a new BB user (just got the phone today) and I have a few questions on the PDA software startup and how it related to Outlook.

    I have multiple calendars in my vision that I need to sync and have visible (and hopefully changed) on my BlackBerry.  I am a user of sync to my outlook via the USB cable and the desktop synchronization software.  I was able to select different calendars to sync, but on the BlackBerry, I don't see them and can't find a way to view them.

    Any help would be appreciated.

    Thank you

    Bob Smiley

    Too bad.  I tried to synchronize the wrong file, so not surprising that entries were not appear!  GIGO.

    Kind regards

    Bob Smiley

Maybe you are looking for

  • How do we uninstall vista security 2011

    I would like to know if I can uninstall vista security 2011 and if yes how to do that.thank you

  • Media Player 111111

    I get an error message that says com surrogate does not

  • ObjectChoiceField with label

    trying to line up a few grid controls. First column of the grid is rich text field that describs what information shows in the second column the grid and control is a control. Unfortunately, one of the control I want to use choice of object field. I

  • My blueraydisk does not work

    Hello My blueray disc does not. Please help me. Thank you very much John Antony

  • BlackBerry Smartphones Facebook on Curve 9300 does not connect

    Hello I ve just downloaded the Facebook app on my BB 9300 curve but he says: I can not run my camera How is it? I've try to download again, but he said I need to contact support. I can't launch the application the only application of the article, I h