Countdown Help - further

Ok, i want my code to countdown to a specific time within my
date.
What do i have to add to enable it to do this?
Thanks

Hello!
All you do is set the hour, minute and second properties of
your target date object!
var targetDate:Date = new Date(2007,5,4, 9, 30, 54); // Wed
June 4 09:30:54 GMT+0200 2007
And your code will work ;)
However i recomend you look in to using some other means of
updating the displayed time. onEnterFrame might do it too offen
making this metod a bit unpractical. Seeing how we only display the
seconds you might only need an interval timer set to 100 ms.

Similar Messages

  • Countdown help.

    Hey guys I need help making this countdown work. Im only getting this....
    Im using the Edson Hilios countdown, but don't know how to set the countdown time....
    jquery.countdown :
    * jQuery The Final Countdown plugin v1.0.0 beta
    * http://github.com/hilios/jquery.countdown
    * Copyright (c) 2011 Edson Hilios
    * Permission is hereby granted, free of charge, to any person obtaining
    * a copy of this software and associated documentation files (the
    * "Software"), to deal in the Software without restriction, including
    * without limitation the rights to use, copy, modify, merge, publish,
    * distribute, sublicense, and/or sell copies of the Software, and to
    * permit persons to whom the Software is furnished to do so, subject to
    * the following conditions:
    * The above copyright notice and this permission notice shall be
    * included in all copies or substantial portions of the Software.
    * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    (function($) {
      $.fn.countdown = function(toDate, callback) {
        var handlers = ['seconds', 'minutes', 'hours', 'days', 'weeks', 'daysLeft'];
        function delegate(scope, method) {
          return function() { return method.call(scope) }
        return this.each(function() {
          // Convert
          if(!(toDate instanceof Date)) {
            if(String(toDate).match(/^[0-9]*$/)) {
              toDate = new Date(toDate);
            } else if( toDate.match(/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{2,4})\s([0-9]{1,2})\:([0-9]{2})\:([0-9]{ 2})/) ||
                toDate.match(/([0-9]{2,4})\/([0-9]{1,2})\/([0-9]{1,2})\s([0-9]{1,2})\:([0-9]{2})\:([0-9]{ 2})/)
              toDate = new Date(toDate);
            } else if(toDate.match(/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{2,4})/) ||
                      toDate.match(/([0-9]{2,4})\/([0-9]{1,2})\/([0-9]{1,2})/)
              toDate = new Date(toDate)
            } else {
              throw new Error("Doesn't seen to be a valid date object or string")
          var $this = $(this),
              values = {},
              lasting = {},
              interval = $this.data('countdownInterval'),
              currentDate = new Date(),
              secondsLeft = Math.floor((toDate.valueOf() - currentDate.valueOf()) / 1000);
          function triggerEvents() {
            secondsLeft--;
            if(secondsLeft < 0) {
              secondsLeft = 0;
            lasting = {
              seconds : secondsLeft % 60,
              minutes : Math.floor(secondsLeft / 60) % 60,
              hours   : Math.floor(secondsLeft / 60 / 60) % 24,
              days    : Math.floor(secondsLeft / 60 / 60 / 24),
              weeks   : Math.floor(secondsLeft / 60 / 60 / 24 / 7),
              daysLeft: Math.floor(secondsLeft / 60 / 60 / 24) % 7
            for(var i=0; i<handlers.length; i++) {
              var eventName = handlers[i];
              if(values[eventName] != lasting[eventName]) {
                values[eventName] = lasting[eventName];
                dispatchEvent(eventName);
            if(secondsLeft == 0) {
              stop();
              dispatchEvent('finished');
          triggerEvents();
          function dispatchEvent(eventName) {
            var event = $.Event(eventName);
            event.date  = new Date(new Date().valueOf() + secondsLeft);
            event.value = values[eventName] || "0";
            event.toDate = toDate;
            event.lasting = lasting;
            switch(eventName) {
              case "seconds":
              case "minutes":
              case "hours":
                event.value = event.value < 10 ? '0'+event.value.toString() : event.value.toString();
                break;
              default:
                if(event.value) {
                  event.value = event.value.toString();
                break;
            callback.call($this, event);
          /*$this.bind('remove', function() {
            stop(); // If the selector is removed clear the interval for memory sake!
            dispatchEvent('removed');
          function stop() {
            clearInterval(interval);
          function start() {
            $this.data('countdownInterval', setInterval(delegate($this, triggerEvents), 1000));
            interval = $this.data('countdownInterval');
          if(interval) stop();
          start();
      // Wrap the remove method to trigger an event when called
      var removeEvent = new $.Event('remove'),
          removeFunction = $.fn.remove;
      /*$.fn.remove = function() {
        $(this).trigger(removeEvent);
        return removeFunction.apply(this, arguments);
    })(jQuery);
    index.html :
    <!doctype html>
    <html lang="en">
    <head>
            <meta charset="utf-8">
            <title>Nero-Hosting Updating</title>
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
            <!-- Custom font from Google Web Fonts -->
            <link href="http://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
            <!-- Social font -->
            <link href="css/social-font.css" rel="stylesheet">
            <!-- Template stylesheet -->
            <link href="css/metronome.css" rel="stylesheet">
        </head>
        <body>
            <div class="container">
                <!-- Header -->
                <h1 class="header section">Nero-Hosting</h1>
                <!-- /Header -->
                <!-- Description -->
                <p class="description section">We are just updating our website and making lots and lots of changes! Check Back Soon!</p>
                <!-- /Description -->
                <!-- Countdown -->
                <div id="countdown" class="countdown section">
                    <div class="countdown-item">
                        <div class="countdown-label">Days</div>
                        <div class="countdown-number red" id="countdown-days">
                            <div class="countdown-number-side countdown-number-back"></div>
                            <div class="countdown-number-side countdown-number-front"></div>
                        </div>
                    </div>
                    <div class="countdown-item">
                        <div class="countdown-label">Hours</div>
                        <div class="countdown-number yellow" id="countdown-hours">
                            <div class="countdown-number-side countdown-number-back"></div>
                            <div class="countdown-number-side countdown-number-front"></div>
                        </div>
                    </div>
                    <div class="countdown-item">
                        <div class="countdown-label">Minutes</div>
                        <div class="countdown-number blue" id="countdown-minutes">
                            <div class="countdown-number-side countdown-number-back"></div>
                            <div class="countdown-number-side countdown-number-front"></div>
                        </div>
                    </div>
                    <div class="countdown-item">
                        <div class="countdown-label">Seconds</div>
                        <div class="countdown-number green" id="countdown-seconds">
                            <div class="countdown-number-side countdown-number-back"></div>
                            <div class="countdown-number-side countdown-number-front"></div>
                        </div>
                    </div>
                </div>
                <!-- /Countdown -->
                <!-- Social links -->
                <div class="social-links">
                    <a href="https://twitter.com/Nero_Hosting" class="icon-twitter-alt red"></a>
                </div>
                <!-- /Social links -->
            </div>
            <!-- Scripts -->
            <script src="../ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
            <script>window.jQuery || document.write('<script src="js/jquery-1.9.1.min.js"><\/script>')</script>
            <script src="js/jquery.countdown.js"></script>
            <script src="js/placeholders.min.js"></script>
            <script src="js/metronome.js"></script>
        <audio loop="" autoplay="">
                                  <source src="http://www.goodymusic.it/public/allegati/audio/51823_11820913007504706977.mp3" type="audio/mpeg"></audio>   
        </body>
    </html>
    metrome design :
    ========================================================================================== ==============================
        Metronome - Coming Soon Page
        v 1.0, 13 May 2013
        by Alex Shnayder
    ========================================================================================== ==============================
        Main javascript file
    $(document).ready(function() {
        var config;
        $.getJSON('config.json').done(function(data) {
            config = data;
            Countdown
    ========================================================================================== ========*/
            var date = new Date(config.countdown.year,
                                config.countdown.month - 1,
                                config.countdown.day,
                                config.countdown.hour,
                                config.countdown.minute,
                                config.countdown.second),
                $countdown = $('#countdown'),
                $countdown_numbers = {
                    days: $('#countdown-days'),
                    hours: $('#countdown-hours'),
                    minutes: $('#countdown-minutes'),
                    seconds: $('#countdown-seconds')
                tab_focused = true;
            $(window).on('focus', function() {
                tab_focused = true;
            $(window).on('blur', function() {
                tab_focused = false;
            $.each($countdown_numbers, function() {
                var $this = $(this);
                $this.data({
                    angle: 0,
                    sides: {
                        current: $('.countdown-number-front', $this),
                        other: $('.countdown-number-back', $this)
                    current_side: 1
            $countdown.countdown(date, function(event) {
                if (event.type == 'finished') {
                    $countdown.hide();
                } else if (tab_focused) {
                    var $tile,
                        $current_side,
                        $other_side,
                        angle,
                        timer;
                    $tile = $countdown_numbers[event.type];
                    if (!$tile) {
                        return;
                    $current_side = $tile.data('sides').current;
                    $other_side = $tile.data('sides').other;
                    angle = $tile.data('angle') + 180;
                    $tile.css('transform', 'rotateY(' + angle + 'deg)').data('angle', angle);
                    $other_side.text(event.value);
                    timer = setTimeout(function() {
                        $current_side.hide();
                        $other_side.show();
                        $tile.data('sides', {
                            current: $other_side,
                            other: $current_side
                        clearTimeout(timer);
                    }, 250);
            Subscription form
    ========================================================================================== ========*/
            var messages = config.subscription_form_tooltips,
                error = false,
                $form = $('#subscription-form'),
                $email = $('#subscription-email'),
                $button = $('#subscription-submit'),
                $tooltip;
            function renderTooltip(type, message) {
                var offset;
                if (!$tooltip) {
                    $tooltip = $('<p id="subscription-tooltip" class="subscription-tooltip"></p>').appendTo($form);
                if (type == 'success') {
                    $tooltip.removeClass('error').addClass('success');
                } else {
                    $tooltip.removeClass('success').addClass('error');
                $tooltip.text(message).fadeTo(0, 0);
                offset = $tooltip.outerWidth() / 2;
                $tooltip.css('margin-left', -offset).animate({top: '100%'}, 200).dequeue().fadeTo(200, 1);
            function hideTooltip() {
                if ($tooltip) {
                    $tooltip.animate({top: '120%'}, 200).dequeue().fadeTo(100, 0);
            function changeFormState(type, message) {
                $email.removeClass('success error');
                if (type == 'normal') {
                    hideTooltip();
                } else {
                    renderTooltip(type, message);
                    $email.addClass(type);
            $form.submit(function(event) {
                event.preventDefault();
                var email = $email.val();
                if (email.length == 0) {
                    changeFormState('error', messages['empty_email']);
                } else {
                    $.post('./admin/index.php?page=subscribe', {
                        'email': email,
                        'ajax': 1
                    }, function(data) {
                        if (data.status == 'success') {
                            changeFormState('success', messages['success']);
                        } else {
                            switch(data.error) {
                                case 'empty_email':
                                case 'invalid_email':
                                case 'already_subscribed':
                                    changeFormState('error', messages[data.error]);
                                    break;
                                default:
                                    changeFormState('error', messages['default_error'])
                                    break;
                    }, 'json');
            // Remove tooltip on text change
            $email.on('change focus click keydown', function() {
                if ($email.val().length > 0) {
                    changeFormState('normal');
    ============================================================
    If you need more info or files just tell me...

    Read the documentation:
    http://hilios.github.io/jQuery.countdown/
    Nancy O.

  • Month/Year reverse countdown help needed

    I need to create a simple reverse countdown that only needs
    the detail level of Months and Years. All of the tutorials I've
    found online are for counting down smaller intervals of time, like
    days, minutes, seconds, and milliseconds.
    I'm not very experienced with the code needed for such a
    timer, but essentially what I would like to have happen is:
    1. The current Month and Year are displayed onscreen.
    2. I click the mouse, and the Month and Year begin to count
    BACKWARDS, as if going back in time, so the Year would go from
    2007, to 2006, to 2005, etc, while the 12 months of the year would
    count down in reverse to coincide with the Year.
    3. When I click the mouse again, the countdown stops at
    whatever month/year it happens to be, I assume all the way back to
    the Year 0 if I let it play to the end.
    BONUS points if this reverse countdown could speed up over
    time, so that it appears to begin slowly, and rapidly speed up as
    the timer goes further back in time.
    Note that I do not need to use the ACTUAL date taken from the
    computer's clock, I'd be happy to just enter in, say "June 2007" as
    the start date and have it reverse from there. So even something
    that would just countdown from the numeral "2007" to "0" while a
    movieclip of the 12 months cycling along could work, though I have
    no concept as to how to control/increase the speed of such an
    animation as it plays.

    put the months in an array "december" to "january", and set a
    variable equal to the start year and an index that corresponds to
    the start month. display the start year/month.
    start a loop (setTimout would work) with a variable call
    frequency that calls a function that
    1. increases your array index (decreasing the year and
    restarting your index at 0 after the last array element is
    displayed) and displays the updated month/year
    2. decreases the variable call frequency and define another
    setTimeout.

  • HT3805 I have done all the above actions including several confirmations on the database itself.  I am still unable to get aperture to boot.  This was a worked yesterday gone today issue and now I am deeply concerned.  Can anyone help further.

    I am still not able to recovery Aperture and get it to open the library.  I really need some help here on what is casuing the issue. 
    I never got a warning on the library or anything when I shut it down.   One day later it won't open.  I sent some pictures out via email and looked through one library.  There was a warning panel that came up with a bunch of errors from the console APP.  Nothing specific.

    Edge has very clear restrictions, one being that you must have 6 months of clean payment history which you don't. Either wait until April 14, or good luck at Sprint.
    I am unsure how it can be determined the payment mix up was the fault of CS, but regardless, the mix up was done. There can be any number of reasons why a payment could be missed without any fault on your part, however you are still the responsible party for the account and must live with the repercussions.

  • Need help further tuning view source for outer join

    I have been working on tuning views for use in Discoverer for some time, and I have greatly improved upon what was there, but it is still not where I need it to be. There are 2 views the users join together in Discoverer - one for contract lines, and one for contract flexfields. Run as a 1 to 1 join on contract number, performance is great. However, as soon as I have an outer join on flexfields, the performance is awful. We are talking a difference of under a minute to hours and hours. I have to be able to perform an outer join because there can be contracts without flexfields. Can anyone suggest an alternative method to get the data or further tuning? I will paste both the contract lines and contract flexfields source - I have tuned the flexfields but have done nothing to date with the lines.
    CREATE OR REPLACE VIEW XXDBD_CONTRACT_FLEXFIELDS AS
    SELECT core.contract_id, core.service_id, core.contract_number, core.service_line, core.service, core.product_line, core.equipment, core.UL_Certificate_And_End_Date, core.MAF, core.Termination_Penalty_Percentage, core.multi_year, core.multi_year_effective_dates, core.terms_multi_year, core.SerLineRenPricingMethod, core.ren_line_change, core.zone, core.add_invoice_display, core.add_subgrouping, re.diebold_price, attr.coverage_hours, attr.reaction_times, attr.resolution_times, attr.repair_times, tr.performance_requirement, attr.penalty, attr.penalty_amount, attr.penalty_bonus, attr.mon_break_start, attr.mon_break_end, attr.tues_break_start, attr.tues_break_end, attr.wed_break_start, attr.wed_break_end, attr.thu_break_start, attr.thu_break_end, attr.fri_break_start, attr.fri_break_end, attr.sat_break_start, attr.sat_break_end, attr.sun_break_start, attr.sun_break_end, attr.split_covering, attr.cash_handling
    FROM (SELECT aa.ID Contract_id,
    aa.contract_number,
    dd.id Service_ID ,
    dd.cle_id dd_cle_id,
    dd.line_number service_line,
    xxdbd_Disco_Service_Contract.GetServNameInv
    (dd.id) Service,
    dd.line_number ||'.'||ee.line_number Product_Line,
    xxdbd_Disco_Service_Contract.GetEqpNoInvoice(ee.id)
    Equipment,
    DECODE(dd.attribute_category,'Service Contracts',
    NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_50_CHARS', dd.attribute1),dd.attribute1),'') UL_Certificate_And_End_Date,
    dd.attribute2 MAF,
    DECODE(dd.attribute_category,'Service Contracts',NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_NUMERIC', dd.attribute3),dd.attribute3),'') Termination_Penalty_Percentage,
    DECODE(dd.attribute_category,'Service Contracts', DECODE(NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_MULTIYEAR', dd.attribute5),dd.attribute5),
    'N','No Multi-Year',
    'Y','Multi-Year, Years not Known',
    'Y1','Multi-Year for 1 Year',
    'Y2','Multi-Year for 2 Year',
    'Y3','Multi-Year for 3 Year',
    'Y4','Multi-Year for 4 Year',
    'Y5','Multi-Year for 4 Year',dd.attribute5),'')Multi_Year,
    dd.attribute4 Multi_Year_Effective_Dates,
    DECODE(dd.attribute_category,'Service Contracts', NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_450_CHARS', dd.attribute9),dd.attribute9),'') Terms_Multi_Year,
    DECODE(dd.attribute_category,'Service Contracts', DECODE(NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_RENEWAL_PRICING', dd.attribute6),dd.attribute6),
    'MP', 'DBD Markup Percent',
    'CP', 'DBD Contract Price',
    'AI', 'DBD Amount Increase',
    'AD', 'DBD Amount Decrease',
    'TA', 'DBD Target Amount',
    'FR', 'DBD Flat Rate',dd.attribute6),'') SerLineRenPricingMethod,
    DECODE(dd.attribute_category,'Service Contracts', NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_NUMERIC', dd.attribute7),dd.attribute7),'') Ren_Line_Change,
    DECODE(dd.attribute_category,'Service Contracts', DECODE(NVL(xxdbd_Disco_Service_Contract.GetContractMasterProperty('DBD_OKS_ZONE', dd.attribute8),dd.attribute8),
    'DNA1','DNA Zone 1',
    'DNA2','DNA Zone 2',
    'DNA3','DNA Zone 3',
    'BRAZIL1','Brazil Zone 1 (50 KM)',
    'BRAZIL2','Brazil Zone 2 (80 KM)',
    'BRAZIL3','Brazil Zone 3 (200 KM)',dd.attribute8),'')Zone,
    DECODE(dd.attribute11, 'N','None','SC','Sub Component', 'SN', 'Serial Number', 'SNSC', 'Serial Number and Sub-Component') Add_Invoice_Display,
    DECODE(dd.attribute10, 'SI','Service Item', 'CP','Covered Product', 'PC','Product Category') Add_SubGrouping,
    dd.attribute12 Diebold_Price,
    ee.id ee_id,
    ee.cle_id ee_cle_id
    FROM okc_k_headers_b aa,
    okc_k_lines_b dd,
    okc_k_lines_b ee
    -- xxdbd_temp_flex_contract tfc
    WHERE aa.id = dd.DNZ_CHR_ID
    AND dd.CLE_ID IS NULL
    AND dd.id = ee.cle_id
    AND ee.DNZ_CHR_ID = aa.id
    AND ee.LSE_ID =9
    AND dd.LSE_ID =1
    -- and aa.contract_number = 'NL0000014'
    -- and aa.contract_number in (select contract_number from xxdbd_flex_contract)
    -- AND tfc.contract_number = aa.contract_number
    ) core,
    (SELECT h.contract_number,
    DECODE(l.attribute_category,
    'Coverage Break', xxdbd_get_sib_cont_id(xxdbd_get_parent_cle_id(l.cle_id,2)),
    'Business Process',xxdbd_get_sib_cont_id(xxdbd_get_parent_cle_id(l.cle_id,1)),
    'Coverage Template Header',xxdbd_get_sib_cont_id(l.cle_id),
    'Transaction Type', xxdbd_get_sib_cont_id(xxdbd_get_parent_cle_id(l.cle_id,2)),null) ee_id,
    DECODE(l.attribute_category, 'Business Process', l.attribute1) Coverage_Hours,
    DECODE(l.attribute_category, 'Business Process', l.attribute2) Reaction_Times,
    DECODE(l.attribute_category, 'Business Process', l.attribute3) Resolution_Times,
    DECODE(l.attribute_category, 'Business Process', l.attribute4) Repair_Times,
    DECODE(l.attribute_category, 'Business Process', DECODE(l.attribute5,
    'RA', 'REACTION'
    , 'RS', 'RESOLUTION'
    , 'RR', 'REACTION & RESOLUTION'
    , 'NR', 'NO REQUIREMENT',
    l.attribute5)) Performance_Requirement,
    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute1) Penalty,
    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute2) Penalty_Amount,
    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute3) Penalty_Bonus,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute1) Mon_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute2) Mon_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute3) Tues_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute4) Tues_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute5) Wed_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute6) Wed_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute7) Thu_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute8) Thu_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute9) Fri_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute10) Fri_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute11) Sat_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute12) Sat_Break_End,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute13) Sun_Break_Start,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute14) Sun_Break_End,
    DECODE(l.attribute_category, 'Transaction Type', l.attribute1) Split_Covering,
    DECODE(l.attribute_category, 'Transaction Type', l.attribute2) Cash_Handling
    from okc_k_lines_b l , okc_k_headers_b h--, xxdbd_temp_flex_contract tfc
    where l.attribute_category in ('Coverage Break', 'Business Process', 'Coverage Template Header','Transaction Type')
    and h.id = l.dnz_chr_id
    -- and h.contract_number in (select contract_number from xxdbd_flex_contract)
    -- and tfc.contract_number = h.contract_number
    ) attr
    where core.ee_id = attr.ee_id (+)
    and core.contract_number = attr.contract_number (+);
    create or replace view xxdbd_contract_lines as
    select aa.id Contract_id,
    bb.id Service_id,
    aa.CONTRACT_NUMBER,
    F1.USER_NAME Created_By,
    F2.USER_NAME LastUpdated_By,
    bb.LINE_NUMBER Service_Line_No,
    bb.LINE_NUMBER ||'.'|| cc.LINE_NUMBER Product_Line_No,
    xxdbd_Disco_Service_Contract.GetServNameInv(bb.id) Service,
    xxdbd_Disco_Service_Contract.GetServDescInv(bb.id) Service_Desc,
    xxdbd_Disco_Service_Contract.GetServicePrice(bb.id) Service_Price,
    bb.PRICE_UNIT Service_List_Price,
    bb.CURRENCY_CODE,
    aa.SCS_CODE Contract_Type,
    bb.STS_CODE Service_Status,
    bb.TRN_CODE Term_Code,
    bb.START_DATE Service_start,
    bb.END_DATE Service_end,
    TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(Null, bb.id, 'OKX_BILLTO' )) SERVICE_BillToSite,
    xxdbd_Disco_Service_Contract.GetLocAccount(TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(Null, bb.id, 'OKX_BILLTO' ))) Bill_Account,
    xxdbd_Disco_Service_Contract.GetLocation(TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(NULL, bb.id, 'OKX_BILLTO' ))) Service_BillTo,
    TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(NULL, bb.id, 'OKX_SHIPTO' )) SERVICE_ShipToSite ,
    xxdbd_Disco_Service_Contract.GetLocation(TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(NULL, bb.id, 'OKX_SHIPTO' ))) Service_Ship_To,
    xxdbd_Disco_Service_Contract.GetLocAccount(TO_NUMBER(OKS_ENT_UTIL_PVT.get_billtoshipto(NULL, bb.id, 'OKX_SHIPTO' ))) Ship_Account,
    bb.DATE_RENEWED,
    bb.DATE_TERMINATED,
    cc.START_DATE Eqp_Start,
    cc.END_DATE Eqp_End,
    xxdbd_Disco_Service_Contract.GetEqpNoInvoice(cc.id) Eqp_No,
    xxdbd_Disco_Service_Contract.GetEqpDescInvoice(cc.ID) Eqp_Desc,
    xxdbd_Disco_Service_Contract.GetEqpQuantityInvoice(cc.id) Eqp_Quan,
    xxdbd_Disco_Service_Contract.GetEqpSerialNoInvoice(cc.id) Eqp_Serial,
    xxdbd_Disco_Service_Contract.GetCustomerCt(aa.id, bb.id) Cust_Contact,
    DD.ORGANIZATION_ID,
    dd.INSTALL_ADDRESS,
    dd.INSTALL_DATE,
    dd.INSTALL_SITE_ID INSTALL_SITE_USE_ID,
    dd.PARTY_SITE_NAME INSTALL_SITE_NAME,
    dd.PARTY_SITE_NUMBER INSTALL_SITE_NUMBER
    ,cii.inventory_item_id
    ,cii.inv_master_organization_id
    ,aa.authoring_org_id
    ,cc.id equipment_id
    ,TO_NUMBER(replace(bb.attribute12,',','')) annual_contract_amt
    ,ou.name operating_unit
    ,ou.organization_id operating_unit_id
    ,substr(xxdbd_ra_utility.Get_BusinessProcess(cc.cle_id),1,100) business_process
    ,cii.instance_id
    ,cii.instance_number
    from okc_k_headers_b aa
    ,okc_k_lines_b bb
    ,okc_k_lines_b cc
    ,fnd_user f1
    ,fnd_user f2
    ,csi_item_instances cii
    ,okc_k_items items
    ,hr_all_organization_units ou
    ,xxdbd_oks_install_info_v dd
    where aa.id = bb.dnz_chr_id
    and bb.cle_id is null
    and cc.cle_id = bb.id
    and cc.dnz_chr_id = aa.id
    and f1.user_id = bb.created_by
    and f2.user_id = bb.last_updated_by
    and cc.lse_id in (9,25,18,40)
    and dd.line_id (+) = cc.id
    and items.cle_id = cc.id
    and cii.instance_id = items.object1_id1
    and aa.authoring_org_id = ou.organization_id (+);
    Here are the explain plans from TOAD:
    Operation Object Name Rows Bytes Cost Object Node In/Out PStart PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE 6 49124
    NESTED LOOPS OUTER 6 80 K 49124
    VIEW 6 80 K 49112
    HASH JOIN 6 1 K 49112
    HASH JOIN 17 K 2 M 20214
    TABLE ACCESS FULL OKC.OKC_K_HEADERS_B 5 K 175 K 37
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 17 K 1 M 20162
    INDEX SKIP SCAN XXDBD.XXDBD_OKC_K_LINES_B_N10 39 17085
    TABLE ACCESS FULL OKC.OKC_K_LINES_B 502 K 34 M 27803
    VIEW PUSHED PREDICATE 1 107 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 42 3 K 216
    NESTED LOOPS 50 5 K 219
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_HEADERS_B 1 33 3
    INDEX RANGE SCAN OKC.OKC_K_HEADERS_B_U2 1 2
    INDEX RANGE SCAN OKC.OKC_K_LINES_B_N2 1 K 32
    Operation Object Name Rows Bytes Cost Object Node In/Out PStart PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE 245 63309
    NESTED LOOPS 245 291 K 63309
    NESTED LOOPS OUTER 245 286 K 63064
    NESTED LOOPS 245 80 K 62574
    HASH JOIN 245 74 K 61839
    HASH JOIN 245 71 K 61756
    HASH JOIN OUTER 245 68 K 61673
    HASH JOIN 245 60 K 61664
    HASH JOIN 205 K 32 M 28046
    TABLE ACCESS FULL OKC.OKC_K_HEADERS_B 5 K 244 K 37
    TABLE ACCESS FULL OKC.OKC_K_LINES_B 205 K 23 M 27803
    TABLE ACCESS FULL OKC.OKC_K_LINES_B 2 M 168 M 27803
    TABLE ACCESS FULL HR.HR_ALL_ORGANIZATION_UNITS 2 K 64 K 8
    TABLE ACCESS FULL APPLSYS.FND_USER 13 K 172 K 81
    TABLE ACCESS FULL APPLSYS.FND_USER 13 K 172 K 81
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    VIEW APPS.XXDBD_OKS_INSTALL_INFO_V 1 861 2
    UNION-ALL PARTITION
    NESTED LOOPS 1 167 9
    NESTED LOOPS 1 108 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_PARTY_SITES 1 23 1
    INDEX UNIQUE SCAN AR.HZ_PARTY_SITES_U1 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_LOCATIONS 1 59 1
    INDEX UNIQUE SCAN AR.HZ_LOCATIONS_U1 1
    NESTED LOOPS 1 144 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_LOCATIONS 1 59 1
    INDEX UNIQUE SCAN AR.HZ_LOCATIONS_U1 1
    NESTED LOOPS 1 161 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_PARTIES 1 76 1
    INDEX UNIQUE SCAN AR.HZ_PARTIES_U1 1
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 21 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    And here is the SQL to join:
    select * from xxdbd_contract_lines l, xxdbd_contract_flexfields f
    where f.service_id (+) = l.service_id
    and f.contract_number (+) = l.contract_number
    and l.contract_number = 'NL0000014'
    Operation Object Name Rows Bytes Cost Object Node In/Out PStart PStop
    SELECT STATEMENT Optimizer Mode=CHOOSE 1 49221
    HASH JOIN OUTER 1 38 K 49221
    VIEW APPS.XXDBD_CONTRACT_LINES 1 19 K 96
    NESTED LOOPS OUTER 1 1 K 96
    NESTED LOOPS 1 358 94
    NESTED LOOPS 1 345 93
    NESTED LOOPS 1 332 92
    NESTED LOOPS 1 311 91
    NESTED LOOPS 1 285 88
    NESTED LOOPS 448 72 K 88
    NESTED LOOPS OUTER 1 78 4
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_HEADERS_B 1 46 3
    INDEX RANGE SCAN OKC.OKC_K_HEADERS_B_U2 1 2
    TABLE ACCESS BY INDEX ROWID HR.HR_ALL_ORGANIZATION_UNITS 1 32 1
    INDEX UNIQUE SCAN HR.HR_ORGANIZATION_UNITS_PK 1
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 378 32 K 84
    INDEX RANGE SCAN XXDBD.XXDBD_OKC_K_LINES_B_N10 378 16
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 119
    INDEX RANGE SCAN OKC.OKC_K_LINES_B_N2 1 K 32
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 21 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID APPLSYS.FND_USER 1 13 1
    INDEX UNIQUE SCAN APPLSYS.FND_USER_U1 1
    TABLE ACCESS BY INDEX ROWID APPLSYS.FND_USER 1 13 1
    INDEX UNIQUE SCAN APPLSYS.FND_USER_U1 1
    VIEW APPS.XXDBD_OKS_INSTALL_INFO_V 1 861 2
    UNION-ALL PARTITION
    NESTED LOOPS 1 167 9
    NESTED LOOPS 1 108 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_PARTY_SITES 1 23 1
    INDEX UNIQUE SCAN AR.HZ_PARTY_SITES_U1 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_LOCATIONS 1 59 1
    INDEX UNIQUE SCAN AR.HZ_LOCATIONS_U1 1
    NESTED LOOPS 1 144 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_LOCATIONS 1 59 1
    INDEX UNIQUE SCAN AR.HZ_LOCATIONS_U1 1
    NESTED LOOPS 1 161 8
    NESTED LOOPS 1 85 7
    NESTED LOOPS 1 51 6
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 1 25 3
    INDEX UNIQUE SCAN OKC.OKC_K_LINES_B_U1 1 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_ITEMS 1 26 3
    INDEX RANGE SCAN OKC.OKC_K_ITEMS_N1 1 2
    TABLE ACCESS BY INDEX ROWID CSI.CSI_ITEM_INSTANCES 1 34 1
    INDEX UNIQUE SCAN CSI.CSI_ITEM_INSTANCES_U01 1
    TABLE ACCESS BY INDEX ROWID AR.HZ_PARTIES 1 76 1
    INDEX UNIQUE SCAN AR.HZ_PARTIES_U1 1
    VIEW APPS.XXDBD_CONTRACT_FLEXFIELDS 6 112 K 49124
    NESTED LOOPS OUTER 6 80 K 49124
    VIEW 6 80 K 49112
    HASH JOIN 6 1 K 49112
    HASH JOIN 17 K 2 M 20214
    TABLE ACCESS FULL OKC.OKC_K_HEADERS_B 5 K 175 K 37
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 17 K 1 M 20162
    INDEX SKIP SCAN XXDBD.XXDBD_OKC_K_LINES_B_N10 39 17085
    TABLE ACCESS FULL OKC.OKC_K_LINES_B 502 K 34 M 27803
    VIEW PUSHED PREDICATE 1 107 2
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_LINES_B 42 3 K 216
    NESTED LOOPS 50 5 K 219
    TABLE ACCESS BY INDEX ROWID OKC.OKC_K_HEADERS_B 1 33 3
    INDEX RANGE SCAN OKC.OKC_K_HEADERS_B_U2 1 2
    INDEX RANGE SCAN OKC.OKC_K_LINES_B_N2 1 K 32

    DECODE(l.attribute_category, 'Coverage Template Header', l.attribute3) Penalty_Bonus,
    DECODE(l.attribute_category, 'Coverage Break', l.attribute1) Mon_Break_Start,
    DECODE(l.attribute_category, 'Transaction Type', l.attribute1) Split_Covering,Uh oh, the dreaded entity attibute value, or generic, data model.
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:10678084117056
    I am afraid slow performance is a built in feature of this database design, not much you can do in queries.
    You could possibly create the views as materialized views and query those instead.
    Quote from the linked article
    But, how does it perform? Miserably, terribly, horribly. A simple "select
    first_name, last_name from person" query is transformed into a 3-table join with
    aggregates and all. Further, if the attributes are "NULLABLE" - that is, there
    might not be a row in OBJECT_ATTRIBUTES for some attributes, you may have to
    outer join instead of just joining which in some cases can remove more optimal
    query plans from consideration.
    Writing queries might look pretty straightforward, but it's impossible to do in
    a performant fashion.

  • TS1559 Performed all the recommeded steps but not winning. Please help further

    My phone still cant allow me to turn on wifi

    Click Settings.
    Check if Airplane Mode is ON.
    If so, this turns WiFi OFF.
    Turn Airplane Mode OFF
    Then  if your WiFi doesn't turn on, click the WiFi icon &amp; on the next screen the first line is WiFi On/Off button. If WiFi is off, and you turned Airplane Mode off, you should now be able to turn WiFi ON.
    if none of this works, make an appt at a Apple Genius Bar, at an Apple Store. While logged in to Apple.com, go to Support to find store near you to make an appointment or use:
    http://apple.com/retail/storelist/
    Find the store you want, click it, look for make an appointment button for Genius Bar. Follow prompts from there...
    Let us know how this works out for you.
    Good luck.

  • My mail was working fine until yesterday. Now it says that mail connects to the internet - but something wrong with the ports. I have spoken with talktalk - they can't help, Ithe major problem being that I have forgotten my password!

    Hi, I'm working on an Imac, yesterday email was working fine, now nothing is happening. It says that I need a password to check details - this I can't remember, it doesn't seem to be the same as the one I use to log on to mail through browser (talktalk) - message says can connect to internet but error with port settings etc which need verifying. Talktalk unable to help further - but as I can't get past password page I am very stuck. Any one help as to how to find out password.... have tried to make a new account but that doesn't seem to wrok either. Am wondering if fault is with computer. Thanks.
    imac 10.10.1

    TalkTalk E-mail Setup         See post by Csound1

  • I think I have a problem with Mavericks: can anyone help,please?

    A couple of days ago I installed Mavericks on top of my existing Mountain Lion OS. Not before I backed up the ML version with Time Machine, though.... :-)
    Initially I thought everthing was fine, but then started to notice a few things that bothered me, which have not gone away. In fact, I think this install is now a potential problem. Unlike many other people, elsewhere on this forum, I have not noticed the calamitous slowing down and general unusability of Mavericks. I'm using a prety new i7 iMac ( the new flat one) with 32 GB of RAM.Everytihng worked great with Mountain Lion. However, The following anomalies have cropped up: Mail is taking over 30" to send a simple email. In ML it was almost instantaneous. I feel that Mail is not performing as it did in ML, and the same goes for Safari. It "feels" odd and slow and can take an age to load up pages. In fact one particular page would not load properly at all, but worked fine in Firefox. In the end got it to work in Sfari, but ithis type of behaviour doesn't instill confidence. Things got wierder...
    An update to iMovie got " stuck" in the dowload process,and was perpetually downloading in Launchpad. It kept oscillating from approx 61 MB to aprrox 84 MB of a 1.94 GB file. Then I did a disk utiltiy test of my system drive and it suddenly stated that the drive need repairing. I booted up in Recovery Mode and tested the drive, which came back all clear! I booted up normally again and now the disk utility won't even complete a full diagnosis of the drive!It will diagnos all my other drives fine though.... :-s  It keeps getting stuck on: Checking Volume Bitmap, and won't go any further. So, I did what some other person did on another thread, which seemed to clear up his problems; namely: simply reinstalled Mavericks  from Recovery mode. This did not improve anything for me. The same issues remain. In fact as I type this, I notice that I'm using nearly 23 GB of my 32 GB of RAM, and all I have open is Safari, Disk Utility and Mail ! To quote Hans Solo: " I've got a b-a-a-a-d feeling about this..."
    So, this is my long-winded way of asking: what shall I do? I would like to boot in Recovery Mode and reinstall my back up from an external drive. Does anyone have any advice about this,please? If I restore from my backup, will I actually get the ML OS back on the computer, or will  I be stuck with Mavericks trying to impose itself ,as some people reported? I do want to use Mavericks, but not in the condition it's in right now. Also,  really don't want to perfom a clean install and migrate everything over from the Time Machine back up....
    Thanks for any advice.

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • I purchase the Forms plus,  bywidgets.mu, and can't get it to work.  any help?

    I purchase the Forms + bywidgets.mu
    I've followed the directions on the weblink (https://widgets.mu/se/FormsPlus/demo/)
    and still can't get anything to work.
    I just keep getting <> inside a box and that's it.
    Help please!

    Hi Lisa,
    Do you have a URL where I can take a look at the issue? It may be a configuration issue or it may be a bug so I just want to check and make sure.
    In terms of the radio buttons one, I just published up update to the Forms+ Widget this morning that includes a new way to do grouping for radio buttons. Creative Cloud should download the updated version of the .mulib file into your downloads folder (and it should now be called something like FormsPlus Bundle.mulib), and you can double click that to add the updated widgets to your Muse library. The one I'm referring to in particular is called the "Radio Group (Box Selection)" widget. Basically, when you drag the widget out onto the page, it shows a dotted line box and you simply drag and resize the box around the radio items you'd like to group together. The box itself won't be exported so you don't have to worry about that, but it will allow you to visually group them instead of doing so with labels.
    Let me know if you have any trouble getting the new update or using the box selection widget and I'd be happy to help further.
    Thanks,
    Andrew

  • Please help with a table issue

    At
    http://www.stlblues.net/default.htm,
    the mini-calendar I frame at the top right is aligning left. I
    can't find the reason, please help me align this centered /

    It's in an iframe. I can't help further than that.... 8(
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Bushido" <[email protected]> wrote in
    message
    news:ek0brg$5ip$[email protected]..
    > At
    http://www.stlblues.net/default.htm,
    the mini-calendar I frame at the
    > top right is aligning left. I can't find the reason,
    please help me align
    > this centered /
    >
    >

  • Need help to find out where my forms are stored locally on my PC

    Is there an easy way to find out where my forms are stored?

    Hi;
    What is it you would like to do?  I am guessing you are referring to forms in the FormsCentral desktop application and not the web site.  The forms in the Desktop application are not stored in a way you can access or use them other than through the application.  You can export and save locally any form as a "FormsCentral Design Template" which can be shared with anyone and re-imported into FormsCentral.
    If you can give me more details about what you would like to do I can help further.
    Thanks,
    Josh

  • My BB9220 keeps on rebooting. HELP!!!

    I seriuosly need help here. My Blackberry 9220 keeps on rebooting.  It happens everytime. And now, my phone doesn't open up already. Whenever I put the battery back on, the LED light just keeps on blinking. I don't know what to do. HELP!!!

    Hey jhack0211,
    Welcome to the BlackBerry® Support Community Forums.
    I would suggest to try backing up and doing a clean reload of the BlackBerry device software as shown here: http://btsc.webapps.blackberry.com/btsc/KB11320. Please test before restoring any data to the device.
    If this resolves the issue do a selective restore of essential data (Address Book, Calendar, Task, Memos, BBM contacts etc.)
    How to use BlackBerry Desktop Software to restore data to a BlackBerry smartphone from a backup file
    http://btsc.webapps.blackberry.com/btsc/KB10339.
    If the issue still persists after the reload, further investigation might be required. To help further diagnose the cause, contact your wireless service provider or BlackBerry Technical Support Services for further review and support.
    Thank you.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Media Offline - Please Help!

    Half of the clips in my video project went offline? How do I fix this??? I am a newbie.
    The only thing that has changed was the scrach folder was because it was claiming it was full, I think by default it was loading into the system folders, I don't know why apple choose that by default. Programs only been installed for 2 days.

    I see you are using 10.8.2, that's going to be a road block as it's not a supported OS working with FCE.
    However I used FCE on 10.8.2 and it mostly worked.
    When you say you changed the Scratch Disc location, exactly what where the steps.
    Files only go off-line if FCE looses the file paths.
    Without some specific info on what you have changed we cannot help further.
    Al

  • Computer help please????

    I have a compaq presario yes its a few years old. but I restarted it and windows wont open anymore. I have tried rebooting and recovery and it wont allow me to do anything. It acts like its going to load after I have tried those opens and then I recieve a message that says " configuration error ( code purple). I have tried calling the company and they want 50.00  to help me with this problem. I have visited the website and they cant help me either. If anyone may have any suggestions on how to help me with this. I would greatly appreciate it. I dont have the money to pay thier tech support. Trying to fix it for my girls... One day it works fine next day its not.. Thank You!!!!!!!!!

    Welcome, voneshd!
    Sorry to hear you are having computer problems.   I have not seen this error, but what RealGeorgeW is suggesting is only related to after repairs.  HP and Compaq do use a "tattoo" process for hard drives and motherboards - so you would have had to have one of these things replaced.  If it was repaired by Geek Squad®, this should be a non-issue as we know to re-tattoo before completing repairs.  The best way to assist you is through a diagnostics at your local Geek Squad® Precinct.  Let us know how we can help further!
    Matthew|Community Advocate | Best Buy® Corporate
    Visit our Channel on
     Private Message

  • Need Some Help! Empire: Total War Digital Download

     I Purchased Empire: Total War for windows through the best buy digital downloads. I succesfully downloaded the main setup to my desktop along with all seven setup files, However when I open the main setup file it asks me to insert disk 1 in order to continue. I have never done a digital download before as I was afraid that I would run into a problem such as this and be out my money. If anyone could help me I would greatly appreciate it.
    Also, This is the second time i have had to download the game form the digital library and i left all of the previous files on my computer when I redownloaded it. 

    Hello MCEMT306,
    Thanks for purchasing a Digital Copy of Empire: Total War at Best Buy! I feel like it’s been ages since I’ve played that game, but now you have me thinking about diving back in. When our Digital Library goes through upgrades, I have heard of discrepancies occurring with the video game files. However, I haven’t quite seen what you’ve described! No worries though, as most of these issues are quite easy to resolve.
    Before I reached out to our Digital Operations team, were you able to get this installed? If not, please let me know and I’ll happily assist in getting this taken care of.
    I look forward to your response and helping further if needed!
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • Problem with printing indesign PDF

    Hello I'm french so I hope you'll understand what I mean. I'm working on a product catalog. When I export in PDF, everything is ok. But when I want to print, I have some blank pages. If you want I have an example file Can someone help me ? Thank you

  • Printing Press Simulation with Acrobat X

    I created a CMYK file for press in InDesign CS6 (Mac OSX 10.8.5). I exported from ID to PDF using PDF/X-4. The output intent is Coated_GRACoL 2006 (ISO 12647-2:2004). The file checks out great in ID and Acrobat preflight and all is as it should be. I

  • Why is information prepopulated

    My Son purchased a Mac Book Pro for us for christmas from Best buy and now everytime I do anything on my computer his information is prepopulated into fields.  I dont know why, he hasnt used the computer.  How do I make this stop and go away?

  • Get rid of shut down warning/message?

    When I go to shut down I get a message saying it'll shut down in one minute. Any way to get rid of this? Thanks

  • Sales area missing after Product download --ECC to CRM

    Dear SDN team, Im facing a issue after downloading few products from ECC to CRM using Middleware . The Products have been download successfully , but the Sales area for Product is missing in CRM system . I have correctly mapped the ECC sales area to