The ADF Calendar requires a very specific set of objects within your view object before the create calendar menu will appear. See below.
Its most likely because you need to add three bind variables to your view object:
- 2 Date Bind Variables (For storing start date and end date). Make sure Updatable flag is set to true. I also have Required set to ture. Being its 11.1.1.0, it might require 2 timestamp bind variables and not date. But later JDev versions require, 2 date bind variables.
- 1 String Variable (For storing timezone). Make sure updatable flag is set to true.
For your view object's fields, make sure you have attributes for the following:
- 2 Date Attributes (For Start Date and End Date)
- Primary Key Attribute
- String attribute to represent Calendar Activity Provider Id (otherwise owner of calendar activities)
- String attribute to represent Calendar Activity Title.
Lastly, if you had to add any of the above to your view object, make sure you refresh your data controls panel before you create the calendar component from it - its sort of quirky that way :)
Thanks,
Gavin