Date validation with minValue on 1st February

Here is my validation on a textfield which expect a date :
var dateValidation = new
Spry.Widget.ValidationTextField("dateValidation", "date",
{isRequired:false, format:"dd/mm/yyyy", validateOn:["blur"],
minValue:"31/01/2008", useCharacterMasking:true});
Test with these parameters :
Today date : 31/01/2008
Try to enter 01/02/2008 and this date is detected as a date
in the past.
You can do the same with each year: try to put your today
date on 31/01/2009 and enter 01/02/2009...
Is it a bug from Spry?

I debug the "SpryValidationTextField.js" and I found a bug in
the date validation function.
In javascript, when you create a new date, the month is on
base "0".
So when your month is January and the value typed is 1. If
you would like to create a new date based on this month, you have
to specified the month "0".
Adobe Spry Team,
could you correct the line :
return (new Date(theYear, theMonth, theDay);
by:
return (new Date(theYear, theMonth - 1, theDay);

Similar Messages

  • Date validation via minValue in UI

    Hi,
    I am new in ADF so looking for some help.
    I have 2 inputDate in UI with behavior startDate and endDate.
    I am validating the date value with minValue property on endDate, like endDate should not be less than startDate.
    It is working fine and behaving in expected manner except one scenario.
    Here is some problem with refreshing the error message -
    1. after entering startDate larger than endDate, it is giving error in endDate which is fine(startDate=25-Jun-2011 EndDate=20-Jun-2011, Error:The date is before the valid range.The date must be on or after 25-Jun-2011)
    2. I modified startDate with lesser value but it is still giving with same error message on endDate(modified startDate=15-Jun2011, still getting same error with old value "Error:The date is before the valid range.The date must be on or after 25-Jun-2011") .
    3. When I modify endDate at that time is working fine.
    Please let me know if there is any way to handle the situation in .JSFF file itself.
    Thanks,
    Naveen
    Edited by: user12455197 on May 20, 2012 5:27 AM

    Hi Timo,
    Thanks for your time, I am using JDEV version : 11.1.1.6.0
    Bellow is the code snippet, I tried with partial trigger and autosubmit=true as well, It is resolving my issue but at that time it is giving error "endDate can not by empty" due to autoSubmit=true when first time I am entering the value for startDate since both are mandatory filed.
    <af:inputDate label="#{AttrBundle['ColAttr.PeriodStartDate.CompletedTrainingJobStartDate.TrainingParamsVO.ATTRIBUTE2']}"
    required="true"
    binding="#{backing_CreateTrainingJob.startDate}"
    id="inputDate1">
    <af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}" />
    </af:inputDate>
    <af:inputDate label="#{AttrBundle['ColAttr.PeriodEndDate.CompletedTrainingJobUserSpecif.CompletedEngineJObVO.SettingsEndDate']}"
    required="true"
    binding="#{backing_CreateTrainingJob.endDate}"
    minValue="#{backing_CreateTrainingJob.startDate.value}"<-------------------------------------------------------------------(Date validation)
    id="inputDate2">
    <af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}" />
    </af:inputDate>

  • How to do a date validation with leap years

    I'm doing a date validation program in my Java class, and well it's pretty hard (for me that is). I have to be able to type in a date, have it say whether it's a leap year or not, and print out the number of days in the month. It seems pretty straight forward, but I get confused on trying to do the 'if else' statements and even the simplest things like getting the day prompting to work. >< The years I'm doing only goes through 1000 to 1999, so that's why those numbers are there. The program isn't complete, so if anyone could help show me what I'm doing wrong in the areas I'm working on then I'd appreciate it...and I'm still kind of in the basics of Java so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced so yea.
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    }

    Here are some helpfull hints for you:
    1. Your code is really hard to read, there are two main reasons for this. First, your indentation sucks. Second, you seem to be fascinated with saving two (ok four if you count the shift key) keypresses to avoid using { and }.
    2. Not using the brackets (you know { and } which you like to avoid) also is causing your code to do some stuff you don't realize or want to happen, or at least it would be if your code compiled.
    3. If statements require arguements, "year == 1" is an arguement, "3" is not an arguement. Each operator like the or operator ("||") is essentially a new if and requires a complete arguement. So the following code peice:
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)Literally translates to if year equals 1 or if 3 or if 5 or if 7 or if 8 or if 10 or if 12. Doesn't make much sense in english, and it doesn't make much sense in Java either.
    4. I am pretty sure "year" is not the variable you want in the code snippet above (the one used in hint 3), especially considering years 1, 3, 5, 7, 8, 10, and 12 are not between 1000 and 1999. You need to be really carefull not make these kind of mistakes when coding, because they are by far the hardest to track down and fix later since they don't really throw up any flags or anything at compile or run time. Take your time and think thuroughly about each line of code while coding it, it will save you tons of time in the long run.
    5. What exactly do you expect statements like "month = month;" to do? That translates as make month equal to month. Do you go to the bank and say " I have exactly $3.56 in my pocket, so I would like to deposite all $3.56 and then withdraw $3.56 and put it back in my pocket"? How do you think the teller would look at you? Teller would probably do it, but the teller would feel like he/she wasted time with you and that you are not really right in the head. Java feels the same way when you make it do the same thing, and you love to do it.
    6. Code like the following is all wrong, and for more reasons than pointed out in hint 5.
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;Let's say someone put 13 in as the month. It passes the first check because 13 is greater than or equal to 1. so month which is 13, now gets set to 13 (gee that was effective). Now we hit the else and things get confusing because you didn't use brackets or proper indentation (hint 1) so we don't know what your real intent was. Did you mean else do nothing, and the next if statement is then executed, or did you mean to just run the next if statement if the else condition was met? Fortunatly it doesn't matter here because the next if statement is failed anyways since 13 is not less than or equal to 12.
    So, we leave this code with month ebing 13, wait when did we add a 13th month to the calendar? Are you using the Jewish calendar? Could be, except even if I put 1234567 as the month your code would except it as valid, and I know no calendar with that many months. Try writing this in english first and translating it to jave, like i would probably say "if the month is greater than or equal to 1 and less than or equal to 12 then the month is valid." Course now what do you do if it is invalid? Hmm, maybe I would actually say "while the month is less than 1 or greater than 12 ask the user for the month" until they get it right.
    There are a few other problems, but most of them are probably things you haven't learned yet, and they are not show stoppers so we will let them fly. You already have a lot of work to do to make this better. But I do have one more really really big usefull hint for you:
    Never, ever, under any circumstances, should you ever ask in any way or even hint at asking for someone else to provide code solutions to your problems. So "so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced " was a very bad thing to do, but fortunatly for you you followed it with proof you were trying to write the code yourself. Had the code you provided not been so full of problems it was obvious a beginner wrote it, you would probably have gotten much less cordial responses. I would seriously consider avoiding any implication of wanting code, at least until you become a regular poster here and people know you are not just looking to get your homework done for you.
    Hope some of this helps.
    JSG

  • Check data valid with Java Script

    Hi, every one,
    I made a jsp program and just to check if the data is valid before submit. My problem is even the data is invalid, it still go to next jsp page and display alert message at the same time. But I think if the data is invalid, we can't go to next jsp page. So, any one can tell me what's wrong with my program.
    Thanks in advance.
    The source code is as follows:
    <HTML><HEAD>
    <TITLE>TEST PROGRAM</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    function validate(){
         if(document.form1.yourname.value.length < 1){
              alert("please enter your full name");
              return false;
         if(document.form1.address.value.length < 3){
              alert("please enter your address.");
              return false;
         if(document.form1.phone.value.length < 3){
              alert("please enter your phone number");
              return false;
         return true;
    </SCRIPT>
    </HEAD>
    <BODY>
    <H1>FORM EXAMPLE</H1>
    Enter the following information. When you press the Display button,
    the data you entered will be validated, then sent by e-mail.
    <form name="form1" action="a2.jsp" enctype="text/plain" onSubmit="validate();">
    <p>
    <b>Name:</b><input type="text" length="20" name="yourname">
    <p>
    <b>Address:</b>
    <input type="text" length="30" name="address">
    <p>
    <b>Phone:</b><input type="text" length="15" name="phone">
    <p>
    <input type="SUBMIT" value="Submit">
    </FORM>
    </BODY>
    </HTML>

    Hi,
    I have another question. If i have a menu as follows and I just want to check the data valid on the current page. I mean, only value=1, 2,3 is valid, value=0 is invalid. How can I do?
    <td valign="middle" width="63%"> <font face="Arial, Helvetica, sans-serif" size="2">
    <select name="type">
    <option value="0">Please Select One of The Following Reasons</option>
    <option value="1">Exchange</option>
    <option value="2">Refund</option>
    <option value="3">Wrong Product</option>
    </select>
    </font></td>
    </tr>
    Thanks.
    peter

  • Date validation with different formatStrings

    I can change formatString property to show a date in a different format.
    For example, I have DD/MM/YYYY so my date is shown like this: 30/11/1980
    Now, I am entering a date like this: 11/30/1980. Should I be getting an error?
    Thanks

    Hi
    Use Follwing date formatter to format date
    var formatter:DateFormatter = new DateFormatter();
    formatter.formatString = "MM/DD/YYYY";
    var formattedDate:String = new String;
    formattedDate = formatter.format(" "); //Date entered in datepicker
    //Condition to validate date
    if((formatter.error != null && formatter.error == "Invalid value") || null == " ") {
         showAlert(" ");
         return;
    Let me know if any concern
    Thanks,
    Atul ([email protected])

  • The timesheet creation failed, because of problems with the project I server or with data validation

    Hi,
    One of my user is facing issue in creating new time sheet,
    "The time sheet creation failed, because of problems with the project server or with data validations".
    This issue is coming to only few members out of 10000 members.
    Note: For the same user, can able to do in other machines. only the problem in his machine. Have ran the office diagnostics, but still the problem persists.
    Is any add-on's/any settings need to update in IE. Could any one please help me on how to fix this issue?
    Many thanks in advance.

    I would check the compatibility settings in IE etc, or try another browser (chrome, safari etc.)
    Ben Howard [MVP] | web |
    blog | book

  • Date Validation problem in form with report

    Hi,
    I am stuck on this date validation issue in a form with report that I am working on-
    I have an Active_date_start and an Active_date_end field. I want to validate the form in such a way that if the user enters the Active_date_end < active_date_start then it should error out appropriately asking to change the active_end_date . Also another problem is that the changes are made to the active_date_end they should reflect in the table. How do I accomplish this.
    Appreciate all the help offered.
    Thanks.

    Hi,
    Thanks for the code.Now the APPLY CHANGES works fine except that it throws an error when I change the end date to a date which is less than the start date . So it does show me my error and does not go further but also shows me the error -
    Invalid PL/SQL expression condition: ORA-06550: line 1, column 29: PLS-00306: wrong number
    or types of arguments in call to 'NVL' ORA-06550: line 1, column 7: PL/SQL: Statement
    ignored Invalid PL/SQL expression condition: ORA-06550: line 1, column 29: PLS-00306:
    wrong number or types of arguments in call to 'NVL' ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    I looked up the error number and it says its a generic error type where the error can be found on the line number specified. But in this case how and where do I look for the error line?. This is the code I am using-
    DECLARE
    vACTIVE_DATE_START DATE;
    vACTIVE_DATE_END DATE;
    BEGIN
    vACTIVE_DATE_START := TO_DATE(:P4_ACTIVE_DATE_START, 'DD/MM/YYYY');
    vACTIVE_DATE_END := TO_DATE(:P4_ACTIVE_DATE_END, 'DD/MM/YYYY');
    IF vACTIVE_DATE_END < vACTIVE_DATE_START THEN
    RETURN 'End date is before start date';
    ELSE
    RETURN NULL;
    END IF;
    END;
    My base table has the active_date_start as NOT NULL. Now I have the exact same code for APPLY CHANGES
    in other form and it works fine not giving the above error. I am at a loss to know how I can get rid of the error.
    Any suggestions!.
    Thanks in advance,
    A

  • Trouble with a data validating loop.

    So I tried to make a data validation loop to make sure no single number in an array are the same.
    At first I thought it was working fine, but after the sixth test, I noticed I had two of the number "5".
    Based on looking at my code, it seems like it could work, but I could not be seeing something significant.
    Anyone have any advice or suggestions?
    Oh and also, MAX_PICK is a static final int set to 47
    picks[0] = randomNumbers.nextInt(MAX_PICK);
    picks[1] = randomNumbers.nextInt(MAX_PICK);
    picks[2] = randomNumbers.nextInt(MAX_PICK);
    picks[3] = randomNumbers.nextInt(MAX_PICK);
    picks[4] = randomNumbers.nextInt(MAX_PICK);
    while(!valid)
         for(int i=0;i<=4;i++)
             if     (picks[i] == picks[0] ||
                  picks[i] == picks[1] ||
                  picks[i] == picks[2] ||
                  picks[i] == picks[3] ||
                  picks[i] == picks[4])
                       picks[i] = randomNumbers.nextInt(MAX_PICK);
             valid = true;
    }One thing I just noticed is also, lets say i = 4 and when it compares picks[i] to picks[4] , it will go in the statement anyway, causing it to change picks[4] to another number which could by chance be the same as picks[3]. Is there a way around this? I was thinking about maybe a while loop with the condition the if statement has, but then the loop would run forever. Any insight?
    Much Appreciated.

    * Created on 2007&#24180;10&#26376;10&#26085;
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    import java.util.*;
    public class MyRan {
         static int picks[];
    public static void main(String args[]) {
         int MAX_NUM = 5;
         picks = new int[5];
         Random generator2 = new Random( System.currentTimeMillis() );
         //                    picks[j] = generator2.nextInt(MAX_PICK+1);
         System.out.println("======");
         for(int i=0;i<=4;i++)
         picks[i] = generator2.nextInt(MAX_NUM)+1;
         while(!check(picks))        
                for (int i=0; i<5; i++)
                      for (int k=0; k<5; k++)
                            if (i!=k)
                                 boolean genSuccess = false;
                                 if (picks==picks[k])
                                  while (!genSuccess)
                                       picks[k] = generator2.nextInt(MAX_NUM)+1;
                                       if (picks[i]!=picks[k])
                                            genSuccess = true;
         for (int i=0; i<5; i++) {
              System.out.println(picks[i]);
    public static boolean check(int input[])
         int duplicateCount = 0;
         for (int i=0; i<input.length; i++)
              for (int k=0; k<input.length; k++)
                   if (i!=k)
                        if (input[i]==input[k])
                             duplicateCount++;
         if (duplicateCount>0)
              return false;
         else
              return true;

  • Time Machine slow backup with Date Validation error?

    Console is spitting out this garbage and I don't know what it means
    Dec 24 01:17:46 Macbook-Pro mdworker[7772]: Date validation error: EXDATE = '20080626T150000,20080807T150000,20080814T150000'
    Dec 24 01:17:48 Macbook-Pro mdworker[7772]: Date validation error: EXDATE = '20071022T150000,20081027T150000'
    Dec 24 01:17:48 Macbook-Pro mdworker[7772]: Date validation error: EXDATE = '20080527T130000,20081028T130000'
    It creeps along and eventually finishes but if I have a lot of data to backup it takes hours for a few hundred MB. Any ideas?
    I've tried starting from scratch and have repaired permissions on my MBP with no luck.
    Message was edited by: jgoettel

    mdworker relates to Spotlight. Check this thread to see if it helps:
    http://discussions.apple.com/thread.jspa?messageID=8372393&#8372393

  • Help with date validation on input boxes.

    I need some help with date validation on input boxes.
    What I�m trying to create is a form where a user inputs dates and then the rest of the form calculates the other dates for them.
    i.e. � A user inputs 2 dates (A & B) and then a 3rd date which is 11 weeks before date B is calculated automatically.
    Is this possible and if so how do I do it ???
    Thanks

    Hi,
    to get third date try this:
    java.util.Date bDate = ...;
    Calendar yourCalendar = new GregorianCalendar();
    yourCalendar.setTime(bDate);
    yourCalendar.roll(Calendar.WEEK_OF_YEAR, -11);
    java.util.Date cDate = yourCalendar.getTime();Regards
    Ldinka

  • Validation with data file failed

    Hello All
    I have loaded the Currency Exchange Rates from BW cube into Rate Model in BPC upto March 2014 and then our BW cube get updated the Exchange Rates for April 2014.
    Now I am trying to load the Exchange Rates for April 2014 only into Rate model and for that I am validating the Transformation File but it was failed. It shows 'VALIDATION WITH DATA FILE FAILED'.
    Rejected list option showing blank screen.
    With the same Transformation file I have loaded the data upto March 2014 successfully.
    I have compressed the source cube, reactivate the source cube after all am unable to validate the Transformation file. Below is my transformation file screen shot.
    Please let me know if you need any more details from my side.
    Thanku you all in advance.
    Please help
    Regards
    Srikant

    Hi Shaik
    Thanks for your reply.
    I have validate the Transformaiton file by given vlaue in MAXREJECTCOUNT= 10000 but there is no chage same error is coming. 'Validation with data file failed' without any errors.
    Thanks
    Srikant

  • Issue with data Validation while migrating from one application to another

    Hi All,
    I am having a strange issue Kindly please help me .
    I have a data form which have data validation on each cell.The dataform is quite large and contain data for 4 accounts and year (Jan to Dec) combination .The issue is that I when I migrate this data form to other application which is just the replica of the main application. The validation on each cells changes its reference points.
    I have 5 more similar data form and I need to migrate then to other application and also on production sever. Is there any way that while exporting and importing them using formutil.cmd or other way that the validation cells reference does not change its reference point.
    For ex I have validation on Cell A5,A6..........AA6 after migrating it changes to A1,A1.........AA1.
    I am using 11.1.2.1.0 version of Hyperion Planning
    Kindly please help.
    Thanks in advance
    Vikash
    Edited by: user11391767 on Nov 30, 2011 10:47 AM

    Hi Mehmet,
    I tried using the FormDefUtil.cmd .But by using this the reference points of validation changes to first cell when imported.
    Thanks
    Vikash

  • PO Confirmation with Delivery Date Validation Check

    Dear Experts,
    We have requirement in SNC to restrict PO confirmation within a agreed Delivery Date tolerance. This Delivery date validation should work similar to the Quantity validation we have in SAP standard through the PO_ITMUNDERDELIVERY/ PO_ITMOVERDELIVERY validation profiles.
    So the business wants that the Suppliers can only Confirm a PO when the Delivery date in the confirmation is within agreed tolerance (-5 / +1 day ) of the requested delivery date.
    Can you please let us know if there is some standard way through configurations to achieve this. I looked for validation profiles available for delivery date, but could see only for Quantity validations.
    Another option we looked for was to have a Z Table to store this Delivery date tolerance (-5/+1 days), and implement the BAdi /SCMB/BOL_VALFRMWRK to achieve through custom developments.
    Please let me know what solution options we can have for this requirement, as it is urgent.
    Thanks & Regards.
    Shiv.

    Hi Shiv,
    I think there is no need for Z-customization and you can achieve this standard way only thing you have maintained OWN validation:
    After below setting whenever Supplier try to give confirmation which is out side tolerance then system won't allow him to save the confirmation and if supplier is EDI which sends ROC_IN confirmation XML will fail in SNC (You can see that XML in SXI_MONITOR tcode in SNC).
    SPRO>Supply Network Collaboration>Basic Settings> Validation>Own Settings-->Maintain Settings in Validation Profiles
    And maintain below setting
    Profile:POC3
    Val.Check:PO_ACCEPTED_CONF_PUBLISH     
    Status:Active 
    Msg.Type:E(Error )
    Save Mode:DO Not Save message
    Continuation mode:Discontinue checks
    Checked
    Checked
    1-Error
    Profile:POC8
    Val.Check:PO_ACCEPTED_CONF_PUBLISH     
    Status:Active 
    Msg.Type:E(Error )
    Save Mode:DO Not Save message
    Continuation mode:Discontinue checks
    Checked
    Checked
    1-Error
    If you want alert whenever PO confirmation is not within tolerance activate the alert type 7035
    Path:SPRO>Supply Network Collaboration>Exceptions>Alert Type Activation>Activate Alert Types
    Alert type=7035
    History=<Blank>leave this entry blank.
    save this entry.
    If you want receive alert as email then maintain email alert notification:
    See the below link:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8009bba5-7806-2d10-0b80-fa26d8bcb07c?QuickLink=index&overridelayout=true
    In the above link you need to change alert type from 7051 to 7035.
    Regards,
    Nikhil

  • Data Validation in Excel used in Format Range

    Hi Experts,
    Im just wondering if there's a way i can use format range to carry out the data validation of excel.
    i mean, i need to limit the users to enter only numberic data to the input cells, hence they cannot input any letter and negative values.
    i tried applying the data validation in format range but, its not spreading the data validation.
    if i apply data validation to every cell, when i expand, the data validation disappears.
    Any advise.
    Thanks much as always...

    Hi,
    I was not able to use Data Validation in FORMAT RANGE.
    If you want to apply this data validation for the whole data range, you can apply this data validation in the first cell of the first row,first column of evdre. It will apply to the whole data range.
    If you want to apply this for certain columns, its a bit tricky.
    You must break your columnKeyRange into 2 and insert a column in between. In the 1st columnkeyrange, get the data, hide this column alone and add this column in getonlyrange. Next, in the newly inserted columns between the 2 column key ranges, you can use your Data Validation in 1st row. While expanding, it will automatically copy the data validation to the remaining rows. Now, In the second columnkeyrange, get the value based on the data validation cell, hide this column alone. So now you will have 3 columns, with those in the column key ranges as hidden ones and the one in between will be shown to the users.
    I know, this workaround is a bit tricky, but it works flawlessly. I have used this for umpteen sheets.
    Karthik AJ

  • How to format an account to show date format with MDX function @FORMATDATE

    Hello,
    I am working with an ASO cube where all accounts are set as numeric type. We have some accounts which hold date information for eg Date1 member which is a stored member will have data as 20120601 for June 1st 2012. In financial reports, i need to show this data as 06/01/2012 and using as essbase connection in FR, i cannot do this.
    While i was looking for a solution, i came across the MDX function called
    @FORMATDATE
    format_string_expression = MdxFormat ( string_value_expression )
    I was hoping that if i add a member say Date2 and make it dynamic and point it to Date1 and have this MDX format command to make the numeric data 20120601 show up as 06/01/2012.
    Can this work and if yes, what would be the MDX formula in this case?
    Any help in this regard will be a great help...the other alternative i have is to export this date data out into an oracle table, transform that data into to_date and after enabling the type measures in the outline, load it back in...i was hoping to avoid this extra route if this can be done with the formatting via MDX withing the essbase app.
    Thanks...

    For all good order, here is the log from the Disk Utility:
    2012-12-07 21:18:03 +0100: Disk Utility started.
    2012-12-07 21:21:46 +0100: Preparing to partition disk: “WDC WD30 EZRX-00DC0B0 Media”
    2012-12-07 21:21:46 +0100:     Partition Scheme: GUID Partition Table
    2012-12-07 21:21:46 +0100:     1 partition will be created
    2012-12-07 21:21:46 +0100:
    2012-12-07 21:21:46 +0100:     Partition 1
    2012-12-07 21:21:46 +0100:         Name        : “Gardermoen”
    2012-12-07 21:21:46 +0100:         Size        : 3 TB
    2012-12-07 21:21:46 +0100:         File system    : Mac OS Extended (Journaled)
    2012-12-07 21:21:46 +0100:
    2012-12-07 21:21:46 +0100: Unmounting disk
    2012-12-07 21:27:59 +0100: Partition failed for disk WDC WD30 EZRX-00DC0B0 Media Wiping volume data to prevent future accidental probing failed.
    B*gger.  :-(

Maybe you are looking for

  • Text Box Tool in Acrobat X?

    In previous versions of Acrobat, I created standard text boxes in my forms.  I was able to open an existing file, click on the Text Box icon, Ctrl+A, Ctrl+C, and then Ctrl+V into a new document.  I can't figure out how to do that in Acrobat X.  Can a

  • Activity Quantity & Value is Zero in CK11n

    Dear Experts, When i run the ck11n, the activity quantity it is showing as Zero and correspondingly the value. 1) I have maintained the price in KP26 against the cost center which is assigned to the work center. 2) I have enabled the check box for co

  • Exporting all settings for Outlook Desktop so that they can be imported into Outlook

    Hi there, I was wondering whether all settings for Outlook Desktop can be exported so that they can be imported into Outlook i.e. .psts, .osts, .pabs, .oabs, .dats, .xmls, .nk2s, .rwzs, .rtfs, .txts, .htms, .dics, .ofts, .srss and .msgs. My Managing

  • Macbook Pro to Windows XP SP3 internet sharing via ethernet?

    ive tried everything i can, turned on the internet sharing of course, and ive been putting in all kinds of IPv4 adresses into both computers, but every time i think i have the settings right, it never connects to the internet. can anyone help me out

  • Moving webservice to production

    Dear All, I have created a client proxy using the webservice created by webmethods in Development client, also created port using lpconfig in development, everything seems to work fine but now i came to know that the WSDL file URL of webmethods quali