Calendar LOV postion(x,y) on forms 6i...

version : oracle forms 6i
I am showing calendar on text time using calendar.show functionality. By default its showing calendar all the way on left side of the form..
How can we specify X,Y coordinates for calendar LOV, so it shows very near by to text item. ...I tried changing X,Y on text item property, LOV section...but no use....
Thanks...

ORA_Patel wrote:
Thanks for the reply ...
Ok...then it means its oracle forms limitation...There is no way to manually place calendar LOV on the forms 6i...
No, it's not an Oracle Forms limitation, it's the way Oracle Applications, E-Business Suite is designed to work, it has nothing to do with the Forms' limitations, it's just the way the designers of the calendar wanted it to work.
I have custom made calendar and I can display it wherever I want. But since you are working with EBS you are bound to use the EBS Calendar.
Tony
Edited by: Tony Garabedian on Oct 24, 2008 6:56 PM

Similar Messages

  • Calendar Lov not showing in custom forms on EBS 12.1.1

    Hi,
    Previously i worked on Oracle Forms 6i but at present i am working on Forms 10g (Forms [32 Bit] Version 10.1.2.0.2 (Production)) with no patch.
    I build the custom forms and compile that in custom top on EBS 12.1.1 but the calendar lov is not showing.
    Build Step.
    Used TEMPLATE.fmb for scratch.
    Field name -Order date, Item Type- TextItem, SubclassInformation- TEXT_ITEM_DATE, DataType-Datetime, FormatMask -DD-MON-YYYY HH24:MI:SS,
    List Of Values- ENABLE_LIST_LAMP, Validate Form List- No
    Add 'KEY-LISTVAL' trigger in ORDER_DATE field and write 'calendar.show;' Trigger text but it's not working.
    If Above steps apply on forms-6i then calendar lov populated on EBS 11.5.10.2.
    I know this is very old topic and found lots of post for this topic but none of them help me.
    Could any one help me if anything i missed for Forms-10g with EBS12.1.1 ?
    Thanks in advance.

    Hi Srini,
    Thanks for your reply.
    You can see i followed the all the above steps as mentioned in the article.
    But still it's not working.
    If you implemented the Calendar LOV in EBS12.1.1 through forms 10g then please give me your steps.
    AS per my understanding the below is the required steps.
    1. Item Type - Text Item
    2. Subclass Information - TEXT_ITEM_DATE
    3. Data Type - Datetime or Date
    4. List of Values - Enable_List_Lamp
    5.Add key-LISTVAL trigger and written calendar.show;
    Thanks
    Edited by: user10977928 on Aug 6, 2012 1:25 AM

  • Multi select option required in Calendar LOV

    Dear All,
    I have a requirement to select multiple dates in a calendar LOV. Upon selecting the dates, all the dates should be inserted into a table. Is there any such tool/utility available?
    Regards,
    Balaji

    use the standard calendar from the otn-forms-examples and implement your special functionality in those codes. That seems to be very easy

  • Time in Calendar LOV.

    Hi,
    we are working on forms 10g, ebs12.1.3. Developed one custom form , put date lov for one filed. it is showing calender normally.
    My requirement is need to select time ( ex. 11:30:00 A.M).
    Please help me to show time in calendar LOV.
    Thanks
    Venu.

    we are working on forms 10g, ebs12.1.3. Developed one custom form , put date lov for one filed. it is showing calender normally.
    My requirement is need to select time ( ex. 11:30:00 A.M).
    Please help me to show time in calendar LOV.Please see old threads -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Calendar+AND+LOV&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to use "Order by" clause dynamically on LOV values in 10g r2 forms

    Hi ,
    I have following requirement,please guide me.
    1 Create a List Of Values with 2 fields, Code and Description
    2. Do not use order by clause in record Group Query
    3. Attach this LOV to a field in Form
    4. When user invokes the LOV user will see two fields in LOV with header as Code and Description
    5. Now when user clicks on Column Header “Code” then LOV should be sorted on Code
    6. And if User clicks on Column Header “Description” then LOV should be sorted on Description
    Thanks in Advance.

    Kindly post this problem in this forum ->
    [Forms Forum|http://forums.oracle.com/forums/forum.jspa?forumID=82]
    And, close this thread by marked it as answered. ;)
    Regards.
    Satyaki De.

  • Calendar-LOV with time

    For an item with datatype 'DATETIME' the calendar-LOV contains the following errors:
    - if the item contains no value the current time should be displayed. For the hours is this always '1:' instead of the current hour. If the item contains a date and time the right time is displayed.
    - the radio group 'AM-PM' contains 4 buttons. Only the radio buttons 'AM' and 'PM' should be displayed (i can't figure out what the purpose is of the others two). The others radio buttons are displayed too. If your running on the web just in front of the hours the radion button is displayed, the label is covered by the hours. But if your running client/server the hours is covered by the label. I think that only the radio buttons 'AM' and 'PM' should be displayed.
    I currently working on a workaround. When i'm finished it will follow

    I've created the following workaround:
    I've changed in the object-library the trigger 'KEY-LISTVAL' for the items 'CGSO$datetime' and 'CGSO$datetime_do' in the following:
    declare
         l_cursor_item VARCHAR2(200) := :system.cursor_item;
         l_null_value BOOLEAN := false;
    begin
         set_radio_button_property('CALENDAR.AM_PM','CGSO$RADIO_BUTTON',visible,property_false);
         set_radio_button_property('CALENDAR.AM_PM','CGSO$RADIO_BUTTON_DO',visible,property_false);
         if :system.cursor_value is null
         then
         copy(sysdate,l_cursor_item);
         l_null_value := true;
         end if;
    qms$calendar.key_listval;
    if l_null_value
    then
    copy(null,l_cursor_item);
    end if;
    end;

  • DateField calendar widget is obscured by other form fields

    See image below.  This is an HTML form with the datefield expanding calendar.  Unfortunately, the calendar is showing up below other form fields. Is there any way to fix this?  This happens in IE but not Firefox (and telling people to just use Firefox is not an option).

    Since this widget is built into ColdFusion (starting with CF8), I was hoping that someone had encountered this before and had a workaround that was compatible with the ColdFusion tag.  I briefly tried the iframe method but could not get it to work.  If someone has an example of this working alongside the ColdFusion generated calendar, please post it.
    Whether it's generated by a built-in CF widget or not, it's still just mark-up and CSS, and still suffers the vagaries at the hands of the browser rendering it.
    Is the problem you're seeing the one mentioned in those Google results, ie: it's IE 6 that's causing the problem?
    When you werre trying to get the iframe solution to work, did you just try to slap it into your existing code, or did you create a simplified test rig to prove your solution before applying it to the somewhat more complicated "live" code?  Taking small, simple steps with unfamiliar territory is generally the best approach here.
    And if you have a simplified test environment, post your code so we can have a chance at making an informed comment as to where you're going wrong
    And - other than a passing mention of failing to get the iframe thing working - you still haven't actually said what you've tried already to get this working.
    Adam

  • Custom Integrator Calendar LOV

    How I can made the Calendar LOV in my custom integrator excel sheet

    by the grace of almighty ALLAH solved.
    use the following script
    DECLARE
    ln_application_id NUMBER;
    lc_integtr_code VARCHAR2 (50);
    lx_interface_code VARCHAR2 (50);
    lx_param_list_code VARCHAR2 (50);
    ln_application_id NUMBER;
    BEGIN
    bne_integrator_utils.create_calendar_lov
    (p_application_id => 800,
    p_interface_code => 'XXDOCIN_XINTG_INTF1',
    p_interface_col_name => 'P_DOCREQ_DATE',--proc params
    p_window_caption => 'Select Date',
    p_window_width => 400,
    p_window_height => 300,
    p_table_columns => 'p_segment3',
    p_user_id => 1972
    END;

  • Keeping LOV's in the regenerated forms

    I have a form in the repository which has been generated and modified in the forms designer. Now I want to regenrate the form keeping the layout. Also I have some LOV's created in the form. When I regenrate the form the LOV's I created in the forms designer are lost. Is there any way I can re-generate the form without loosing the LOV?
    Thanks in advance.

    this is the right example:
    http://apex.oracle.com/pls/otn/f?p=31517:176
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Declarative inline-popup and calendars/LOVs inside

    Hello!
    Trying to use new, declarative way of building modal popup as it was described in this article:
    [How-to declaratively launch a lightweight popup in a UI Shell|http://www.oracle.com/technology/products/jdev/tips/fnimphius/popupinuishell/declarative_popup_in_uishell.html]
    Everything is fine, except the way this popup behave compared to "af:popup" component. New popup don't let other popups inside to go out of its boundaries.
    So we are facing not very good situation, for example:
    - ADF table with edit row dialog popup.
    - Popup built following mentioned article as bounded taskflow with Form, that contains input date field (with calendar) and one input combo with LOV field
    - popup sized to fit just fields
    Result :
    - clicking on input date field or combo lov will expand calendar or LOV, that will hide deep inside the popup, showing us scrollbars
    However with good old af:popup calendar and LOV boxes just go over popup window boundaries, as expected.
    Is there a trick to change new popup's behavior to the old's one?
    Thanks.

    Thanks Frank. I'm not sure how to do that, but I'll create a SR on the SID of my customer and refer to this thread.
    regards,
    Gerben

  • How to refresh page after selecting value from LOV item , in a tabular form

    Hi ,
    I have a tabular form, which contains 2 items(columns), of type "Select List - named LoV".
    Now, couple of issues here.
    1.
    2nd item(column) in tabular form, that LoV should get populated based user's selection value in first item LoV. So how do i refer to the value, that user selected in first item's LoV? I will have to use this reference in LoV query of my 2nd item ( on this tabular form)
    2.
    How can we refresh the page, when user selectes value in first item ( from LoV). As this is a tabular form, here item type is Select List, we dont have an option to pick item type as Select List with Submit. So problem is that when user selects value for item 1, refresh does not happen and item 2 LoV does not get populated as per user's selection in item 1.
    Please help here. Would be really appreciated.
    Thanks and Regards,
    Rave.

    Thanks Ben and Dan for your responses.
    Ben, your solution helped me with refresh of page, as page got submitted.
    This answers to my 2nd question. However, I still need to know first question, which basically is, how do i refer to the value, that user selected in first item LoV.
    Issue is, I selected the value in first item LoV, it got submitted and page fot refreshed. But after page refresh, first item LoV loses its value that I had selected last time. It does not retain the selected value after refresh.
    I have an unconditional process, that on every submit(refresh) of page, I set my items with their corresponding values. But problem is what do i mention there to refer to this item.
    I looked in view source of my page, this item is referred as f03.
    So i used "apex_application.g_f03", to set this item to its value, in my uncoditional submit process. But it did not work. I tried to refer this item as "f03" in this unconditional submit process. But still it did not help, the selected item loses its value after page refresh(submit).
    Any help here would be really appreciated. Please suggest how do we refer to this item's selected value.
    Thanks and Regards,
    Ravi.

  • How to select LOV items from edit report / form?

    I'm new to ApEx 3 with very little web developer knowledge.
    I have a create record form (Page1) that uses single-select and multi-select LOVs and correctly inserts the data into a table.
    I have a basic report (tabular form) (Page2) that shows the records with the correct LOV information. When I click the edit icon for a row on Page2, Page1 displays row data for each field except the LOVs. There are no selections made in any of the LOVs.
    How do I make the connection between the tabular report and the edit form LOVs?
    Thx for your assistance.

    It turns out that the imported data did not match the LOV values. We changed the ETL processing, and now the LOV values are selected as expected.

  • How can I change LOV Font in a parameter form?

    Dear friends
    I made a report with reports 6i and in it's parameter form I placed an LOV based on a query and I want to change it's font, but it doesn't change anyway. I think it's default font is System.
    The problem is getting more serious when I use arabic windows, because it shows arabic characters as english extended characters and make the LOV unreadable. I would be so glad if someone could help me.
    Thanx.
    B. sadati

    Hi,
    I think changing the font in the Paramater form for the LOV is not possible. Long back there was
    an enhancement request filed for this , i don't think that is implemented yet.
    Prabably you have to have as a workaround is make a pramform out of Oracle Forms.
    cheers :-))
    Arun.

  • Two LOVs in same report customization form causes problems

    My report includes two parameters which are set by the user using dynamic LOVs in the customization form. The report used to only have one parameter and this worked fine. After including the second one only one of the LOVs work as they should. The second one doesn't trigger a value to be sent to the report. Working separately the second parameter/LOV also works as it should.
    The code:
    SELECT distinct ID, STILLING, F_DATO, STILLING_NAA, DATO
    FROM JOBBSOKNADER
    WHERE STILLING in :lov_stillinger
    union
    SELECT distinct A.ID, A.STILLING, A.F_DATO, A.STILLING_NAA, A.DATO
    FROM JOBBSOKNADER A, JOBBINT_KOBL B
    WHERE A.ID = B.JOBBSOKNADER_ID
    AND A.STILLING = '(apen soknad)'
    and B.INT_ID in :lov_interessefelt

    Hi,
    Are you trying to use dependant LOVs i.e second LOV depends on the value selected in the first LOV. If you are trying that, then reports does not support that. You have this facility only in forms.
    If I have understood wrong, then please give me the query you used for the LOVs
    Thanks,
    Sharmila

  • Dynamic LOV problem in Master Detail form in 3.0

    I am using Master detail layout for my app, In detail there is a LOV depending on the value of one of the items in master.
    LOV statement is like this
    select col1 a,col1 2
    from test_tab
    where col2 = :P2_VAL ;
    Note: :P2_VAL is the value of the one of the master table column value
    This code is working fine in version 2.1 .
    After I Upgraded to 3.0 , it is not working .
    If I put the hardcoded value like col2 = 'TEST' , it works for those values. Any suggestions for this problem is greatly appreciated.

    I solved it by commenting the Go_Item(startitm); line in the clear_all_records program unit which is generated by oracle forms.
    as shown below.
    IF :System.Cursor_Item <> startitm THEN
    --Go_Item(startitm);
    Check_Package_Failure;
    END IF;

Maybe you are looking for