Calendar Display in Forms9i through bean

I have invoked a calendar in Forms9i using Bean Area. The calendar opens in a separate window and the date selected is returned to the date field. Upto this form works fine. But when I press TAB button, the focus goes to the IE Browser's Url, this is the problem.
I want it to return to the respective date field.The cursor blinks in the respective date field after giving GO_ITEM but the actual control lies in the IE browser.
Can anyone give any solution for this?
Thanks in Advance...
Shahul

This forum is for posting feedback about the OTN site.
The best place for your question is probably the Forms.

Similar Messages

  • Is there a way to default the monthly calendar display so that the current day always shows on top?

    Is there a way to default the monthly calendar display
    so that the current day always shows on top? ie, I want to always be able to see what's in the future 3-4 weeks, not what's in the past 3-4 weeks. The default monthly display is archaic--only allows you to see through the last day of the month. Suddenly today
    is Oct. 30th, and I have a ton of projects lined up in November, but because I haven't been scrolling down every day, I haven't been aware of them every day. I realize there are other tools in Microsoft to help me stay on task, such as reminders and such,
    but it would be helpful if I could always have the current day display on top of the monthly view so I can quickly scan what's coming up in the next few weeks. 

    Thank you!
    Right, I already have it in Month view. My question is a little more specific--I'd like for the current day to always display at the top. For example, today is Oct. 31st, so the current day is at the bottom of the calendar since it is the last day of the month.
    I can view everything in October that I've already completed. What I can't see are the future weeks because we haven't hit November yet. I'd like for the current day to always display at the top of my calendar so I can always see what's coming in the following
    three - four weeks (whether they're a part of that month or not). I've been to other forums trying to find the answer, and have come across the same exact question from frustrated users--but there seemed to be no solution. So I'm posing the question myself
    in this forum. Do you know if this is possible? What I found from other forums is that Outlook defaults to a physical 'desk' type calendar format--so just as I'd use a paper calendar at my desk, I wouldn't be able to see the following weeks unless I either
    flip the page to that month or I come to the first day of the next month, thereby tearing the the old month off and now only able to see the current month. That format is just so...paper...and archaic! Essentially I want the calendars to loop so it doesn't
    even really matter what month it is--I just always want to see what lies ahead without having to scroll down. With our being in the Technology Age, I'd assume this is a logical expectation, but we may be stuck with the replica version of the paper-desk-calendar
    format until Outlook programmers add this Technology Age feature in newer versions.  
    See, this month kind of messed me up because I have so many projects for November that start tomorrow and next week, but I haven't seen them until this week. I would have been better quipped--at least expecting them--had I been able to see all of those projects
    since last week or the week prior.  
    If there is no solution to this answer, would you know how I can contact Outlook to provide feedback? I'm guessing a newer version is on its way...
    Thanks again in advance!

  • Null Error in Displaying a value through view attribute

    I just want to display a value through message styled text bean from view attribute .
    For that i use the code in PR:
    But it gives null error: Please any one help me.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("StaffInfoVO1");
    if(vo!=null)
    OARow row = (OARow)vo.getCurrentRow();
    System.out.println("vo is not null");
    String str1 = row.getAttribute("FullName").toString();
    OAMessageStyledTextBean stext1 = (OAMessageStyledTextBean)webBean.findChildRecursive("RFStaffName");
    stext1.setText(str1);
    While getattribute("FullName") executed it gives null error. Why?
    how to rectify?

    Hai,
    I can execute the query in toad which returns 1 row of data. It is not null rows.
    But my vo object, why it is not executed. Returning null. I dont know.. Too many hours i spent.
    VO query:
    select distinct papf.person_id,papf.FULL_NAME,
    papf.EMPLOYEE_NUMBER,
    papf.EMAIL_ADDRESS,
    papf.WORK_TELEPHONE,
    hla.COUNTRY,
    sysdate,
    pap.NAME,
    haou.NAMe department,
    ood.ORGANIZATION_NAME
    from
    per_all_people_f papf,
    per_all_assignments_f paaf,
    per_all_positions pap,
    per_jobs pj,
    per_grades pg,
    per_person_types ppt,
    hr_all_organization_units haou,
    hr_locations_all hla,
    org_organization_definitions ood
    where
    papf.PERSON_TYPE_ID=ppt.PERSON_TYPE_ID and
    papf.PERSON_ID=paaf.PERSON_ID and
    paaf.POSITION_ID=pap.POSITION_ID and
    paaf.JOB_ID=pj.JOB_ID and
    paaf.BUSINESS_GROUP_ID=haou.BUSINESS_GROUP_ID and
    papf.person_type_id=13 and
    haou.business_group_id=202 and
    haou.NAME like '%Global%Sales%' and
    papf.FULL_NAME like '%Stand%' and
    paaf.LOCATION_ID=hla.LOCATION_ID and
    paaf.ORGANIZATION_ID=ood.ORGANIZATION_ID and
    sysdate between papf.EFFECTIVE_START_DATE and papf.EFFECTIVE_END_DATE and
    sysdate between paaf.EFFECTIVE_START_DATE and paaf.EFFECTIVE_END_DATE
    Help Me.
    Thanks & Regards

  • Calendar displays 24 hours versus 12 hours

    I somehow inadvertinly changed my daily and weekly calendar display to 24 hours.  In day or week view, there are 24 hour segments.  Does anyone know how to change back to a 12 hour display?

    Hi Bob
    Ok Try this one, now if a time was specified, it should be used:
    $SiteCode = Read-Host -Prompt "SiteCode"
    $SiteServer = Read-Host -Prompt "Servername (FQDN)"
    $CollectionsToChange = (Get-WmiObject -Namespace "root\sms\site_$SiteCode" -Class "SMS_Collection" -ComputerName $SiteServer | Select Name, __PATH |Out-GridView -OutputMode Multiple)
    foreach ($collectionObj in $CollectionsToChange){
    try{
    $collection = [wmi]"$($collectionObj.__Path)"
    $collection.RefreshType = 2
    if($collection.RefreshSchedule -ne $null){
    $interval = ($collection.RefreshSchedule)[0]
    $Interval.HourSpan = 12
    } else {
    $IntervalClass = Get-WmiObject -List -Namespace "root\sms\site_$SiteCode" -Class "SMS_ST_RecurInterval" -ComputerName $SiteServer
    $Interval = $IntervalClass.CreateInstance()
    $Interval.HourSpan = 12 #Update after 12 hours
    $collection.RefreshSchedule = $Interval
    $collection.put()
    Write-Host -ForegroundColor green "$($collection.Name): $($collection.CollectionID)"
    } catch {
    Write-Host -ForegroundColor red "ERROR: $($collection.Name): $($collection.CollectionID): $($_.Exception.Message)"
    Cheers,
    Thomas Kurth
    Netree AG, System Engineer
    Blog:
    http://netecm.netree.ch/blog | Twitter:
    | LinkedIn:
    | Xing:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Help! My calendar displays Hindu months.  How can I get it back to American?

    My calendar displays Hindu months.  I'm not sure how that happened but I need to fix it back to English/American months.  Can anyone help me?

    Go to Settings>General>International>Calendar and set it to Gregorian.  Or is this happening on your Mac?  If so, go to System Preferences>Language & Region and choose Gregorian from the Calendar drop-down list.

  • Calendar display incorrect

    Hi,
    I created a crystal report that requests the user to select a date range from a calendar however the calendar  doesn't display properly.
    it displays the calendar but with code inserted into some of the boxes...and the calendar display looks strange
    the code that displays is:
    function(){ this.length=0; return this;}
    Can anyone help?

    I had the same issue, I changed the time zone to something other than the correct zone. Saved it. Then went back in and changed it back to correct timezone and this resolved my issue.

  • Calendar display off by two days

    My phone calendar displays all events as two days earlier but each entry when opened has the correct date e.g. all todays events 8th Nov show as Sat 6th Nov. When i hit the today button it shows the 6th not the 8th but shows the 8th events.
    Confused? So am I

    i guess we have the same problem...my mac & me account are synching properly but when it comes to my IP the bdate is 2 days ahead of the actual date.
    can anybody has the solution for this
    thanks

  • Calendar display issues for "All Day Events" coming from Exchange Server

    My problem is with the display of All Day events. I'm running a 3gs, Outlook 2007 on winxp, connected to a Exchange 2007 server. When an all day event is put in for multiple days the phone calendar displays it as starting at midnight going to midnight, and sometimes wont display the event on the list view on the phone. I can correct the display by editing it on the phone and making it all day there, but then the category I assigned the event in outlook goes away in outlook. All day single day events work just fine. Any suggestions?

    Sort of same issue:
    All day events scheduled from Entourage display incorrectly on iPhone/iPad as non-all-day events (which block out entire day/multiple days)
    All day events scheduled from iPhone/iPad show up correctly in Entourage as all-day events, but incorrectly with an *extra day* added.

  • Calendar display issues

    Hi all,
    i have an iphone 3s and have it syncing with exchange nicely. i have found that on some days in my calendar when i go to that day the iphone cancels the calendar and takes me back to the homepage. i have deleted my exchange account on the iphone and reconfigured it and still have the same problem. does anyone have any ideas?

    Sorry Tattsy I am not going to offer help here but your situation is somewhat similar to mine and I thought why not throw our problems together maybe someone can help us both.
    My problem is with the display of All Day events. I'm running a 3gs, Outlook 2007 on winxp, connected to a Exchange 2007 server. When an all day event is put in for multiple days the phone calendar displays it as starting at midnight going to midnight, and sometimes wont display the event on the list view on the phone. I can correct the display by editing it on the phone and making it all day there, but then the category I assigned the event in outlook goes away in outlook. All day single day events work just fine. Any suggestions?

  • IOS 6 calendar display jumps to different dates????

    iOS 6 calendar display jumps around. On my iPod touch 5, iOS 6, after editing an event, the display jumps to random list dates before ending up on the correct date.  These gyrations take several seconds and will dwell on the wrong date for a while.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.

  • Storm 9800 calendar display on homepage

    Hey, I'm having an issue ever since I uploaded the newest Storm update, my calendar appointments and reminders used to fill the homepage with upcoming events when I clicked on them.  Now, ever since the update, only the next three display and I can't find a setting in calendar or settings or anywhere else that talks about how to change the number of upcoming events that display.  Any ideas?

    This calendar display would be controlled by your theme. Are you still using the same theme you had before the update?
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Full Calendar display on form

     

    Vedant wrote:
    Hi,
    Full year calendar display is my project requirement . Basically what i have to do is full year calendar display on the page and when i click on any date of the month,Opportunities corresponding to that date will display as a report on next page. This is my project requirement.
    Thanks & Regards
    VedantYou can use the built-in jquery with some custom code and achieve this
    1. Create a empty div on your page:
    <div id="fullyear"></div>2. Create a text field lets say P1_DATE
    3. Add the below code to page header > JavaScript
    $(function() {
        $("#fullyear").datepicker({
          numberOfMonths: [3,4],
          //you can set the year using page item for example replace 2013 with &PX_ITEM.
          defaultDate: new Date(2013, 1 - 1, 1),
          onSelect: function(date) {
                //on select populate date into a page item
                $s('P1_DATE',date);
                //submit page
                apex.submit({request:"ANY_REQUEST",showWait: true});
    });http://apex.oracle.com/pls/apex/f?p=46417:46

  • Icloud calendar display of events on pc

    Some of the events on the calendar display with the event printed in a bar of color across the square of that day. Other events display with only a dot of color after the event's name. The first option is better because it makes the event stand out more. How do I get all events to display with a bar?

    You can change the calendar color from Red to something else, but the events will all be the same color

  • No Calendar Display

    I have a new iPhone5 with iOS 6.0.2 installed. iCloud is set up.  My problem is I cannot get any calendar to acutally display.  I can see list of calendars, can hide names of calendars, can Show calendars, and change the color of a calendar.  But at no time does an actual calendar display.  Help!

    It doesn't seem to work for me neither...
    Not as explained here: http://download-uk.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/bldapp.htm#CEGIGEJI
    I also found an error in the help for the "Item Containing End Date". There's stated that the date format should be YYYMMDD... I suppose that's YYYYMMDD (like in the online doc)
    I didn't see that before... bizar.
    Dimitri
    -- http://dgielis.blogspot.com

  • Since upgrading to Yosemite on my Mac airbook I can no longer sync my outlook 2011 calendar onto my iPhone through iTunes, what's happening apple, I am not happy!!??i

    Since upgrading to Yosemite on my Mac airbook I can no longer sync my outlook 2011 calendar on my iPhone through iTunes??!!

    Apple doesn’t routinely monitor the discussions. These are mostly user to user discussions.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

Maybe you are looking for

  • Empty start validity date for an org unit

    Dears! some time ago we discovered a disturbing issue in Productive data. Some org units have an empty start date. I have no idea how it could be created by users, but now we need to solve it. The records with empty start date are visible in PP01 onl

  • Photoshop Text Blurry/Low Resolution when Printed

    In photoshop I created a document that is 8.5x11, the size of standard printing paper, with a letter in a handwritten font. When I print my letter the print quality is not so great. I have resolution for the image set to 100. There is a little bit of

  • HTTP to JDBC

    Hi Experts, I am doing a HTTP to JDBC synchronous interface, while testing it from the Component Monitoring using the Test Message, i get the status as Message Sent . But when i check it in the SXMB_MONI i am getting the following error com.sap.aii.a

  • Repeating the loop in ecc 6.0

    hiii, can any one of you help me out with how can i use the reapeted processing of a loop in smart form in version ecc 6.0. because in the older versions when we create the loop we find this option on the general attribute button. but in ecc 6.0 is n

  • How do you block calls to an Iphone?

    how do you block calls to your Iphone?