Get today's date?

I have an XML dataset that shows a schedule of events.  My page uses a yui calendar widget to get the events for specific selected days.  On load, the page shows all "events" that are listed in the XML file.  I am trying to set up a filter that will only show the events for today and days after today, on loading.  How do you set a variable to have the value of today's date, without explicitly typing in "10/30/2009?"  I don't want to call the filterData() function, because I still want to see what was scheduled in the past by selecting the dates in the calendar.  Any ideas would be greatly appreciated.
Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="SpryAssets/xpath.js" type="text/javascript"></script>
<script src="SpryAssets/SpryData.js" type="text/javascript"></script>
<script src="SpryAssets/SpryDataExtensions.js" type="text/javascript"></script>
<script src="yui/2.6.0/build/yahoo-dom-event/yahoo-dom-event.js" type="text/javascript"></script>
<script src="yui/2.6.0/build/calendar/calendar-min.js" type="text/javascript"></script>
<script src="SpryAssets/SpryDOMUtils.js" language="javascript" type="text/javascript"></script>
<script type="text/javascript">
<!--
var dsEvents = new Spry.Data.XMLDataSet("schedule.xml", "events/event", {sortOnLoad: "date", sortOrderOnLoad: "ascending"}  );
dsEvents.setColumnType("date", "date");
dsEvents.setColumnType("@id", "number");//-->
</script>
<link href="yui/2.6.0/build/fonts/fonts-min.css" rel="stylesheet" type="text/css" />
<link href="yui/2.6.0/build/calendar/assets/skins/sam/calendar.css" rel="stylesheet" type="text/css" /></head><body>
<div id="Schedule">
  <div id="yuicalendar1"></div>
  <script type="text/javascript">
// BeginWebWidget YUI_Calendar: yuicalendar1   (function() {
    var cn = document.body.className.toString();
    if (cn.indexOf('yui-skin-sam') == -1) {
      document.body.className += " yui-skin-sam";
  var inityuicalendar1 = function() {
    var yuicalendar1 = new YAHOO.widget.Calendar("yuicalendar1");    // The following event subscribers demonstrate how to handle
    // YUI Calendar events, specifically when a date cell is
    // selected and when it is unselected.
    // See: http://developer.yahoo.com/yui/calendar/ for more
    // information on the YUI Calendar's configurations and
    // events.
    // The YUI Calendar API cheatsheet can be found at:
    // http://yuiblog.com/assets/pdf/cheatsheets/calendar.pdf
    //--- begin event subscribers ---//
    yuicalendar1.selectEvent.subscribe(selectHandler, yuicalendar1, true);
    yuicalendar1.deselectEvent.subscribe(deselectHandler, yuicalendar1, true);
    //--- end event subscribers ---//
yuicalendar1.render();
  }  function selectHandler(event, data) {
  // The JavaScript function subscribed to yuicalendar1.  It is called when
  // a date cell is selected.
  // alert(event) will show an event type of "Select".
  // alert(data) will show the selected date as [year, month, date]. 
  var formattedDate = data[0][0][1] + "/" + data[0][0][2] + "/" + data[0][0][0];
  var dateFilterFunc = function(dsEvents, row, rowNumber)
if (row["date"].search(formattedDate) != -1)
   return row; // Return the row to keep it in the data set.
return null; // Return null to remove the row from the data set.
  dsEvents.filter(dateFilterFunc); // Filter the rows in the data set.
  };  function deselectHandler(event, data) {
  // The JavaScript function subscribed to yuicalendar1.  It is called when
  // a selected date cell is unselected.
  };      // Create the YUI Calendar when the HTML document is usable.
  YAHOO.util.Event.onDOMReady(inityuicalendar1);
// EndWebWidget YUI_Calendar: yuicalendar1
  </script>
<div spry:region="dsEvents">
  <table cellpadding="2" id="Events">
    <tr>
      <th spry:sort="name">Name</th>
      <th spry:sort="date">Date</th>
      <th spry:sort="starttime">Start Time</th>
      <th spry:sort="endtime">End Time</th>
      <th spry:sort="location">Location</th>
      <th spry:sort="type">Type</th>
      <th spry:sort="contact">Contact</th>
      <th spry:sort="@id">Id</th>
    </tr>
    <tr spry:repeat="dsEvents">
      <td>{name}</td>
      <td>{date}</td>
      <td>{starttime}</td>
      <td>{endtime}</td>
      <td>{location}</td>
      <td>{type}</td>
      <td>{contact}</td>
      <td>{@id}</td>
    </tr>
  </table>
</div>
</div>
</body>
</html>
And here is my XML file:
<?xml version="1.0" encoding="utf-8"?>
<events>
<event id="1">
  <name>Dreamweaver CS4 Intermediate</name>
  <date>10/15/2009</date>
  <starttime>8:00 am</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 1</location>
  <type>Training</type>
  <contact>Contact 1</contact>
</event>
<event id="2">
  <name>InDesign CS4 Advanced</name>
  <date>10/14/2009</date>
  <starttime>8:00 am</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 2</location>
  <type>Training</type>
  <contact>Contact 1</contact>
</event>
<event id="3">
  <name>Flex CS4 Data Services</name>
  <date>10/15/2009</date>
  <starttime>1:00 pm</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 2</location>
  <type>Meeting</type>
  <contact>Contact 2</contact>
</event>
<event id="4">
  <name>Another Dreamweaver CS4 Intermediate</name>
  <date>10/30/2009</date>
  <starttime>8:00 am</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 1</location>
  <type>Training</type>
  <contact>Contact 1</contact>
</event>
<event id="5">
  <name>Another InDesign CS4 Advanced</name>
  <date>10/29/2009</date>
  <starttime>8:00 am</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 2</location>
  <type>Training</type>
  <contact>Contact 3</contact>
</event>
<event id="6">
  <name>Another Flex CS4 Data Services</name>
  <date>10/28/2009</date>
  <starttime>1:00 pm</starttime>
  <endtime>5:00 pm</endtime>
  <location>Room 2</location>
  <type>Meeting</type>
  <contact>Contact 2</contact>
</event>
</events>

Hi,
Here is my code for attaching the event highlighting to the YUI calendar.  It is triggered via an observer everytime the SpryData region markup containing the event tooltips is regenerated on my first tab.  I've also include the code I wrote for adding tooltips based on SpryData. Note I amended the Sprytooltip.js dataset to speed up the rendering based on the tip Arnout gave me
One thing I do which is not the default for YUI calendar is I namespace my calendar so I can access it whilst doing my Spry stuff.
YAHOO.namespace("cal");
YAHOO.cal.yuicalendar1 = new YAHOO.widget.CalendarGroup("yuicalendar1","yuical1group", {PAGES:12,START_WEEKDAY:1});
var myObserver = new Object;
myObserver.onPostUpdate = function(notify, data)
// Get Spry Data into rows variable
rows = Events.getData();
// Yahoo YUI stuff
YAHOO.cal.yuicalendar1.removeRenderers();
for (var i = 2; i < rows.length; i++)
  // Convert in date format range that yui calendar recognises
  var s = new Date(rows[i]["StartDate"]);
  s = s.getMonth() + 1 + '/' + s.getDate() + '/' + s.getFullYear();
  var e = new Date(rows[i]["EndDate"]);
  e = e.getMonth() + 1 + '/' + e.getDate() + '/' + e.getFullYear();
  var cald = s + '-' + e;
  // Add highlight to range of cells   
  YAHOO.cal.yuicalendar1.addRenderer(cald, YAHOO.cal.yuicalendar1.renderCellStyleHighlight1);
    // Now add tool tips
// Build array of contiguous dates based on HMC events
// Now cycle through HMC events  
  eventDates = [];
  for (var r=2;r<rows.length;r++)
    startDate = new Date(rows[r]["StartDate"]);
    endDate = new Date(rows[r]["EndDate"]);
    while (startDate <= endDate)
     startDatestr = todayFormat(startDate);
       eventDates[startDatestr] = r;
     startDate.setDate(startDate.getDate() + 1);
// cycle through each of the 12 months.
for (var c=0;c<=11;c++)
    addTipFast(c);
// now render
YAHOO.cal.yuicalendar1.render();
function addTipFast(c)
   // reference to calendar
   var calDate = new Date();
   var cal = YAHOO.cal.yuicalendar1.pages[c];
   var calID = cal.id;
   var calDates = cal.cellDates
   var selector = 'table#' + calID + ' td[class~="calcell"]'
   // return array reference to table cells that make up calendar
      tds = Spry.$$(selector);
   // Search for match on event table
     for (var r=0;r<calDates.length;r++)
    tYear = calDates[r][0];
    tMonth = calDates[r][1];
    if (tMonth == 0)
     tMonth = 12;}
   else
    tMonth = tMonth - 1;
    tDate = calDates[r][2];
    calDate.setFullYear(tYear,tMonth,tDate);
    nDate = todayFormat(calDate);
    if (eventDates[nDate] > -1)
     toolid = 't' + eventDates[nDate];
     var myele = new Array;   
     myele[0] = tds[r];
     var t = new Spry.Widget.Tooltip(toolid,myele,{offsetY:25});
Spry.Data.Region.addObserver("tooltips", myObserver);
The tooltips is a div region containing all my tooltips for the calendar and generated from my SpryData Events data
<div id="tooltips" spry:region="Events">
        <div spry:repeat="Events" id="t{ds_RowNumber}" class="tooltipContent hide"> {Title} </div>
      </div>
I generate a unique id for each tooltip that I can use with the tooltip widget when attaching the triggers from the calendar as above. It uses the spry data row number to achieve this.
Hope this helps you with your highlighting and tooltips if you want them. Note I ignore my first two events for highlighting as their start and end dates spans years and just represent club stuff that happens every week. Otherwise initialise your i variable with var i = 0; in the loop.
Just noticed if I use the calendar nav controls it drops the tooltips.  I'll need to add a YUI render event notifier to pick that up.
Cheers
Phil

Similar Messages

  • Getting today's date

    I'm too lazy to look this up right now, but what's the code to get today's date? (at least I'm honest :D)

    I'm too lazy to look this up right now, but what's the
    code to get today's date? (at least I'm honest :D)It probably would have taken you less time to look it up in the API, then to post here. :)

  • How to use GregorianCalendar to get today's date?

    I am using the following code to get today's date? I'm curious whether there is a direct way for GregorianCalendar to get today's date?
    Thanks,
    java.util.Date today = new java.util.Date();
    Calendar cal_today = new GregorianCalendar();
    cal_today.setTime(today);
    System.out.println(" month = " + cal_today.get(Calendar.MONTH));
    System.out.println(" day = " + cal_today.get(Calendar.DAY_OF_MONTH));
    System.out.println(" year = " + cal_today.get(Calendar.YEAR));

    If you mean construct it with todays date and time, sure. Just call the contructor with no arguments. According to the API...Constructs a default GregorianCalendar using the current time in the default time zone with the default locale.

  • I can't get today's date to show on my html pages with Javascript codes.

    I use javascript 1.2 codes to show up today's date on my HTML pages but it did not execute.
    Here is my code:
    <script language="Javascript">
    <!--
    document.write(displayDate());
    // -->
    </script>
    Please help! If you know how to get it to execute.
    Thank you.

    I don not know what displayDate() means
    But I am display current date and time with the code...
    <script language="Javascript">
    <!--
         document.write((new Date).toLocaleString());
    // -->
    </script>

  • Get today's date minus 30 seconds

    How can I get the current date and time minus 30 seconds. The result shoulld be of date format.
    Thanks.

    You mean when you were answered 2 days ago on the same question you had to ask it again?
    http://forum.java.sun.com/thread.jspa?threadID=596493
    Thanks for wasting more answerers' time.

  • Getting today's date in GMT time zone

    Hi,
    I have a simple question, but am confused how to do it:
    I need the current GMT date (as a Date object) ..how do I do it?
    Date date = new Date();
    This returns the current date but according to the timezone of the system time & not GMT.
    Using SimpleDateFormat comes close but it returns as a String object:
    SimpleDateFormat dateFormat = new SimpleDateFormat("some format");
    dateFormat.setTimeZone(new SimpleTimeZone(0, "GMT"));
    Date date = new Date();
    String dateAsString = dateFormat.format(date);
    This gets the current GMT date but as a String object, but I want it as a Date object.
    Can you please throw some light on this? I guess there should be simple way to do it or am overlooking something.
    Thanks!

    I don't think Calendar is useful here.
    "Current date as GMT" is meaningless. Current date (and time) is just "now." Timezone is not part of the picture. If you want to present the current date/time in GMT, then....
    Date date = new Date();
    DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm z");
    System.out.println(df.format(date));
    df.setTimeZone(TimeZone.getTimeZone("GMT"));
    System.out.println(df.format(date));
    2007-06-04 02:29 PDT
    2007-06-04 09:29 GMT

  • How do I check that the today's date is = a date

    I have a form on my site that is designed to only come live after a certain date to avoid people plaguing me with false claims.
    It is accessed by a link from another page.
    I want the link to only be shown after that date.
    Working in asp, of which I have not a lot of knowledge, how would I set up asp code for the following logic, the date being the one that I need to use:
    If the system date is > 26 February 2011 then write "Here is the link to the prize draw claim form"
    else write "The link to the claim form will not be available until the 27th February"
    Would this be able to be placed in line on a Dreamweaver template page and would it just fit on the page in line with the other code?
    Seems simple enough to most people but its got me totally baffled!

    No answers from anyone yet but here is my first rough attempt:
    <html>
    <head>
    <title>How to make a claim</title>
    <script language="JScript" type="text/jscript">
       function dateComp() {
    // Get today's date
        var s = new Date();
        // Create the date of the draw
    var td = new Date('2/26/2011')
    if (s > td )
      s = "The draw will take place on the 26 February 2011" ;
    else
      s= " Go to http://www.lottery/claims.asp to make a claim.";
        return (s);
    </script>
    </body>
    </html>
    <script language="JScript" type="text/jscript">
    document.write(dateComp())
    </script>
    </html>
    </body>
    >>>>>>>>>>>>>>>>>
    This works fine in that it outputs a message on the screen. However, whilst it looks like a link on this page, all it does on a live page is print the text, rather than inject the code into the page.
    What do I use instead of document.write(dateComp) to inject the code and create a link?

  • How can I use today's date as default value in query string filter web part in SharePoint

    I have a query string filter on my web part page. I am trying to figure out how I can set it's default value to Today? I can't find anything online...

    Hi,
    Per my understanding, you might want to set a default value to the Query String Filter Web Part.
    It would not be able to set default value to the Query String Filter Web Part with the OOTB features available.
    By default, with a Query String Filter Web Part in the current page, we can filter other web part in the same page by adding parameters and values in the address bar
    of browser.
    If setting the “Query String Parameter Name” of a Query String Filter Web Part as “t”, then we can filter the corresponding connected web part by inputting such an
    URL into the address bar:
    http://sharepoint/SitePages/Page1.aspx?t=value1
    Suppose you want to filter the list view with a value dynamically when user opens this page, as a workaround, we can generate an URL with the parameters needed when
    page loaded, then redirect user to this URL afterwards. This can be achieved using JavaScript.
    About how to redirect user to other page with an URL:
    http://www.tizag.com/javascriptT/javascriptredirect.php
    How to get today’s date using JavaScript:
    http://www.w3schools.com/js/js_dates.asp
    Best regards      
    Patrick Liang
    TechNet Community Support

  • How to format today's date?

    Hi, i am trying to get today's date (well system date) but in the next format: dd/mm/yyyy hh:mm:ss am or pm... how can i do it?
    Regards.

    Hi this is a static method that i wrote a while back...this should be able to lead you in the right direction
        public static String getCurrentDate() {
            Date wDate = new Date();
            wDate.toString();
            SimpleDateFormat formatter = new SimpleDateFormat( "dd/MM/yyyy hh:mm:ss aaa" );
            return formatter.format( wDate );
        }this will return 16/01/2002 1:13:22 PM
    this is the link to The SimpleDateFormat class from Sun.
    http://java.sun.com/products/jdk/1.1/docs/api/java.text.SimpleDateFormat.html
    tim

  • FM to get previous sunday date based on current date(SY-DATUM)

    hi all,
    Is there any function module to get the previous sunday date based on current date(sy-datum)?
    Regards,
    Kapil Sharma

    Hi Kapil,
    You can follow the logic below:
    data:
    l_date like sy-datum, **TODAY
    l_date2 like sy-datum, **Previous Sunday
    data:
    l_daynr like HRVSCHED-DAYNR.
    *Get today's date
    l_date = sy-datum.
    *Gey today's day (Monday, Tuesday, etc.)
    CALL FUNCTION 'HRIQ_GET_DATE_DAYNAME'
    EXPORTING
    langu = 'EN'
    date = l_date
    IMPORTING
    daynr = l_daynr.
    CASE l_daynr.
    *If it is Monday
    WHEN 1.
    -Subtract 2 days for the previous Sunday
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 2
    IMPORTING
    ed_date = l_date2.
    *If it is Tuesday
    WHEN 2.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 3
    IMPORTING
    ed_date = l_date2.
    *If it is Wednesday
    WHEN 3.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 4
    IMPORTING
    ed_date = l_date2.
    *If it is Thursday
    WHEN 4.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 5
    IMPORTING
    ed_date = l_date2.
    *If it is Friday
    WHEN 5.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 6
    IMPORTING
    ed_date = l_date2.
    *If it is Saturday
    WHEN 6.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 7
    IMPORTING
    ed_date = l_date2.
    *If it is Sunday
    WHEN 7.
    CALL FUNCTION 'HR_SEN_CALE_DAYS_DATE'
    EXPORTING
    id_date = l_date
    id-operator = '-'
    is_duration = 8
    IMPORTING
    ed_date = l_date2.
    ENDCASE.
    Regards,
    Dilek

  • How can I get System's Date and Convert it to a String?

    Hello there !
    I'm having a bit of a problem. Could anyone help me?
    I want to know how to get Today's Date in a String?
    Just the Date, and here's the trick.... in this precise Format:
    MM/dd/yyyy
    So for today my String should contain the value: "02/02/2007"
    Please help I am still a learner of the Java programming language.
    Thanks in advance

    And in Java 1.5+:System.out.printf("%1$tm/%1$td/%1$tY\n", new java.util.Date());:o)
    ~

  • How do I get iTunes songs off the iCloud back onto my computer, preferably without changing the purchase date to today's date?

    Trying to download previously purchased iTunes songs that are firmly embedded in the iCloud. At one point these songs were all on my computer. Then I idiotically joined iCloud. All the songs were sucked off and into iCloud. iCloud couldn't provide more than twenty seconds of any song without freezing whatever device, Macbook Pro, iPhone 4s, ipods, or breaking up the playback into fits and starts and finally silence, ever, no matter if the connection was cable or wireless.
    I have ever update on every device, I have the max. RAM, excess disk/flash space. The problem is the difficulty of downloading. Oddly the download to my ancient PC went almost without a hitch, it is with Apple devices that the trouble lies.
    About 2/3 of the songs have successfully downloaded to my computer. However the purchase date, which I used frequently as a search/sort function, have on many of the songs been switched to today's date, or the date of the latest download instead of my original purchase date.
    Many songs downloaded, many remain in the cloud with the 'cloud' icon beside them.
    Clicking on the "download all" icon doesn't download them all.
    They begin to download and then stop/freeze.
    I'm reduced to manually scrolling to each song and clicking on the 'cloud' to download, this works sometimes and sometimes it doesn't. The whole thing usually crashes after a while.
    This is where I am now, at the iTunes store on the "Purchased" page with all my songs in a list with "downloaded" or a "cloud icon" in the far right column, frozen once again.
    I really would like to maintain the original purchased date(the day when I purchased the song from iTunes) but I'm to the point where I'd just be happy to get them downloaded onto the Macbook Pro, and hopefully never deal with the cloud again for the rest of my life.
    Lastly, if anyone can recommend an alternative music site to iTunes it would be welcome.
    Thank you.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • Do I need to use javascript to get a text field in a PDF form to aut fill with current/today's date?

    I have a form for booking appointments and would like the date field to automatically fill with
    today's date and to print. I have set the text field's format to "Date" and when I place the cursor into the
    date field, today's date shows. It disappears as soon as I tab to the next field.
    Does this action require a javascript script to fill and print today's date? If so, where do I find that?
    Or is there another way to format the text field (besides typing today's date) to get the current date?
    Thanks.
    Ali
    using iMac 2.93 GHz Intel Core 2 Duo 8 GB | OS Snow Leopard 10.6.8 | Acrobat Pro 8

    Thank you GKaiseril!
    From the examples by Chris Dahl, I edited the script in the text field editing dialog to reflect the title I had given the field. That fixed the problem of today's date disappearing as soon as I tabbed to the next field.
    How do I choose for document level or page open script? I would like it to insert the date upon opening the document.
    Thanks again.
    Ali
    NOTE: I found the answer within Chris Dahl's tutorial... path is for Acrobat Pro 8: Advanced>Document Processing>Document Javascripts

  • How can i get todays date as an yyyy-MM-dd format instead of Time stamp

    how can i get todays date as an yyyy-MM-dd format instead of Time stamp,i try to do it in the fallowing way
    <code>
    java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy-MM-dd");
         java.util.Date d = new java.util.Date();
              String s = d+"";
    Calendar cal1 = Calendar.getInstance();
         try{
         cal1.setTime(sdf.parse(s));
    }catch(Exception e){}
    </code>
    but i could not able to get,it throws error as an java.text.ParseException: Unparseable date: "Thu Jan 24 11:43:32 EST 2002" ,pl suggest me any solution.any help would be appreciated.
    Regards.

    Does string s have to end with ""?
    Try doing sdf.format(d) instead.

  • How to get today date in mm/dd/yyyy

              How do i get today date in mm/dd/yyyy format ?
              Thanks
              Michael
              

    See java.text.DateFormat.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "Michael" <[email protected]> wrote in message
              news:3af8033f$[email protected]..
              >
              > How do i get today date in mm/dd/yyyy format ?
              >
              > Thanks
              > Michael
              

Maybe you are looking for

  • Where is the 'Do not track' option?

    I do not find 'Do no track' option in my Firefox Android browser

  • App wont download from App store

    Hi, I am currently based in South Africa, but I download most of my free apps from the US apple store. When i decided to buy an app ($5.99) from my Ipad mini, it asked me to fill in my billing details, and so i did using my father banking details. it

  • Acrobat Pro hangs on sign in

    Using Windows 7 Acrobat Pro XI trial is just installed, day 1. I double click to open Acrobat Pro. It asks me to accept a trial user agreement. I accept. It asks me to sign in with my Adobe user ID. I enter it and sign in. Acrobat hangs on the loadin

  • Which module is the best

    hi i am working in some mnc but i have the doubt in my future i am working as a sap fico consultant but i want to update my studies in sap which module is the best for my future i have 3 years of sap experience in sap fico only thats why i am asking

  • Delete millions of rows

    What are the best ways to delete few million rows from a table keeping the table available for the loads and customer access? This table has 50 million rows, and I need to retain few months' data and delete the rest. Please let me know if you have an