Restricting date selection of the calender date field

Right now we have a web app where you choose the starting date of a work week. We're using the calender date field to get that date. However, our client wants to restrict that to just the Mondays of the month. Is it possible to do this?

Hi Nagy,
The way I would approach this is by implementing that kind of calendar picker myself, from some jQuery plugin or maybe a couple of simple dropdowns, and then use javascript to populate the current date field which would be hidden. You just have to make sure that the date format looks like this:
03-Oct-2012
Cheers,
-mario

Similar Messages

  • Selection in the Generic Data Source does not work

    Hi gurus,
    I have some problem with the selection in the Generic Data Source.
    I have created a view as a base of a Generic Data Source.
    This view is based on several table; i.e.: VBUK-VBELN (Sales Order number), VBAP-ERDAT (creation date of Sales Order), VBAP-POSNR (Sales order item), VBAK-BSTNK (Customer Purchase order number).
    In the view, some join conditions have been defined: VBUK-VBELN = VBAK-VBELN, VBUK-VBLN = VBAP-VBELN.
    I want to extract the Sales Order number, Sales order item and Customer Purchase order number for the Sales order created on the previous year.
    On the Generic Data Source, I select VBELN (Sales order number) and ERDAT (creation date of sales order) as selection.
    However, when I run the extractor checker (RSA3) on this Generic Data Source, the selection does not work at all, i.e.:
    eventhough I restricted the Sales order number and/or the creation date of sales order, the generic data source ignores the selection criteria and extract ALL data.
    Does anyone ever have similar problem? Did I miss some step in the Generic DAta Source creation? How to fix this problem?
    Thanks a lot in advance.
    Best regards,
    Fen

    Hi Fen,
    Just check what is the output you get for the same selection for the view you created.
    Bye
    Dinesh

  • How to extend data selection to the existing delta update without disturbin

    Is there any way to extend data selection to the existing delta update with out disturbing the delta mechanism? I mean, is there anyway to add new delta init for the new data selection to the existing delta update without disturbing?

    the scenario is we have existing delta, let's say, for the 2 company codes 0001 and 0002. I want to extract delta for the company code 0003 without disturbing the existing delta mechanism. I mean to say I want to extend the data selection for the existing delta from 2 comp codes (0001, 0002) to 3 company codes (0001,0002 & 0003) without disturbing the delta mechanism.

  • Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.

    Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.
    Is there any way to re-number them in the order I have chosen so that they can then be sorted by number? The scans are all from pre-digital images that I wish to move to a photobook and I don't want to have to organise them twice!
    Thanks for any suggestions.

    I was a bit short, Chris, sorry. It is limited, what can be posted, when typing on an iPad.
    Now I am back on my Mac. I meant the following:  Batch Change the date for a large range of photos, that should have a date stepped in increments.
    Select all Photos at once and use the command "Photos > Batch Change".
    Then set the date for the first photo and select an increment, e.g. one minute.
    Now all photos will get a new date assigned, incremented by one minute, in the sequence you have selected. So you will be able to sort them by date.  This way it will be unnecessary to change the titles or filenames.

  • Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive but many are not showing up in Aperture.

    Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive with import date not created date, but many of these same files are not showing up in Aperture. Sometimes the clips actually show up with the current import but take on the video information from a previously imported file.

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

  • How do you get the Event folder date to match the media dates in FCPX

    Modifying the clip date/time with the Modify command works fine ... but the Event itself still has the date the event was created, not the date of the media that it contains.
    If tried using Touch on the Event folder but FCPX ignores it.
    Any ideas on how to get the Event folder date to match the media dates (or set to any other date desired) so that Events sorted by date show the actual dates of the media that they contain?
    Thanks
    Jonathan

    Here is the texture I've been manipulating  all afternoon to try and achieve the looks i want.
    and when I put this texture over the top of other images and select Multiply, and adjusted the opacity, this is what i get....
    Now this kinda works?? but it still looks not as good on an asian person.
    Thanks by the way to everyone for all the tips, I really really appriciate it   and more suggestions for improvments are welcome!

  • Reg :  vo.writeXML() how to filter the data before generating the xml data

    Hi team,
    I have table region with multi selection option.
    My requirement is to fetch the data and generate the xml data for the selected rows.
    By using : writeXML() --> it is fetching all the data.
    What are the methods i need to use,so i can fetch only the selected data ?
    Any pointers ?
    -Sridhar

    Hi Peddi,
    i tried the way u mentioned :
    But the new VO2 (Target) VO is having an extra row, iam not understanding how that is getting stored in VO2.
    Can you please review the below query and let me know if any issue.
    public void copyVO()
    int rowCount=0 ;
    OAFXMLVOImpl vo1 = getOAFXMLVO1(); //source
    OAFXMLVOImpl vo2 = getOAFXMLVO2(); //destination
    OAFXMLVORowImpl row2= null ;
    OAFXMLVORowImpl row1 =null;
    if(vo2!=null && vo2.hasNext())
    { vo2.first();
    do
    vo2.getCurrentRow().remove();
    vo2.next();
    while (vo2.hasNext());
    oracle.jbo.Row[] rows = (oracle.jbo.Row[]) vo1.getFilteredRows("check", "Y");
    rowCount = rows.length;
    if(rowCount>0)
    vo2.setMaxFetchSize(0);
    for(int i=0;i<rowCount;i++)
    row1 = (OAFXMLVORowImpl)rows;
    System.out.println("User ID-->"+ row1.getUserId());
    System.out.println("Checked -->"+ row1.getcheck() );
    row2 = (OAFXMLVORowImpl) vo2.createRow();
    row2.setUserId(row1.getUserId());
    row2.setcheck(row1.getcheck());
    vo2.insertRow(row2);
    row2.setNewRowState(row2.STATUS_INITIALIZED);
    } //end of if
    -Sridhar

  • GR date (MIGO) as the Billing date in Third Party Sale

    Dear All,
    I have a scenario where the GR date should be the billing date in third party sale.
    Can it be accomplished by any user exits of billing? Please share your ideas and if this can be done through user exit, please name the user exit.
    Thanks in advance.
    Regards,
    Ipsit

    hi,
    read sales order number or PO number or get the information from document flow of VBFA if pO exists thengo to PO history in EKBE table if BWART - 101 then trigger billing document with reference to SALES ORDER on the same day.
    for that you need to create a Back Ground Job in SM36.
    balajia

  • Baseline date not driving the due date

    My client is currently implementing ECC 6.
    In my past project, I had always thought that the baseline date drives the due date of a vendor invoice for example. But in transaction FB60, when i put in my baseline date, the due date gets calcualted using the payment terms. Is this correct? My client would like the baseline date to drive the due date for paying invoices. How can I correct this please?
    Thanks for your help.

    Hi,
    Yes, it is possible to overwrite the baseline date while making the posting in FB60. However, the payment terms is also taken into account for calculating due date. For example if payment terms id P30 - net due 30 days, the due date will be 30 days from baseline date.
    If baseline date is May 29th 2007, due date will be Jun 27th 2007
    If baseline date is changed to May 31st 2007, due date will change to Jun 30th 2007.
    Probably, you would like to increase or decrease the credit period days, which can done by changing the payment terms.
    Thanks
    Murali.

  • Copying files to my MBA Early 2011, 10.6.7 changes their 'date modified' to the current date. It happens only to some of the files copied. Any idea what my be causing it. Never had this problem before, on othe macs I have owned.

    Copying files to my new MBA (early 2011) running 10.6.7 results in their 'modification date' to change to the current date. Any idea what may be causing it. It happens only to some of the files (there is no pattern to it.). I have not seen it previously in many other macs I have owned.

    Hi all
    I am bumping this thread again because I can't believe that I am the only one experiencing this issue. At times it is costing me hours repeatedly copying files until eventually the date doesn't show as modified.
    I thought I had cracked it earlier by changing the Sharing & Permissions settings, and applying to enclosed items the ability for Everyone, Me and Staff fo have Read & Write permissions - but that doesn't seemed to have changed much.
    Copying in smaller batches helps sometimes, but then other times it makes no odds, and the Date Modified date shows as the original date for a few seconds, only to change to today's date. Driving me nuts because there is no pattern to it.
    Files which I have copied and show their original modified date, when moved to a subfolder, then have their date changed to today!!! Copying other files into the folder results in files that were previously OK having their Date Modified changed!
    Am I on the only one?

  • Differences between the Portal Data Collector and the Activity Data Collect

    Hello,
    I want to know what are the differences between the Portal Data Collector and the Activity Data Collector?
    Best Regards.
    Pablo Mortera.

    All of my SQL Server instances  are sql server 2008r2 standard edition(10.50.2500). MDW is existing database, I try to setup collection sets for multiple instances and store data in one central MDW database 
    I create MDW in one instance, then run run configure Management Data Warehouse in target intance. collection sets were created successfully, but job failed with following error:
    Executed as user: COCAD\INTDEPT01SQLAgentC10. The Management Data Warehouse version "00.00.0000.00" is not supported by the current data collector. Please upgrade the Management Data Warehouse by running the Management Data Warehouse Configuration
    Wizard.  Process Exit Code 5.  The step failed.
    Thanks
    PAULqaz

  • Date Modified & Date Created- All the same date

    I have somehow caused all my "Date Modified and Date Created" to have the same date (Month-Day-Year & Time) for all the folders and every piece of work I have in them. How do I get all my files to read their original date created/ modified and saved back again. It's important for the work I do.
    Thank you
    Vietvet68

    I, too, have "date" problems on my MacBook (with operating system Mac OS X). We just got the computer this month and had the Genius Bar download much of our files from our old Dell computer. The problem is that every date is incorrect, from the Created date to the Modified Date. For instance, here are some interesting dates: "Created 2/6/40" or "Modified 1/18/38." Now, the computer SHOULD know that these dates are well into the future. I checked out Preferences, and the date setting is correct. But somehow the Mac system screwed up all the Created and Modified dates on ALL the files it copied from our Dell, and even the current dates (such as the Modified date noted above) have years into the future. If you cannot set the dates correctly in Preferences, where in heck CAN you set them--and why is the Mac making up such odd dates?? Thanks!

  • End date should be the retirement date

    Hai
    In PA module, irrespective of employees retirement date ( ex. Retirement age is 58 yrs), system shows the default end date as 31.12.9999. but client needs the end date should be the retirement date. How to configure this scenario?

    Mbq,
    The following is an example of dynamic action that creates a date info in IT0041 as soon as employee is hired. The date of retirement is 58 years after the hire date.
    0000 04 10 *** CREATE INFOTYPE 41 WHEN HIRING****
    0000 04 61 P P0000-MASSN='06'
    0000 04 62 I COP,0041,,,,
    0000 04 63 W P0041-DAR12='08'
    0000 04 64 W P0041-DAT12=P0000-BEGDA
    0000 04 65 W P0041-VTRAN='58' number
    0000 04 66 W P0041-VTRZH='013' time unif from table T538T
    0000 04 67 W P0041-VTROP='-' operation '+' or '-'
    The above code should be added to T588Z table.
    You can enhance the code according to ypur requirements.
    Regards,
    Dilek

  • GR date lesser than the PO date, the system should show an error message.

    Dear Gurus,
                         if anybody puts GR date lesser than the PO date, system should display error this happens because the system allows back dated posting of 101 MVT in MIGO.Similarly the IR date should not be less than the GR date. This happens because the system allows back dated posting of MIRO also.
    Regards
    ASHOK K

    Hi,
    Use the badi MB_DOCUMENT_BADI  and compare dates of EKKO-BEDAT and MKPF-BLDAT for MIGO.
    USe the badi IF_EX_MRM_INVOICE_UPDATE PROCESS_AT_ and compare the dates of MKPF-BLDAT and RBKP-BLDAT while saving the invoice for checking the back dated entries and throw an error message.
    Regards,
    Bharat

  • There was a problem reading the layer data. Read the composite data instead?

    I can't open my psd with properly in Photoshop, it keeps showing :There was a problem reading the layer data. Read the composite data instead? 
    Photoshop cc
    Help please

    I just discovered this issue. Apparently if your PSD document has a tonne of layers, it will save normally. Then suppose you are working on it one day, and create lots of new additional layers...saving that will then corrupt the PSD file, as apparently the number of layers exceeds some hidden limit. You will not be able to load that back in, as Photoshop doesn't appear to allow you to do that.This issue appears for both PSD & PSB files. I lost a few weeks of updates, but recovered thanks to a few backups.
    One clue you can use to ensure you don't inadvertently save over the file (thereby corrupting it), is to try duplicating a layer or a group of layers. You will not have the option to do so. If you encounter that, immediately open a new file, and drag a few groups of layers to the new document (and deleting them in the original document). You should then go back below the 'limit', allowing you to save normally.
    As for the original corrupted file, well I tried repairing it with a whole host of tools. But nothing worked ....
    MacReady: Any way we can we fix it?
    Garry: It's gone, MacReady.

Maybe you are looking for

  • Issue in BADI  BBP_PGRP_FIND

    Hi SRM Gurus, How can i get the Shopping Cart Item details,Company Code and Product Category in the BADI 'BBP_PGRP_FIND'?. I checked with the BADI Interfaces and i could find only Product Category. My Exact Requirement is to get the Approvers(Maintai

  • Using trim with SQL

    I've attempted to use trim() im my SQL statement but It throws an error saying its not a valid function. This isnt the statement but this is the context im using it in. <cfquery datasource="#datasources.DATADSN#"> INSERT INTO dbo.People (Christian) <

  • Error in executing SCENARIO in CMD mode

    Hi, I am new to ODI. I am trying to execute a scenario in CMD mode. But, its not exexcuting. The following error is thrown. Any help would be appreciated. I am using ODI 10.1.3.4.0, WinXP SP3. *\OraHome_1\oracledi\bin>startcmd.bat OdiStartScen "-SCEN

  • Phone gap child browser

    how to build android, ios app using dreamweaver and phone gap build service i've try to build it but failed, i've used window.location html code and just pop up i want inside in android, ios app what is a phonegap.js and childbrowser.js? 1. i cant fi

  • Volume Control Keys Not Working

    I got a new MacBook Pro last week and i've noticed that the volume control keys on the keyboard are not working.  When I press any of the keys, the grey box that typically appears does show up, but the volume level indicator does not move and there i