Manually enter dates in prompt

Post Author: Scott
CA Forum: General
I created a parameter which prompts the user to enter a date range. The problem is.........I want to enter the dates rather than chose from a dropdown list.
Any thoughts?

Post Author: rmhogan
CA Forum: General
Try changing the options in the "Edit Parameter Field" to Discrete Value. 
Robert

Similar Messages

  • Manually-entered date information doesn't stay with photos outside iPhoto

    Hello--
    I'm having problems trying to share the date information I've manually added in iPhoto to all my scanned photos.
    I understand because they are scanned photos they are really new files where the image creation date is the day they were scanned. However, why is it that I can export the title, keywords, and location information of any of these scanned photos but not the date information that iPhoto is storing and using to sort the photos by date?
    I've tried exporting the photos to iDisk, sharing via e-mail with the title, keyword, and location information, and downloading specialized EXIF viewers (now understanding that a scanned photo isn't really going to have any EXIF data like a digital camera photo would). The only place external from iPhoto that I seem to be able to view the date information I've added to the scanned photos is in my MobileMe Web Gallery (but not when uploaded to a family member's Web Gallery), but only when selecting the "Show Detailed Info..." menu item after opening a photo...this date info does not come along when I download the photo from my own Web Gallery.
    I've also tried changing the date on these scanned photos using the Batch Change... menu item with no resulting change over setting the date in the information area for the photo (I still only see the date I've set in iPhoto or in my Web Gallery).
    My ultimate goal is to send many scanned photos with titles, keywords, and date information to a family member also using a Mac to build a slideshow with photos from several of us all sorted properly by date. Right now we're unable to figure out how to do that. Entering the date information into the description field allows that textual data to come along when I share via e-mail, but it doesn't solve the problem of allowing other people to sort automatically by date with a larger set of photos without them having to transcribe that textual date info into the date field in the information area of the photo.
    Thank you very much in advance for any specific instructions on making this work! This is getting quite frustrating at how something so seemingly simple and valuable is turning out to be so difficult to figure out.
    --Bill

    Terence Devlin wrote:
    audio capture/auto ID3 tagging
    What do you mean by this?
    On the Windows machine I have an app called 'Spin it Again'
    I use it for Vinyl and analogue tape capture for stuff that I could not fford to go out and buy new ( if even now available).
    All I have to do is put in artist name and title and it finds from online database (Gracenote plus others) , it analysis the audio and automatically splits the single capture in to individual tracks, saving the track names to each track, it uses recorded track length and database info to to comfirm/database naming. It also has basic audio filtering/crackle/hiss removal, audio cleanup options all in one package.
    I have yet to find anything that does the same job on the Mac,
    iTunes will auto tag tracks from an online database.
    The iTunes store database is very limited and does not have much of the older stuff. Plus I have always used FLAC format as my 'archive store' for all my audio, so ripping with iTunes is out For CD's I use EAC with Accurate rip to rip them and that also uses an online database with much greater range than iStore.
    Have you searched on MacUpdate?
    To an extent, and Garmin are now producing some better software for mac for their GPS units. But still nothing much in the Freeware world yet. I have tried a few apps for GPS over the last year (yes I have had a Mac for almost a year now) but still found nothing that has all the functions that I am used to on the Windows machine, and as I still have the Xp machine set up next to the mac , all on the same screens, then there is no difficulty in swapping machines. It is not of that great an importance that I am going to spend too much time on searching for Mac apps..something will turn up in time...as Name Mangler has done. I spend too much time on these bloody machines as it is...it is now 1210...and I have been on here since 0800...I had planned to go down the farm and do some work down there this morning...another morning gone and nothing real to show for it.

  • Validating manually entered dates

    I have a number of date fields on various pages which use various Date Picker formats. For example one Date Picker field might use one of the date formats, while another Date Picker field might use one of the date and time formats.
    My question is: Do I have to hardwire the validation of each date field (for example to_date(:inputDate, 'DD-MON-YYYY')) which means that my validation is invalid if I select a different format for the Date Picker, or is there a way of writing a more generic date validation test (for example to_date(:inputDate, get_format_from_date_picker_somehow))?

    Hi All,
    have a look at Home>Application Builder>Application 115>Application Attributes>Edit Globalization Attributes:
    Application Language Derived From      
    Specifies how Application Express determines or derives the application language. The application primary language can be static, derived from the Web browser language, or determined from a user preference or item. Available options include:
    * No NLS (Application not translated) - Select this option if the application will not be translated.
    * Use Application Primary Language - Determines the application's primary language based on the Application Primary Language attribute.
    * Browser (use browser language preference) - Determines the application's primary language based on the user's browser language preference.
    * Application Preference (use FSP_LANGUAGE_PREFERENCE) - Determines the application's primary language based a value defined using the APEX_UTIL.SET_PREFERENCE API. Select this option to maintain the selected language preference across multiple log ins.
    * Item Preference (use item containing preference) - Determines the application's primary language based on an application-level item called FSP_LANGUAGE_PREFERENCE. Using this option requires Oracle Application Express to determine the appropriate language preference every time the user logs in.

  • I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    Leigh,
    After creating your table, Tap the Tab marked "+" and select "Form" - you will be asked which table to use. (You should get into the habit of naming your tables - if the table name isn't visible, select the table and tap the Styles (Brush) Menu > Table > Turn ON table Name, then double tap on the Table to edit it.)
    Select the table you wish to to fill with a form and you will see a new form based on the header data.
    The form will allow you to add one row at a time and when you get to the last row, there is an option at the bottom of the form to add a new row using the "+" button. At the top of the form is the row header which you can rename by double tapping.
    You can also rename the form on the Tab by double tapping on the name.
    Try it out.

  • Auto/Manually enter a date

    Hello and thank you in advance for your help!  Currently I have a form that has text box using an auto date. Then I have three more text boxes that shows a date 7 days, 14 days, and 28 days ahead. I am working on this for a client and they would also like to be able to manually change the dates in any of those text boxes as well. I am having a hard time wrapping my head around what I need to do and need some guidance. Whenever I try to manually enter a date, it  immediately calculates and reverts back to today's date (and updates the other boxes as well).

    Thank you for your reply. Yes you are right, my scripts are currently in the "Custom Calculation Script" section
    Here are the scripts I use to give you a better idea:
    First Text Box:
    // get the current date's date object for the first text box
    var oDate = new Date();
    // set the field value
    this.getField("FromDate2").value = util.printd("mm/dd/yyyy", oDate);
    Second Text Box (7 days):
    var f = this.getField("FromDate2");
    var d = new Date(f.value);
    d.setDate(d.getDate()+7);
    event.value = util.printd("mm/dd/yyyy", d);
    Third Text Box (14 days):
    var f = this.getField("FromDate2");
    var d = new Date(f.value);
    d.setDate(d.getDate()+14);
    event.value = util.printd("mm/dd/yyyy", d);
    Fourth Text Box (28 days):
    var f = this.getField("FromDate2");
    var d = new Date(f.value);
    d.setDate(d.getDate()+28);
    event.value = util.printd("mm/dd/yyyy", d);

  • How to enter data manually in SQL server mgmt studio 2012

    On a new table,  I right click and select "Edit Top 200 rows".  It looks like I can enter data here but
    I dont see a 'commit' button anywhere.  If I click outside the cell it generates an error that I have not committed the data.
    I just want to enter some picklist data and don't want to script this.  How can I just enter data via the gui?
    Thanks

    Please fill the data row by row. When you enter the data in first row then press enter. Then you should move to next row.
    --> Error Message: String or binary data would be truncated
    Error message says that, for some column you have let's say varchar(10) but you are entering data with >10 length
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • I recently tried to change a sved password for my Exchange Server email account, by deleting the site from my "Saved Passwords" tab in the Tools-Options-Security page. Now this web page won't save any entered data.

    I wanted to change my password for logging in to my work email address. The site was not prompting me to change it automatically, so I manually removed it from the list in the TOOLS-SECURITY-OPTIONS page. Now this site won't retain any kind of entered data, such as addresses that I compose emails to very regularly.
    How can I get this site back on the list that will save passwords? I've tried re-starts, log-out and back in, etc, and it won't prompt me to save a password.

    Shelady wrote:
    ... (wasn't even aware my gmail account had anything to do with Microsoft) ...
    It doesn't.  Gmail is owned by Google.
    Shelady wrote:
    Also can someone tell me how I report spam on my iPhone and iPad in a gmail account?
    Report it to Google:

  • Heilp me in date as defalt date as prompt

    Hi all,
    I am working in SQL 2000  data base,
    i want to create the prompt in universe as condtion...current date as defalt prompt:..
    EX:- end user must not take date as manually .. it must take defalt date as sys date
    Regards,
    Venki

    Hi Venki,
           1.      Create a Object with Current_Date() and name it as  Today.
    2. Create an Object named Prompt
    @prompt('Description eg Enter Date','datatype','class\Today','multi/mono','free/constrained')
    3.Pull the Object in the Query panel.
    Regards
    Prashant
    Edited by: Prashant Sathyapalan on Oct 13, 2008 1:49 PM

  • My macbook pro isn't automatically connecting to wifi when I open it. I have to manually enter the password every time although I always click "remember password". PLease advise

    My macbook pro isn't automatically connecting to wifi when I open it. I have to manually enter the password every time although I always click "remember password". PLease advise

    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select
              Change Settings for Keychain "login"
    In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
              Keychain Access ▹ Preferences ▹ First Aid
    If the box marked
              Keep login keychain unlocked
    is not checked, check it.
    Select
              Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • Fixed Asset - Manually enter opening balance

    Hi,
    It's possible to manually enter fixed asset opening balance? anyone wanna share ways of manually enter? l only tried on import way.
    Thanks in advance!
    Phoebe

    Hi,
    There is no feature that can be used to upload FA opening balance amount in the fixed asset addon.
    If you refer to fixed asset master data import, you can use template fixed asset master data to import the master data.
    JimM

  • Keeping SharePoint Query Data and Excel Manual Entry Data Aligned

    Greetings!
    I've been trying to find the best place to ask this question, so I'm hoping this is close enough to on-topic for this forum.
    I have an Excel 2010 workbook that includes a table linked to my SharePoint 2013 site by a data connection. The SharePoint list feeds the table standard information that's managed on the SharePoint site, but I need the user of the Excel workbook to be able
    to enter text manually in the workbook to associate local information with the line-items coming from the SharePoint list. To do this, I've added extra columns to the end of the table. This is not just text entered into columns to the right of the data table,
    but rather the data table is extended to encompass the adjacent columns, so my expectation was that the rows of the table should hold some level of "identity" to associate the manually entered text with the corresponding data coming from the SharePoint
    site.
    The user can enter information in the appropriate cells in the "extra" columns at the end of the table, but when I refresh the data connection, the addition of a new list item on the SharePoint side results in the user's manually entered text getting
    out of alignment with the row it's supposed to be associated with.
    Example
    Column 1(SP)
    Column 2(Extra)
    Row 1
    Item 1
    Row 2
    Item 2
    Text entered for Item 2
    Row 3
    Item 3
    Then, if I add a new item to the list in SharePoint, for example, something that would appear between the original items 1 & 2, after refreshing the table, I get the following:
    Column 1(SP)
    Column 2(Extra)
    Row 1
    Item 1
    Row 2
    New Item 1.5
    Text entered for Item 2
    Row 3
    Item 2
    Row 4
    Item 3
    The table's data connection is set to insert rows for new items, and I could swear I had this working properly once upon a time...but I can't seem to make it work now.
    Any thoughts on what would cause this?
    Thanks in advance!

    Hi,
    Thanks for visiting our forum.
    I'm glad to find you have get the explain from MSDN forum. I'll put the link here and it'll benefit for other communicators.
    http://social.msdn.microsoft.com/Forums/office/en-US/b3bbe00c-94c0-48d4-bed9-fbd08d707b1d/excel-table-with-sharepoint-data-connection-manual-text-entry-misaligned-after-refresh?forum=exceldev
    Have a good time.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Manually Enter the Sales Order Schedule Line

    Dear All,
    I have a requirement where Sales Order will be created by Customer Service with Quantity and customer requested delivery date.  Subsequently Planning department will go to the sales order schedule lines and enter manually the delivery date and confirmed quantity (multiple schedule lines) based on the stock/availability.  They also need to do some changes in the shedule line if required.  But when I try, the manually entered schedule lines are disappeared.  Could any one advice how to set this up?
    Thanks,
    Regards,
    Venkat

    Hi Venkat
    A schedule line gets grade out because this has been determined . through schedule line determination. . Now in the shipping data tab you can change the schedule line tab if you want .  manually you can change the request delivery date also. 
    But it is not advisable to change the schedule line because again the affect of availability check will vary.
    But can we know for what purpose you want to change the schedule line when you create the sales order. Any reason .For what purpose you are going for that customization ?For what purpose?
    Regards
    Srinath

  • How can I manually enter MIDI channel number in Control Surface expert Value Change field?

    I am creating a software interface for a multidimensional controller which can transmit many linear values at the same time. I can not use Learn mode because it always sends data from all sources, but I can split them by MIDI channels. I would like to manually enter controlling values into Control Surface expert view.
    I seem to be able only to input the message, but not MIDI channel on which it is transmitted.

    Stupid me, it's hex... so 80 is Note Off ch 1, 90 Note On ch 1 etc

  • Reset Manually Entered Constrained Forecast Key Figure

    We use Demand Planning to forecast future Sales Volumes.  Not too sophisticated.  We take a monthly extract from R/3 which summarize the last months Sales Actuals.
    based on a given period of Sales History we then run a statistical forecast whicgh generates future months foreasts.
    Once a manual adjustment has been made to a key figure by either Acciount Manager/Marketing Group?Demand Planner, that particular field is highlighted in 'YELLOW'.  Once this is done any future copies of stat numbers into those fields does not overwrite the users manual inputs.  As you would expect.
    However we have some apparently manually entered values in our Constrained Key Figures that are completely incorrect.  However because the cells are yellow, the copy key figure macro will not be able to overwrite these values.  Is ther a way I can somehow reset these yellow cells so that they no longer resist the copying of data into them.
    Apologies if I am using the incorrect terminology here.
    Thanks for anything you can suggest.

    I think your requirement could be met by exploring macro functions CELL_BG(), CELL_FG(), CELL_INPUT(), ROW_BG(), ROW()FG or ROW_INPUT() functions. All the macro functions can be made conditional, example a specific technical/business situation leads to color/editability etc.
    Check http://help.sap.com/saphelp_scm2007/helpdata/en/17/a5216532a111d398260000e8a49608/frameset.htm

  • Payment Terms-Manual due date Input-Which field?

    Dear Gurus,
    I can observe an option at the payment terms of "no default" which means that payment due date has to be entered manually.Is there some field in the order or billing document where the due date can be entered manually.Kindly hep,thank you.
    Regards,
    Sam Ahmed

    Hi
    By making due date manual you want to give a free hand to end user for entering any date as due date. He might enter 30 days or 300 days and this is the reason payment terms are used. I don't know about your business scenario but in most of the cases due date is determined from payment terms.
    If you want to make it manual then you can enter payment term with pay immediate and enter date in Fixed value date as suggested by Ravin or enter days in add value days field. System will take this date as billing date for accounting document and will calculate payment term days from here and if you payment term is pay immediate then this would be your due date as well.
    Thank$

Maybe you are looking for

  • Order status in Backorderd. how to get it to "Shipped" status

    Hi Friends, I am new to Order Management(12.1.3). Initially trying to learn the O2C process. As part of that I am using the vision instance 1> Created the Sales order 2> Booked the Sales order 3> Trying to Release the Sales order. The order line stat

  • Billing information required however have no credit card?

    I've been a little sneaky, I bought a game card, like a gift card credit card and I linked it with my Apple ID, this card had £30 on it, and if the £30 has been spent then it's probably the case, but I recently made a purchase which had an error so I

  • Displaying other types of feeds

    I have an audience that would like astrology, weather, sports, finance,available to them in a portlet. I saw a thread above discussing the MSNBC news feed but as was discussed it was fairly limited. Anyone have any idea or code that would allow me fo

  • Warning shows in business component browser

    am using jdev 11.1.1.4.0 Sep 9, 2011 10:10:42 AM oracle.adf.share.ADFContext getCurrent WARNING: Automatically initializing a DefaultContext for getCurrent. Caller should ensure that a DefaultContext is proper for this use. Memory leaks and/or unexpe

  • Issues While Attempting to Clean Install Yosemite onto 2010 iMac 27"

    Having a number of issues trying to clean install Yosemite onto a 2010 iMac 27. The original 1TB HDD was about to die so I upgraded the hard drive to a Crucial SSD, via an Apple Authorized shop Memory was also upgraded to 16GB (from the original 4GB)