Force date box to use popup.

I would like to force users to have to use the date picker popup window to select dates, due to formatting issues. Is there a way to do this?

Rodney:
This is what we've thought of at our company. Unfortunately they want a better solution:
put in a note for users "Date format must be MM/DD/YYYY or MM/DD/YY, or you can use MM-DD-YY, MM-DD-YYYY" and use the appropriate PL/SQL to convert to dates.
select to_char(to_date('06-06-06','MM/DD/YY'),'MM/DD/YYYY') from dual
comes out fine as I'm sure you already know. Processes conditionally based on length of the date.
Problem is that our users are going to want to enter it as June 06, 2005. We can process this via SQL like (which converts easily to PLSQL again and can conditional process)
select to_char(to_date('June 6, 2006','Month DD, YYYY'),'MM/DD/YYYY') from dual
I'm just wondering if there's an easier way, since this means that there will be 4 processes for each date in theory.

Similar Messages

  • Firefox 15.0.1 will not allow me to type in the data boxes such as the one I am using now. I am contacting you with Microsoft Internet Explorer.

    I just upgraded to 15.0.1. Firefox will not let me type in data in data boxes such as a dictionary lookup or even the question box within the Firefox Help. The box usually comes up with the type of sinformation needed within the box, such as "word lookup" but I cannot type over the words, delete them, erase them. The box will not allow data input.

    Totally unrelated to my problem with Firefox I got hit with a virus/malware problem which my virus protection failed to catch/stop. I was forced to go to safe mode in Windows and restore my system to a few hours earlier. That got me back to Firefox 14 and there are no issues with Firefox 14 with me entering data as there is in Firefox 15. I am ignoring Firefox's offer to upgrade for a while as I cannot believe that I would be the only one with the issue I described in Firefox 15. Thank you both for your input on how to correct the problem. I will try them out if I find the same problem later on when I "upgrade" to Firefox 15.

  • Is there a problem using popup LOVs in a portal form with a bind variable?

    I have a portal form with 2 LOVs. The second LOV is a dependent LOV whose bind variable can be NULL. I have read Note 263923.1, "How To Create Dependent Lovs In Forms", and my form works as long as I use combo boxes to display the LOVs. I need to use popups so the user can search the LOVs as they are quite lengthy. Plus I want to be able to pick a value from my second LOV without selecting a value from the first LOV -- hence, my bind variable can be null and that is where my problem lies. As long as I select a value from the first LOV, the second LOV popup will work. If I click on the icon to display the second LOV without pre-selected a value from the first LOV, I get the following error:
    POPUP LOV ERROR:
    LOV: "9A17692880B6B8509F514F5B9CA9EC808DD403218B3CF19A33C04CD1FAB0ADE17ADC33E6B67998A933357CE5264D204E"
    Parse Message: Parse as pre-set global: "TORE".
    Find Message: LOV is of type DYNAMIC (LOV based on SQL query).
    Query: "SELECT ...."
    wwv_bind.prepare_bind: ORA-01403: no data found
    My form is based on a table with a custom layout. The sql for the second LOV is similar to: SELECT ENAME, EMPNO FROM SCOTT.EMP WHERE (DEPTNO = :DEPT AND :DEPT IS NOT NULL) OR :DEPT IS NULL.
    Thanks in advance for any help,
    Carol

    Don't use EPS any more! It does not support transparency nor color management.
    If you save vector files from Illustrator, use AI with PDF compatiblity.
    If you save image files from Photoshop, use PSD.
    If you save image files combined with vector forms and/or text from Photoshop, use PDP which is a Photoshop PDF.
    For vectors from Illustrator use CMYK files.
    For images use RGB, conversion to CMYK should never done before PDF export, better, if the printer allows it, is to export a PDF with live transparency as it is PDF/X-4
    If the printer requires a PDF with CMYK only export a PDF/X-1a.

  • ICal 5.0 double click in date box (month view) doesn't create 1 hour long event anymore

    Double-clicking in a date box in the "month" view used to create a new one hour long event.
    Now, in 5.0 it creates an all-day event by default, and removing "all-day" results in a 6 hour long event. Anyone know how to get it back to the "old" way? really annoying to have to change it each and every time! Thanks.

    Lisa,
    Here are some of the iCal event creation rules which may help you:
    Enter a name, date, and time duration for the event, and then press Return.
    For example, you can enter “Super Bowl Party Feb 6,” “Movie with Rebecca on Friday at 7pm,” “Soccer Game on Saturday from 11am-1pm,” or “Breakfast with Jon,” and then press Return.
    If you don’t enter a time duration for the event, iCal sets the event’s duration to 1 hour.
    If you don’t enter any time information for the event, iCal makes the event an all-day event.
    If you enter “breakfast” or “morning,” iCal sets the event to start at 9 a.m.
    If you enter “lunch “ or “noon,” iCal sets the event to start at 12 p.m.
    If you enter “dinner” or “night,” iCal sets the event to start at 8 p.m.

  • 0 down vote favorite share [fb] share [tw]        How to hide cut/copy/paste/Replace- menu on the UIWebView when it is being displayed over the keyboard.  Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text b

    How to hide cut/copy/paste/Replace… menu on the UIWebView when it is being displayed over the keyboard.
    Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text box it shows the keyboard. Now If user tap and hold on text box it shows a popup menu. Now while keyboard and pop up are being displayed user scrolls the view. At this time it shows pop up over the keyboard which I need to hide.
    I tried setMenuVisible of UIMenuController when popup rect and keyboard rect intersects each other on viewDidScroll but it didn't help me.
    Any clues will help a lot.
    Thanks.

    You are more likely to get an answer if you post programming problems to the Developer forum. This forum is intended for normal user level problems.

  • Can we set the dynamic data source when using getReportParameters() ?

    Hello!
    I have a report where one of its parameters refers to a list of values (LOVs). This list of values is an SQL Query type. When the data source used in the report is defined in the BI Publisher server, I'm able to get the report parameters using the getReportParameters() function in my application. However, if the data source is not defined the function throws an exception, which is understandable.
    I decided to dynamically set the data source so that even if the data source used by the report is not defined in the BI Publisher server, it still will be able to get the LOVs for the parameter. I tried setting the JDBCDataSource of the dynamicDataSource for the ReportRequest object that I passed to the getReportParameters() function. Please see the sample code below:
    reportRequest.dynamicDataSource = new BIP10.BIPDataSource();
    reportRequest.dynamicDataSource.JDBCDataSource = new BIP10.JDBCDataSource();
    setReportDataSource(reportRequest.dynamicDataSource.JDBCDataSource, connectstr, jdbc, dc); //function to set the values for JDBCDataSource object
    reportParams = webrs.getReportParameters(reportRequest, uid, pwd); //call the getReportParameters
    I was expecting this to work as this is what I did to dynamically set the data source before calling the runReport function. So, my question is -- can we set the dynamic data source when using getReportParameters() ? I tried this both in versions 10g and 11g. It does not seem to work on both versions.
    Regards,
    Stephanie

    report_id column of apex_application_page_ir_rpt can help us uniquely identify each saved report.
    We can assign this report_id value to a page item and this page item can be put in the Report ID Item text box of the Advanced section of the Report Attributes page of the IR.
    This should load the saved report identified by report_id and you can get rid of javascript
    Regards,
    Vishal
    http://obiee-oracledb.blogspot.com
    http://www.packtpub.com/oracle-apex-4-2-reporting/book
    Kindly mark the reply as helpful/correct if it solves your problem

  • Complete action using popup and call button in text message

    I hate to have my first post a rant, but after my phone updated to jellybean (in which it didn't even ask if I wanted to update, which I find rude) there's two major annoyances I have.  One, the "complete action using" popup takes an extra click to get thru, there's no more check box, just two buttons asking for "all the time" or "just once".  Two, while writing a text message in landscape, there's now a "call" button right next to my back button.  It used to be some kind of info button, and if I missed click (which happens often) it would just bring up additional info.  Now, while I'm trying to go back to my list of text messages, I keep calling people. 
    Is there any way to revert these back through some kind of settings?  Thanks for any info.
    P.S. The notifications bar is ugly now too, it's too drab in color, can I change that?

    No, you can't reverse the OS system update. Most of users with your phone model have been very impatient to get this update.
    You wrote:
    One, the "complete action using" popup takes an extra click to get thru, there's no more check box, just two buttons asking for "all the time" or "just once".
    With this dialog, you select the preferred option and then touch "all the time" to have that action always complete in that manner. You won't see the pop-up again for that particular action unless you clear the defaults.

  • Can you put line break in text in the data box when creating a chart.  i.e. if you have a bar chart

    Can you put line break in text in the data box when creating a chart.
    i.e. if you have a bar chart with text underneath each bar, can you break it when you’re entering it instead of manually afterwards
    Thanks

    http://help.adobe.com/en_US/illustrator/cs/using/WS3f28b00cc50711d9fc86fa8133b3ce158e-8000 .html
    See "Enter labels"

  • What else must I do to force data entry other than making the field required in LC 9 Forms Designer?

    I am trying to make sure that fields are populated with data prior to moving to the next field, but it seems that simply making the field required is not sufficient.  What else must I do to enforce data entry within required fileds?
    Thank you,

    There are a variety of scripting techniques that can be used based upon the form requirements, UI aesthetics, designer preference,... The script below forces data entry into a text field object called 'tf1' but it is a dangerous practice and should be used carefully. You may find yourself in a infinite loop based upon the tab order. A safer pattern includes global field validation upon submit.
    // form1.page1.subform1.tf1::exit - (JavaScript, client)
    if (this.isNull) {
      xfa.host.messageBox("tf1 is a mandatory field.","Text Field 1 Error",0);
      xfa.host.setFocus("form1.page1.subform1.tf1");
    Steve

  • How to just send I data (No Q) using ni2920 USRP? (ASK modulation)

    Hi.  
     I am trying to send three level sequences as amplitude shift keying (ASK) modulation. my sequence has three state of (-1, 0 , 1). I am using ni2920 usrp to send carrier with amplitudes of -5v, zero, and +5v for each of the mentioned levels respectively (ASK) (Sample rate=25 or 50MS/s). to do that,  I saved a .txt file with voltages amplitudes in the PC and I am reading this .txt file and send them with USRP (I expect USRP to multiply these values with cos(carrier freq) and send it to its RF out port. However there some problems:
    1. I am not sure about the order of data USRP expects to have when reading .txt file in terms of "I" and "Q".  Assume I am sending  0,0,-1,1,1,-1,0,... I have a txt file with 0,0,-5,5,5,-5,0 saved .. BUT every time my code reads this txt file , it assign a vector of <"I","Q"> pair at output of LAN cable instead of considering all numbers as "I" data. my problem is: How can I force USRP to just send I data (no "Q") ? (This is required since I am using ASK modulation)
    2. when I read zero from txt file and send it, I expect to see zero level RF spectrum at output BUT according to my observation there is spectrum content of output RF when sending all zero sequences. How can I force USRP to send nothing (zero) when the bit=0? 
    Any help is appreciated. Thanks.

    1) You can send data to the device as complex double-precision data or binary I16 data.  If using the complex double type, just make the imaginary component of each complex sample 0 (Q is the imaginary componnent).  If using the binary I16 data, the samples are interleaved I, Q, I, Q, ... so just make every other sample 0.
    2) Even when sending 0s for I and Q, if the device is tuned to a frequency and the output path is enabled, you may see some power at the carrier frequency that is basically leakage from the local oscillator.

  • Force Reporting Services 2012 use https

    I have recently set up a new instance of SQL Server Reporting Services. I have it running and am in the testing phase of the deploy. I have set it up to use SSL and basic Authentication. This all works. The report writer has been able to deploy
    reports and start testing. In this testing we discovered that the menu on the left of the report manager in the data sources or reports management window will not use https. So let me explain it more.
    If you browse to a report or data source in Report Manager then highlight and click on the down arrow and choose "Manage" you will get a page with the report's or data sources' properties. It will also have a menu on the left with items
    like "Subscriptions", "Dependent items", and "Security". If I click on one of these items I get a 404 page error. I can then go to the url and simply put a 's' in the http so it read https and it will work.
    Due to security requirements I have had to block all port 80 traffic, if I open port 80 it will work. It only works as http with port 80 open. The menu url never defaults to htts.
    I have set the root url to have an https at the front. This made no change.
    I tried setting the ReportServerUrl in the c:\Program
    Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.configfile. I set it to include the https at the front as such https://DNSentry.com/reports.
    Yes I changed the url so the Reports is the Report Manager. This broke the entire Report Manager. It would give me an error of:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    I have also tried to force report portal to use https by setting the secureconnectionlevel in \c:\Program
    Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config to 2, then to 1 and it gave me an error both times.
    The underlying connection was closed: An unexpected error occurred on a send.
    If anyone knows how to force Reporting services to use https for all urls or if I am doing something wrong please let me know.

    @Diskokid I have exactly the same problem, did you find a solution yet?
    -edit- _remove the HTTP from the Web Service URL_
    That did it for me. I got an error at first but it turned out that the certificate was wrong. The
    machine was named ABACUS but could be reached using reports.company.com. I renamed the machine
    REPORTS, requested a certificate  and used that certificate to set up SSL and used the following url  as a guide to check all.
    http://nlsimmons.com/SQLScraps/?p=259

  • How to move record from one box to another box by using or or or

    Wonder if someone has done something like below:
    display data in the A box, then move any one or two or more records to B box by using the symbol >, >>, <<
    Any help will be appreciated!!!!
    Thanks in advance!!

    Hii user454615,
    I'm unable to understand what u want to achieve. Do u want to move elements between T lists like the way it happens in a shuttle?
    Abhishek.

  • New to LiveCycle and question on Current Date box.

    Hi all,
    I'm very new to designer and I'm trying to put in a Current Date box. The issue I have is that it displays as 2/26/09 and I need it to display as February 26, 2009.
    I've gone into the patterns and enter that, but it doesn't change anything.
    When I drag the Current Date box into the form, I get a message that says "This object has settings that this form does not support. These settings are removed when the object is placed on the form."
    What is this? I made this form off of an existing PDF file that has nothing in it.
    Thanks for any help,
    Jason

    Ah, ok I see what's going on - I didn't realize there was a prebuilt current date object.
    The reason it doesn't change the format from the Patterns is because it is using a script like the one I gave you.
    You need to open the Script Editor window (Window->Script Editor -- I think its default location is just under the toolbars above the page you're working on) then when you click on the object the Script Editor will list scripts attached to the object.
    You need to change the script where it says DateFmt(1) to DateFmt(3).

  • Forcing Dates

    I'm after an applescript that will allow me to force dates that fall on a weekend back to a weekday. For example we have a recurring event that happens on the 7th of every month, however if the 7th falls on a Saturday we need to force it to the previous Friday, and if the 7th falls on a Sunday we need to move it forward to the next Monday.
    Does anyone know how to do this or even if it is possible? We're using iCal 1.5.5 on Mac OS X 10.3.9.

    If you prefer the short answer: No. The longer answer is a good bit longer but gets you no further.
    It SHOULD be possible, but I don't think it is.
    Applescript won't do it for you. You may not be aware that setting up a recurring event puts only a single event in your calendar file. Every time iCal displays a window with a time frame it calculates which recurring events should be displayed, and displays them. If you modify one of the recurrences iCal makes a copy of the event with the changes and saves it as a detached recurrence. Applescript doesn't know how to make a detached recurrence. Indeed, Applescript has to start with the first occurrence and work forward, parsing the recurrence details, to find whether there is a recurrence in the current time frame. It can be done in simple cases. This is not a simple case.
    iCal's interface for setting recurrences does not allow you to set all the possibilities that it can handle. For example, you can't set a recurrence on the last day of the month, but if you have one, iCal will properly display it. The easiest way of "fooling" iCal for such things is to make a close approximation to what you want, drag it to the desktop, delete it in iCal, edit the desktop copy with TextEdit (or similar) to get the correct RRULE (recurrence rule) then drop the edited file back on to iCal.
    I think (and here I would welcome correction from an expert!) that editing the rule to
    RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR;BYMONTHDAY=7,8,6;BYSETPOS=1
    should work, if iCal was fully compliant with the calendar specification - but there are certainly instances where iCal is not fully compliant, and either this is one of them, or I am not correctly interpreting the standard - or both!
    AK

  • Sharing iPad2:  how to protect my own data when others use it?

    A single iPad2 is shared with others.  How do we protect individual data when others use the iPad?

    I use iCab and Comcast email with no problems. Try restarting your iPad. Try quitting iCab, restart the iPad and then try again. Just keep fighting the loop and see if you can ultimately get it to work if you have to.
    Try using the Connect Lite version of the Xfinity/Comast mail on the iPad. You will have to change that in the preferences on the server. It is in the general section. You want to select Xfinity Connect Lite. I have Comcst and I think this makes it a little easier to navigate and its a little more iPad friendly.
    If you want to be able to write mail in the Comcast webmail on the iPad you have to change to use Plain Text instead of HTML in the Composing preference. If you don't, the keyboard will not popup when you tap in the text field. You will be able to enter the email address in the To: field and the subject in the subject line but that is all unless you switch to plain text.
    I actually prefer the mail app on the iPad to using the Comcast webmail but that's just my preference.

Maybe you are looking for

  • Data transfer of BP with Vendor details using the EDT tool - BP_XDT - KCLJ

    Hi All, I'm trying to use the EDT tool with transfer type 15 to upload a BP into R3 with Vendor details.  I've successfully created the BP and Vendor, however I was looking to extend the migration to include purchase org data, unfortunately I couldnu

  • How can i make a button link in flash??

    Hey Guys, Im pretty new to flash but really need your help and guidance. I have a nice video ive created, and i want to make the buttons link to certain pages on a website it will be displayed at. If you want to see the flash video in place on the we

  • Update run time menu

    As you could see in the block diagram, once the user has selected the channel they want to work on in the main GUI, click Proceed to Adjust Values for the second GUI to pop up. Also, in the second GUI, the run-time-menu should also only show the numb

  • Calendar app for IPhone 4S

    My IPhone 4S will receive calendar invitations from Google, Blackberry and others, but when I create an event on my IPhone and select people to invite the IPhone will not send any invitiation to anyone.  It will place the event on the phones calendar

  • APP-V Packaging Web Client

    Hi - I am working on a project where I need to package The Microsoft Azure Remote App available here: https://www.remoteapp.windowsazure.com/ClientDownload/Windows.aspx The systems this app will be installed on, the users have no admin rights and app