How to create a calendar category

I do not know how do create a new calendar category
Post relates to: Pre p100eww (Sprint)
This question was solved.
View Solution.

The Pre / Google don't really support categories.
If you wish to have separate categories what you can do is in Google create a separate calendar within your email account for each "category."
E.G.
You have your email address [email protected] and then you have your calendars (business, personal, etc.)

Similar Messages

  • How to create a calendar layout in jdev 12c?

    In jdev  12c,
    When drag and drop a data control into jsf page, in the popup menu->Create, there is no Create a calendar choice.
    How to create a calendar layout in jdev 12c?
    Thanks.

    Timo,
    From a  reference doc of previous version of jdev/adf, it said :
    http://www.oracle.com/technetwork/cn/java/calendar-091799.html
    Expand the Data Controls accordion and drag the collection that represents the view object for the activity created above (FodCalEventVO) and drop it as a Calendar.
    But in Jdev 12c.--cannot find the Create Calendar choice.
    In jdev 12c can drag and drop a calendar component from the component palette, but do not now how to bind it to view objects.
    Thanks.
    BAO

  • Can any one give me hint how to create(dsplay) calendar in jsp 1.2

    can any one give me hint how to create(dsplay) calendar in jsp 1.2
    friends
    i wants to display calendar (not the date) in tabular way please give me hint how to create it

    Hi,
    i would just add my question cos it looks similar , how can i add calendar of the whole year and let the user browse and select it
    thanX in advance

  • How to create a calendar for two years in GL

    how to create a calendar for two years in GL

    Hi,
    - Login into Oracle EBS and select a responsiblity with GL Superuser drants (e.g. General Ledger Super User)
    - Navigate to Setup + Financials + Calendars and open the GUI Accounting (Navigation for R12)
    - Query the used calendard (used from jour Set of Books/ Ledger via the GUI
    - Enter for each Period (= Period Type 13, 16, 18,...) one Record, have a look to the existing data, used the same logic.
    In the GUI, defined the calendar for 2 Years
    Dirk

  • How to create custom calendar in webdynpro ABAP.....(WDA)

    Hi,
    How to create custom calendar in Webdynpro Abap ?.
    Regards,
    Narasimha

    The best way I see here is to develop your custom calender in any of the UI technologies supported like Flash (flex) or HTML5 (or maybe even SilverLight? not sure) and embed it in your WD view. You can also handle interactions between the embedded component and the WD controller.
    Regards,
    Raghavendra

  • How to create a calendar on iOS 7?

    How to create a calendar on iOS 7? I want to use dayforce to upload my work schedule onto my iPhone but I can't create a calendar on my phone... Help?

    Check the App I mentioned above.
    To add a normal Calendar go to Settings > Mail, Contacts, Calendars > Add Account > Other > Calendars and select what is appropriate for DayForce.

  • Anyone has ideas how to create Google Calendar as an embedded web applet

    Hello...
    Anyone has ideas how to create Google Calendar as an embedded web applet in CRM On Demand? I would like to create an embedded web applet to show up the user's Google Calendar. I may have users Google credentials saved in its user record of CRMOD.

    This can be enabled with InBound SSO implementation where your CRMOD Credentials and Google Apps Credentials are mapped.
    if it would help consider reading something on OpenSSO on SAML for this requirement
    Regards.
    Deepak H Andeli

  • How to create a calendar activity in accessibility mode ?

    I didn't find any way to create a calendar activity in accessibility mode. Since it shows blank list of days in calendar component for a month.
    It seems to be a bug in ADF calendar component. Please suggest if there is any alternate way to support this.
    Thank you so much.

    Timo,
    From a  reference doc of previous version of jdev/adf, it said :
    http://www.oracle.com/technetwork/cn/java/calendar-091799.html
    Expand the Data Controls accordion and drag the collection that represents the view object for the activity created above (FodCalEventVO) and drop it as a Calendar.
    But in Jdev 12c.--cannot find the Create Calendar choice.
    In jdev 12c can drag and drop a calendar component from the component palette, but do not now how to bind it to view objects.
    Thanks.
    BAO

  • How to create HR Report category

    Hai .
    Anybody Could you please let me know how to create Custom HR Report category.
    Thanks and Regtards,
    sai.

    As Raj said you can create the report category at SE38 in menus, GO TO-> Atrributes ->HR report catagory.
    or you can go to SPRO
    Personnel Management >> Human Resources Information System >> Reporting >> Adjusting the Standard Selection Screen >> Create Report Categories.
    1. Select button "New Entries" then enter the name and description
    2. Double click the Allowable selection criteria at your left hand side.
    3. Select the new entries button and enter the PNPPERNR. If you wish have more selection just maintain selectioni field name here.
    4. Then Save.
    5. Go to SE38, under Attribute button. At logical database selectioi select either PNP or PNPCE
    6. Then select the HR report category and enter the newly created HR report category at Master Data.
    7. Save

  • How to create common Calendar hieracrhy?

    I need to create a repository to support the following busines scenario.
    My customer has a Supportcall Handling system and he wants a report to show him the volumes of Supportcalls in the following format. A Supportcall logged on Monday, first responded on Monday, resolved on Wednesday and finally closed by the customer on Friday should be listed in the report as follows:
              Mon     Tue      Wed      Thu      Fri
              Date1     Date2     Date3     Date4     Date5
    New Calls          1     0     0     0     0
    1st Response     1     0     0     0     0
    1st Resolution     0     0     1     0     0     
    Customer Closed     0     0     0     0     1
    I have the following physical tables at my disposal
    Table: FACT_SUPPORT_CALLS
    CALL_NUMBER
    CALL_ENTRY_DATE_ID
    FIRST_RESPONSE_DATE_ID
    FIRST_RESOLUTION_DATE_ID
    CUSTOMER_CLOSED_DATE_ID
    CALL_TYPE
    CUSTOMER_TYPE
    Table: DIM_CALENDAR
    ID_CALENDAR
    DAY
    DAYNAME
    WEEK
    MONTH
    YEAR
    I’ve created 4 measures (New Calls, 1st Response, 1st Resolution & Customer Closed) in the BMM layer by creating logical columns (with Aggregation-rule = Count) and mapping them against the Physical table using a Case statement:
    i.e. CASE WHEN FACT_SUPPORT_CALLS.CALL_ENTRY_DATE_ID <> '-1' THEN 1 END
    Next I need to provide a Calendar hierarchy, so that the user can start at i.e. year level and drill-down to day-level as shown in the example.
    In the Physical Layer I’ve created 4 aliases for DIM_CALENDAR
    DIM_CALENDAR_CALL_ENTRY
    DIM_CALENDAR_FIRST_RESPONSE
    DIM_CALENDAR_FIRST_RESOLUTION
    DIM_CALENDAR_CUSTOMER_CLOSED
    and I created joins between each relevant DATE_ID and DIM_CALENDAR (I.E. DIM_CALENDAR_CALL_ENTRY.ID_CALENDER = FACT_SUPPORT_CALLS.CALL_ENTRY_DATE_ID)
    But how do I create 1 Calendar hierachy which combines/joins these four calendar dimensions?
    What is the best way to achieve this?
    Thanks in advance for any suggestions.

    Thanks for the tread.
    I would like to confirm one thing. We currently have the same issue where we have more than one date in a set of data. Currently we have 8 time dimensions set up for the various dates in the data. Its very confusing though.
    Any way of only having one time dimensions, but still being able to get the different dates?
    Regards
    Andre

  • PSE9 - how to create photo calendar portrait A4

    How do I create a photo calendar orientated in portrait A4 rather than the available landscape orientation? I have Photoshop Elemenst 9. Thanks!

    When you choose Print locally by default the size is of A4 paper size so you do not have to worry about the same. Also the calendar is created in the Portrait except for 1st page which is landscape as it is the start page kind of.
    Here are the links for more understandign on how you can create a photo calendar using PSE:
    http://help.adobe.com/en_US/photoshopelements/using/WS2fa0b309bba5bdb1126b450123098ffce0-8 000.html
    http://tv.adobe.com/watch/learn-photoshop-elements-9/creating-a-calendar/
    Let me know ifyou have any comments.
    Thanks,
    Garry

  • How to create resource calendar with Cal server 6.1

    We are running the JES 2004Q2 release of Cal server and we are looking at creating some resource calendars (meeting rooms mainly). The documentation seems a little sparse on this...
    Part of it suggests that we have to run commadmin to create the resources and then either csresource or cscal to create the actual calendar. However, we don't use commadmin to create users (as recommended by Sun) as it can't create users in a particular OU. Can someone who uses resource calendars tell me how they created them?? I'm lost...
    Ideally, a ldif of a working resource calendar would be handy to have a look at - and some info on how to create the actual calendar!
    Thanks

    Hello,
    Wnen you create web service on first page move the slider to set to the develop service.

  • How to create a root category in OLM catalog?

    How do we create a root category in the OLM catalog? We are on R12.

    When you navigate to the Oracle Learning Management Administrator responsibility and go to the Catalog Administration tab, there should be a Create drop down list. Leave Category selected and dropdown list and click the Go button.
    If you don't see this drop down list or button, you may not have the Learning Administrator role assigned to your user.
    Anne

  • How to create a Calendar page

    Hi gurus,
    i'm starting with Apex and I would like to create a Calendar in an Apex page.
    in this calendar I will show info about events and a link to a register page.
    any idea how can I do this?
    Thank you.

    Apex calendar regions are pretty straight-forward; at least I didn't see any challenging requirements in your post. If you don't want to just go for it, there's a sample Apex packaged application called Events that uses calendar views. You could install that and look under the hood.
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/packaged-apps-090453.html#EVENTS
    Personally I think you could create a calendar region much more quickly than using Matt's suggestion of generating your own HTML. I think that's a lot of what Apex is for, making it so we don't have to write sys.htp.p...
    But what do I know?
    Good luck,
    Stew

  • How to create a new category

    how to create a new category

    The Category field seems to be used exclusively within the Podcasts section where it acts in a similar way to Genre. Podcast producers can define the category for their podcast in their feeds, however they don't always do so. There is no direct ability to edit this field in iTunes but it be changed using a script such as this one: ChangeCategory.
    tt2

Maybe you are looking for

  • How do I set the number of simultaneous downloads?  Per server?

    iTunes always tries to download 3 podcasts at once, which leads to timeouts on podcast servers that limit the number of connections. That means I'm either missing episodes or else I need to manually babysit iTunes. Is there a way to set the number of

  • How to change icon images in Mavericks?

    I am having difficulty changing some Desktop Icon images in Mavericks. Some times I can (Macintosh HD), sometimes I cannot (Applications folder or alias), for example. Never had problem prior to 10.9

  • Netflix shuts down to Apple TV main menu after a few minutes.

    I can watch about 5 minutes of a movie until Apple TV shuts down and brings me back to Apple TV menu

  • Error in Form Handler Properties?

    Hi I've got at strange error in the Form Handler Properties window. When I open an Event Handler I have inserted earlier it gives me this: Library oand Function fields are empt. If I try to open the optionset on Library its empty? When I close down t

  • Delta Problems in Extraction of CRM data to BW

    Dear Gurus, Arun, We are using CRM 4.0 and BW 3.5 version Process Chains are scheduled to extract delta records every day from CRM to BW production server. For the Opportunities report, we are facing a problem. <b>For a Customer "XYZ Corporation" A c