Calendar.pll

In reading the help file for Forms there is mention of a "Calendar" list of
values and a STNDRD20.OLB and CALENDAR.PLL for displaying a calendar with a
KEY- LISTVAL trigger on a date item.
My presumption was that I could have the operator do a list of values which
would provide a "calendar" for the operator to select a date to be placed into
the date item in this block.
I followed the instructions, copied the package (PLL) and compiled it clean but
it will not see the "click_date" procedure when I try to compile the
KEY-LISTVAL trigger on the date item.
Help!
null

Hi,
I am using the calender which you mentioned from the oracle demo file.
Just I opened the calender.fmb and moved neccessary blocks,canvas and procedure (date_choosen) into my form.You have to modify date return item in that procedure.If you want to use this calender for more forms then create your
own object library and move all those things
into that.
If you want that neccessary blocks,canvas and
procedure just mail me.
note: You can also directly use that STNDRD20.OLB and CALENDAR.PLL.But we don't need all the objects.
viji.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by James Phillips ([email protected]):
In reading the help file for Forms there is mention of a "Calendar" list of
values and a STNDRD20.OLB and CALENDAR.PLL for displaying a calendar with a
KEY- LISTVAL trigger on a date item.
My presumption was that I could have the operator do a list of values which
would provide a "calendar" for the operator to select a date to be placed into
the date item in this block.
I followed the instructions, copied the package (PLL) and compiled it clean but
it will not see the "click_date" procedure when I try to compile the
KEY-LISTVAL trigger on the date item.
Help!
<HR></BLOCKQUOTE>
null

Similar Messages

  • Reg: query on calendar.pll

    Hi,
    how to select a particular day from every week.
    Thanks in advance.
    Edited by: user648380 on Jan 14, 2010 12:04 AM

    In your format mask...
    Select to_char(m_date,'"Mon "ddth Mon YYYY') format_date, m_date
    from (
    SELECT (sysdate+dt ) M_DATE
    FROM ( SELECT decode('Mon',to_char(sysdate,'Dy') ,'0', to_char(sysdate+rownum,'Dy'),rownum,null)  DT
                 FROM ALL_OBJECTS WHERE ROWNUM <=(add_months(sysdate,20*12) -sysdate) ) Days
    union
    SELECT (sysdate-dt)  M_DATE
    FROM (  SELECT decode('Mon',to_char(sysdate,'Dy') ,'0', to_char(sysdate+rownum,'Dy'),rownum,null)  DT 
                 FROM ALL_OBJECTS WHERE ROWNUM <=(add_months(sysdate,20*12) -sysdate) ) Days
    )where m_date is not null
    order by 2Edited by: Dora on Jan 14, 2010 9:18 AM
    Edited by: Dora on Jan 14, 2010 9:20 AM

  • Using a Calendar object in Forms 6i

    Hi,
    I've a problem when I use the STNDR20.OLB and CALENDAR.PLL. There's a missing procedure called "date_choosen" in the OLB & the form does not compile.
    Does anybody have a workaround for this or another OLB/PLL to resolve this issue ?
    thx
    Kalpana Subramanian

    Were u I look for the ofg---.pll.
    I can't find it my system
    --kalpana                                                                                                                                                                                       

  • Calendar object in Forms 9i

    A number of difficulties using Calendars in forms 9i.
    1). I can't drag/drop from the Standards object library to the forms module. The cursor remains as a cirlce with a diagonal through it.
    2). Can't find Calendar.PLL ; has this been renamed in release 9i ? All I can find is OFGCALL.PLL .

    I use OFGCALL.PLL in Forms6i. It comes with Oracle Designer. In a Key-Listval trigger of item just put:
    BEGIN
    display_calendar;
    END;
    Also you have to put to your form:
    canvases - CALENDAR, CALENDAR_TIME
    window - CALENDAR
    visual attributes - CALENDAR_SELECTED,
    CALENDAR_SELECTED_TODAY,CALENDAR_CURR,CALENDAR_CURR_TODAY
    CALENDAR_OTHER,CALENDAR_OTHER_TODAY,CALENDAR_CURR_DISABLED,
    CALENDAR_CURR_DISABLED_TODAY,CALENDAR_OTHER_DISABLED,
    CALENDAR_OTHER_DISABLED_TODAY
    procedure - DISPLAY_CALENDAR
    and attach OFGCALL.PLL library.

  • How to Use a Calendar object in Forms 6i

    Can any one help me how to display Calander LOV
    I can't find STNDRD20.OLB and CALENDAR.PLL in my system
    thx
    [email protected]

    You have to install Forms Demo from CD and then you'll find required *.olb and *.pll. All about using calendar in Forms 6i you can find in this forum - simply search it.
    Helena

  • Enable Calendar in Forms 6i in Oracle Apps Form

    Hello All,
    I have a 6i form in oracle apps that I would like to use the built in calendar from the template form. How do I do this? The developers guide is vague on this.
    Thanks,
    Bradley

    If you search this forum for using calendar (calendar.pll ....) you will find the answer.

  • Want to Calendar as in Visual Basic we can have

    Hi,
    On forms i want a calendar which should
    be invoked on field as we can do in Visual
    Basic to let the user having more pleasant
    and easy way to select the dates...
    A sample code will be very helpful.
    Many thanks!
    null

    This is from Forms on-line help - "Creating a calendar" topic:
    To create a calendar:
    1 From the Components page of the
    STNDRD20.OLB object library, copy or
    subclass the Calendar object group.
    2 Attach the PL/SQL library CALENDAR.PLL,
    which contains the Date_LOV package, to
    your module.
    3 Create a Key-Listval trigger on the date
    item for which you would like to use the
    Date List of Values window. Add code to
    display the calendar using the Date_LOV
    package.
    4 If you want the end user to be able to
    close the Date List of Values window by
    clicking on the window close button in the
    title bar, create a form level
    When-Window-Closed trigger
    The calendar will appear whenever the end user invokes a list of values for the date item. A single calendar can be re-used on many different date items. Simply create a Key-Listval trigger for each item.
    I hope this will be a little help for you.
    Helena

  • Calendar in Web-enabled mode

    Hi,
    In FORM6i Client/Server mode, we are using Calendar object that let users to choose date. But when running on Browser mode, the Calendar cannot display.
    Any help is appreciated.
    Trung
    null

    Could you please tell me where to find the calendar.pll. I could not locate it on my hard disk. Thanks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by SURESH KUMAR ([email protected]):
    Ensure that the calendar.pll is also uploaded to the right path in the box containing the web server. <HR></BLOCKQUOTE>
    null

  • How to set Calendar size in forms 6i

    Hello all,
    I'm using forms6i. I want to create a calendar control which should display when a button is pressed. i tried using standard.olb and calendar.pll files. But the size of the calendar is too small in the output.

    Hi
    But the size of the calendar is too small in the outputwhat do u mean by size is it the canvas or the button's control ?
    pls try to set the canvas's & Windows's width & height from it's property...
    Hope this works...
    Regrds,
    Abdetu...
    Edited by: Abdetu on Mar 3, 2011 5:13 AM

  • Declaration error in calendar

    after i downloaded the calendar fmb and olb and pll i attached the library and dragged everything and when i compile the form it gives me declaration error in something called navigator , picklist and wizard the errors r:1) identifier "wizard.wizard_begin" must be declared 2)navigator.get_tree_name must be declared 3)navigator.display_tree must be declared 4)navigator.get_tree_element_value must be declared 5)wizard.wizard_show must be declared 6)refresh_trees must be declared 7)navigator.to_index must be declared
    8)navigator.get_tree_element_depth must be declared
    9)navigator.get_tree_element_parent must be declared
    10)pick_list.list_in must be declared 11)pick_list.list_out must be declared 12)pick_list.get_picklist_element_count must be declared 13)pick_list.get_picklist_selection must be declared 14)wizard.wizard_show must be declared 15)wizard.wizard_finish must be declared

    i use forms 10g the calendar pll and plx and olb after i dragged every thing and attached the pll i found error that some code using itemsit tells me that they r not declared

  • Calendar LOV too small

    Greetings,
    Okay so I attached teh stndrd20.olb and calendar.pll to my form and subclassed the calendar object group and created a button with a when button pressed trigger to issue the date_lov.get_date function. The calendar pops up but it's tiny. The data blocks created for ex. the date button block has buttons with a width and height of .032 and .028 respectively. This makes the calendar non-functional as it can't be seen. How can I resize this or specify the class to create objects a little larger so they can be seen? Thanks!

    Thanks for the reply, so I checked and it appears the calendar was developed with measurements in pixels but our form uses a coordinate system in inches. I changed the form to pixel so the calendar looks great however we use a toolbar that's common to all our forms created in inch measurements so it's now huge. If I change the toolbar to pixel sizes I'll have to change every form in our application to pixel and that's over 120 forms all under change management. Is there any way to change the calendar to inch measurements in the class so it can be used in our forms or can teh coordinate system be split and different for different windows of the same form?

  • Calendar Migration 10g - 10g

    Hi,
    We are currently running calendar 10.1.2 and because of a few problems, Oracle recommended a full OCS reinstall. So right now, we have Email & RTC running in a new oracle home, while the calendar is running in the old Oracle Home. We are having trouble migrating all our data to the new calendar install, using the unicpoutu...it doesn't seem to include everything (such as "Notes" from Outlook). Does anyone have any suggestions for how we could do this, for example migrating the calendar database to our new Oracle Home?
    Thanks,
    Bill

    Hi , i followed the below procedure and it worked fine for 20 .pll files and up to 1500 form modules!!!!!
    1)Open the calendar.pll and all the other .pll files you have in the Forms Builder environment.
    2)Double-click the icon on the source code of each .pll file in the object navigator (in order to cause the system to ask you if you want to save the changes-see below).
    3)Close the .pll source code window.
    4)Select the .pll file (be careful:not a function/procedure which contained in the .pll file).
    5)Press the[b] 'delete' button of object navigator.
    6)Answer 'yes' to the question 'Do you want to save it?'
    You ' are done...
    As regards the object groups , you should simply have opened them in the object navigator before trying to open the modules to compile them...
    Simon

  • Forms 6i Calendar

    Hi everyone,
    I am trying to create a calendar using Forms 6i, but I'm missing a couple of files which are: calendar.pll and standard.olb. Does any of you guys knows by any chance where can I download these files?
    Thanks in advance!!

    Solution found

  • Calendar control 10.0

    I've inserted an ole object into a form with a calendar control 10.0 inside of it and i want to know how to assign a value of the calendar to field of the form.I´ve already imported the ole libraries.The name I've gave to calendar is 'calendario' and the field's name is 'data_exame'.

    The PJC only works in Web deployment (another benefit of Web deployment - new graphical components).
    There use to be a calendar.pll that worked in client server. I don't remember where it is but it is worth to try and download the Forms6i standard demos and see if it is there.

  • Calendar Pop up in forms

    Hi,
    We are using standard Calendar popup screen (calendar.pll & calendar.fmb).
    The below procedure is used to populate the selected date to a field named ATD_DATE (format mask propert is set as MM/DD/RRRR). But sometimes when the user selects the date, it returns ######## to the field
    if i use :ATD_DATE := date_lov.current_lov_date; instead of the below copy function, the system works properly (without ######)
    What could be the problem and how to resolve it.
    PROCEDURE date_choosen IS
    BEGIN
    copy(to_char(date_lov.current_lov_date,'dd-mon-yyyy'), date_lov.date_lov_return_item);
    go_item(date_lov.date_lov_return_item);
    if date_lov.lov_auto_skip = TRUE then
    next_item;
    end if;
    END;
    Using oracle forms 10g and database 10g.

    I faintly recall seeing some JavaScript for calendar pop ups. You might want to ask in the scripting forum.

Maybe you are looking for

  • How to create invoice using bapi  base on delivery number with example

    hi, Pl give me one example to create invoice using bapi base on delivery number (PGI).

  • Cannot open Adobe Acrobat Pro 9 in Windows Vista

    I can no longer open my Adobe or use it in any way. All of my other CS4 programs operate fine, and this is not a licensing issue. A little Microsoft Window pops up and says that Adobe Acrobat 9.1 has stopped working. It will shut down and contact me

  • Java Swing, Displaying Images in Labels

    Im rather new to java programming. Im finding it difficult to display images, as they never seem to appear when they should. When I downloaded the examples in the java tutorial (but not the picture files), changed the picture files to picture files I

  • Problem relink

    When I try to relin the oracle executable because of the message error of making target .... during the installation I receive 3errors messages: 1) Not really an error message but I found that strange: Try `basename --help' for more information. cp:

  • Grey out field

    hi, i wanna grey out field account assignment group in the header of billing document. Right now when im creating billing (VF01) before posting, it can be changed, we wanna these field cant be changed. Do we need user exit to do that or is there conf