Non posso calcolare un riferimento dati necessario

i video dopo qualche tempo non funzionano più e viene fuori il messaggio 'non posso calcolare un riferimento dati necessario': come risolvo e recupero i vecchi video?

Already tried to restore a file from timemachine but still it doesn't work

Similar Messages

  • JSON.parse: unexpected non-whitespace character after JSON data

    I am having problem using cold fusion and jquery.ajax it will throw error
    JSON.parse: unexpected non-whitespace character after JSON data
    this is the response in firebug {"EMPCODE":"E-00001"}
    child.cfm
      <cfif IsDefined("empmycode")>
             <cfset  myarray= getempCode(#mycode#)>
             <cfoutput>#myarray#</cfoutput>
      </cfif>
    <cffunction name="getempCode">
           <cfargument name="empcode">
             <cfquery  name="empQuery" datasource="#datasource#">
                   Select empcode from employee where empcode = '#empcode#'
             </cfquery>
                <cfset mystruct = StructNew()>  
                <cfset mystruct.empcode=#empQuery.empcode#>
            <cfreturn   SerializeJSON(mystruct)>
      </cffunction>
    parent.cfm
    $.ajax({
        type: 'post',
            data: {empmycode:empcode}, 
        url: 'child.cfm',
        success:function(data){
        var myobjc = jQuery.parseJSON(data);
        console.log(myobj.empcode);
    Thank you in advance

    jemz wrote:
      <cfif IsDefined("empmycode")>
             <cfset  myarray= getempCode(#mycode#)>
             <cfoutput>#myarray#</cfoutput>
      </cfif>
      <cffunction name="getempCode">
           <cfargument name="empcode">
             <cfquery  name="empQuery" datasource="#datasource#">
                   Select empcode from employee where empcode = '#empcode#'
             </cfquery>
                <cfset mystruct = StructNew()>  
                <cfset mystruct.empcode=#empQuery.empcode#>
            <cfreturn   SerializeJSON(mystruct)>
      </cffunction>
    The above code is confusing. You test for the existence of empmycode, yet you actually use mycode instead. In addition, what you call an array isn't, and you fail to 'var' the method's local variables.
    You could modify the code, by scoping, as well as bearing in mind what Carl has said:
    <cfif IsDefined("form.empmycode")>
        <cfset  code= getempCode(form.empmycode)>
        <cfoutput>#code#</cfoutput>
    </cfif>
    <cffunction name="getempCode">
    <cfargument name="empcode">
    <cfset var mystruct = StructNew()>
    <!--- Alternative:  <cfqueryparam cfsqltype="cf_sql_varchar" value="'#arguments.empcode#"> --->
             <cfquery  name="empQuery" datasource="#datasource#">
                   Select empcode from employee where empcode = <cfqueryparam cfsqltype="cf_sql_integer" value="'#arguments.empcode#">
             </cfquery>
    <cfset mystruct.empcode=empQuery.empcode>
    <cfreturn   SerializeJSON(mystruct)>
    </cffunction>

  • Come cancello tutte le foto dal RULLINO, non dalla libreria! ne ho 9000 e non posso farlo una per una.Grazie

    Ciao a tutti.
    Ho 9000 foto nel mio iphone 4 da 32gb, nel rullino, non nella libreria!
    Sono quelle che ho scattatao io, vorrei cancellarle tutte, ma non trovo una soluzione... com'è possibile?
    Se collego l'iphone al pc e lo rileva come archivio di massa e vado nelle cartelle per cancellarle una alla volta si blocca ovviamente tutto;
    non posso certamente cancellarle una alla volta dall'iphone.
    c'è un modo per farlo??
    ho già provato a sincronizzarlo con una cartella vuota o con una foto non succede nulla, al massimo mi aggiunge la foto da sincronizzare nella libreria. ma il rullino rimane li com'era.
    Sto impazzendo per questa cosa!!
    non ditemi che non si può perchè non ci credo!!!
    Grazie

    Ciao a tutti.
    Ho 9000 foto nel mio iphone 4 da 32gb, nel rullino, non nella libreria!
    Sono quelle che ho scattatao io, vorrei cancellarle tutte, ma non trovo una soluzione... com'è possibile?
    Se collego l'iphone al pc e lo rileva come archivio di massa e vado nelle cartelle per cancellarle una alla volta si blocca ovviamente tutto;
    non posso certamente cancellarle una alla volta dall'iphone.
    c'è un modo per farlo??
    ho già provato a sincronizzarlo con una cartella vuota o con una foto non succede nulla, al massimo mi aggiunge la foto da sincronizzare nella libreria. ma il rullino rimane li com'era.
    Sto impazzendo per questa cosa!!
    non ditemi che non si può perchè non ci credo!!!
    Grazie

  • Sending any non-POST-type request with data to CFC

    In CF 11 (Developer Edition), non-POST-type requests with data to CFC files seem to get stuck in ColdFusion. I don't believe I've changed anything in CF administration that could affect this, and as far as I can tell I haven't done anything to IIS that would break it either. The issue occurs with both of the CF applications that I'm working on.
    Requests to CFMs that contain data work using any of the CRUD methods (GET, POST, PUT, DELETE), and the IIS handlers are setup to accept all methods for both CFMs and CFCs.
    Can anyone else verify whether this issue with requests to CFCs exists in their environment?
    Example curl requests:
    # Requests to CFC with data
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT)
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    # Requests to CFM with data
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfm' # Works fine
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfm' # Works fine
    # Requests without data
    curl -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # Works fine
    curl -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine

    mike124897 wrote:
    In CF 11 (Developer Edition), non-POST-type requests with data to CFC files seem to get stuck in ColdFusion. I don't believe I've changed anything in CF administration that could affect this, and as far as I can tell I haven't done anything to IIS that would break it either. The issue occurs with both of the CF applications that I'm working on.
    Requests to CFMs that contain data work using any of the CRUD methods (GET, POST, PUT, DELETE), and the IIS handlers are setup to accept all methods for both CFMs and CFCs.
    Can anyone else verify whether this issue with requests to CFCs exists in their environment?
    Example curl requests:
    # Requests to CFC with data 
    curl -d 'test=123' -X 'GET' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'PUT' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'DELETE' 'http://localhost/myapplication/component.cfc?method=test' # NO RESPONSE (TIMEOUT) 
    curl -d 'test=123' -X 'POST' 'http://localhost/myapplication/component.cfc?method=test' # Works fine 
    You complicate things with too many flags. You could just do something like
    Get
    curl "http://localhost/myapplication/component.cfc?method=test&myArg=123"
    Post
    curl --data "myData=someData" "http://localhost/myapplication/component.cfc?method=test&myArg=123"

  • Salve ho un problema con l iPhone da venerdì non posso ricevere ed effettuare chiamate e mandare sms e stranamente però posso andare su internet anche senza il wifi ho provato a mettere la SIM in altri telefoni e funziona!Cosa mi consigliate di fare?

    Salve ho un problema con l iPhone da venerdì non posso ricevere ed effettuare chiamate e mandare sms e stranamente però posso andare su internet anche senza il wifi ho provato a mettere la SIM in altri telefoni e funziona!Cosa mi consigliate di fare?

    Prova a fare così: spegni qualunque tipo di connessione (wifi, 2G/3G/4G, localizzazione, bluetooth ecc), imposta la modalità aereo, chiudi tutte le app dal multitasking, e poi fai un riavvio (tenendo premuti insieme il tasto power e quello home nello stesso momento; vedrai che lo schermo si spegnerà e si riaccenderà fino a quando comparirà la classica mela all'avvio, in quel momento puoi lasciare i tasti e far finire l'avvio dell'iPhone. Sblocca lo schermo, disattiva la modalità aereo, inserisci il PIN e attendi che riacchiappi la rete e vedi se cambia qualcosa.
    Altrimenti potrebbe essere qualche valore inserito ed errato tra le impostazioni del gestore.
    Ultima spiaggia prima di andare in un negozio Tre: ripristino iPhone da DFU senza ricaricare il backup precedente e vedi se si ripresenta il problema.

  • Ho installato lion mini mac, risultato non posso connettermi ad internet con la mia chiavetta Wind, per far partire il programma vuole java runtime, che non posso scaricare perchè non posso connettermi, ma non posso connettermi perchè mi manca. aiuto

    Ho installato lion mini mac, risultato non posso connettermi ad internet con la mia chiavetta Wind, per far partire il programma vuole java runtime, che non posso scaricare perchè non posso connettermi, ma non posso connettermi perchè mi manca. aiuto

    Se vai a Airport Utility ci sono luoghi insoliti o grandi differenze che non erano lì quando correvano Snow Leopard? Potreste provare selezionando un la rete e andando a opzioni avanzate, facendo in modo che il firewall è disattivato e non vi ènessun proxy attivo in quanto ciò potrebbe tutti gli effetti il collegamento

  • Non posso completare la richiesta itunes store. l'host non è in funzione

    salve a tutti!!
    qualcuno può dirmi come risolvere questo problema di connessione a iTunes Store?
    "non posso completare la richiesta itunes store. l'host non è in funzione. Si è verificato un errore in Itunes Store. Riprova più tardi."
    grazie

    Forse trovata soluzione, provate così:
    Fate il Backup di tutto
    Fate triplo-click sulla linea sottostante per selezionarla per intero:
    ~/Library/Application Support/SyncServices/
    Click destro o control-click sulla linea selezionata
    Selezionare "Mostra nel Finder" dal menu contestuale.
    Verrà individuata la cartella della riga sopra contenente un solo file.
    Chiudete iTunes.
    Spostate nel cestino il file contenuto nella cartella.
    Riaprite iTunes e provate la sincronizzazione.
    Good luck!

  • Io con il mio iphone 3 non posso scaricare nulla perchè ho l ios4.2 !!!!! cosa devo fare prendere il tel e lanciarlo???

    cosa posso fare visto che non ci sono aggiornamenti e non posso scaricare nessuna app!!!!!!!!??????

    Ci scusiamo per questa traduzione approssimativa di Google. Si tratta di un utente al forum degli utenti. In tal modo qualsiasi aiuto si rischia di arrivare qui è da altri utenti. Si potrebbe trovare di meglio aiutare a http://www.apple.com/usergroups/ dove qualcuno può tradurre in inglese la domanda precisa per poter essere pubblicati qui. Prova anche il controllo sito web thesims direttamente le risposte alle tue domande: https://help.ea.com/en/the-sims/the-sims-3 Buona fortuna!

  • Apple tv 2generation non riesco ad impostare la data e l'ora !

    La mia apple Tv non mi riconosce piu' la data e l'ora e non riesco più ad accedere a iTunes.
    Mi potete aiutare ?

    Ho usato google translate quindi scusate la grammatica . Accedi con il tuo ID Apple sul tuo computer sotto "gestire ti ID Apple " . Quando il vostro ingresso in klick su " Modifica" dopo "Apple ID e indirizzo email principale " . Cambia la tua email indirizzo ( se non si dispone di un altro indirizzo e-mail , dovete ottenere uno) . Quando hai cambiato il tuo indirizzo e-mail si reseve una email di conferma al tuo nuovo indirizzo e-mail , fare clic sul link " confermare ora " in questo messaggio. Dopo questo passaggio, effettuare il logout dal proprio account e quindi accedere di nuovo per assicurarsi che i funziona . Il passo successivo è quello di andare a www.icloud.com , e provare il tuo nuovo account c'entrava , se funziona è possibile effettuare il logout .
    Se tutto funziona a questo punto si tratta di un buon segno . Il passo successivo è quello di accedere nel tuo account ID Apple sul computer e tornare al email che Hade prima della modifica , confermare l'indirizzo email che verrà inviata . Esci dal tuo account e accedere di nuovo per assicurarsi che funzioni . Dopo questo passaggio inserire il tuo id och password di Apple nel vostro iPhone e se se funziona .
    Se questo non funziona devi fare un reset di fabbrica troppo e dopo questo sarà sicuramente funzionare ( almeno ha funzionato per me, dopo tutti questi passaggi ) .
    Buona fortuna !
    (https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/109/wa/directToSignIn ?wosid=kJfXByJtbbWm6x946TXx4w&localang=en_US).

  • Perche non riesco più ad esportare in video da una presentazione? e mi esce la scritta "Non posso completare l'operazione perché è impossibile trovare l'elemento."

    ho due mac, e tutti e due hanno lo stesso problema, ma fino ad un mesetto fa questo non accadeva... quale sarà il problema? mi esce questa scritta "Non posso completare l'operazione perché è impossibile trovare l'elemento."

    Google translation:
    I have two machines, and both have the same problem, but until a month ago this was not the case ... what is the problem? I get this message "Can not complete the operation because it can not find the item."
    Can not find the item
    What version of iPhoto and OS X are you using?  That message means that iPhoto can't find the original file that was imported.  It often arises when files have been deleted from the iPhoto library from the Finder and not by using iPhoto. 
    Or it can mean that you are running a "referenced" library and the source files have been moved or deleted in the Finder.
    Check iPhoto's Advanced preference pane on both machines to see which checkbox is checked.
    OT

  • Non posso inserire il codice di blocco

    non posso inserire il codice di blocco e mi occorre per fare il backup su i_tunes. Come faccio ?

    Ho Dimenticato il codice di Blocco dell'ipod classico mi puo Aiutare?
    Premetto Che Non Sono per niente Pratica di queste glucosio, quindi se mi rispondete vi Prego di dirmi la Maniera Più Semplice possibile per risolvere il Problema.
    grazie a tutti
    P.S. il messaggio è uguale ma corretto, scusate gli errori colpa della tasiera  

  • Filters on non-conforming dimensions when fetching data from multiple facts

    Hi,
    I would like to confirm my understanding about how OBI fetches data from multiple facts. I have set up the BMM layer. Through Answers I am getting data from multiple facts as expected. However, is it necessary to base filters only on the conforming dimensions? If I do so, I am getting the correct data. But if I filter data on non-conforming dimensions, then I am getting more data which I am not expecting.
    Suppose, Fact1, Fact2 and Fact3 share a CommonDim dimension. If I have a filter on CommonDim, then the filter is used on the three fact tables. However, if I filter data based on Fact1's DimTwo which is not shared by Fact2 and Fact3 and I have measurements from all the fact tables, then from the SQL generated, it seems that OBI is fecting all data from Fact2 and Fact3 and data from Fact1 where DimTwo = 'SomeValue'. Then it seems to be merging the data from the three result sets.
    Is this expected, esp. a scenario where a filter is based on a non-conforming dimension (DimTwo in the example)? Have I missed anything? What do I need to do, if I want to return rows from Fact1 based on DimTwo's filter and then if there is data on Fact2 and Fact3 based on the value in CommonDim corresponding to DimTwo's filter?
    Please let me know.
    Thanks and regards,
    Manoj.
    PS.: I have got a link now which is http://obibb.wordpress.com/2010/06/06/multiple-fact-reporting-on-non-conforming-dimensions-part-ii/
    Edited by: mandix on 25-Oct-2011 12:01

    Hi
    The problem you describe is similar to mine (I wrote several threads ago).
    That is, if there is a non-conformed dimension in a report then the column from the fact table which is not connected with those non-conformed dimensions containes zeros or blanks.
    Was this problem solved? I didn't quite catch one of previuos messages... If you can please repeat it more detailed.
    What I tried to do is to set Total level in the Content tab (LTS properties). In this example - I could set Total level to JOBS in the plan type dimension. But it didn't help.
    So if you know what to do then please describe it here...

  • Non posso effettuare il ripristino

    da 1 giorno il mio iphone 4 si spegne e si riavvia inaspettatamente, a volte con alterazioni dello schermo come ingiallimento della mela, righe tipo interferenze etc....
    è entrato in modalità di ripristino una volta collegato ad itunes ma continua a spegnersi e riavviarsi non consentendo il ripristino.
    che fare?
    grazie
    ps: il telefono è gia stato sostituito con uno nuovo per malfunzionamento tasto home.

    L'unico caso in cui un indirizzo di posta elettronica di Apple può essere utilizzato per accedere è per le persone che la migrazione da MobileMe. Indirizzo [email protected] era già un ID Apple.
    Se non si dispone di un account MobileMe e creare un ID Apple fin dall'inizio è necessario utilizzare un non-Apple indirizzo e-mail. Poi, quando si effettua un account di iCloud si crea l'indirizzo [email protected] Dato che questo è associato al tuo ID Apple non è possibile utilizzare come un altro ID.
    Traduzione a cura di Google. Spero che abbia un senso.

  • IL MIO WI-FE E' COMPLETAMENTE FUORI USO E' GRIGIO E NON POSSO PIU ATTIVARLO COSA DEVO FARE?

    Da circa 2 settimane il mio telefono non può più connettersi via Wife la batteria si scarica facilmente...mi dite cosa devo fare?

    Ciao, io ho lo stesso tuo problema, e cercando un po' per la rete mi sono accorto che è un problema di molti che hanno acquistato l'iMac con installato direttamente Lion (come il sottoscritto), oppure anche che hanno effettuato l'aggiornamento da Snow Leopard.
    Per il momento il bug consiste nel fatto che se accendi l'iMac con tastiera e mouse bluetooth accesi, ti fa vedere la bara di avanzamento e poi parte lentamente, con la scheda wifi non inizializzata (da qui se clicchi sull'icona wifi il messaggio è "nessun hardware").
    Come se il software generasse un conflitto tra wifi e bluetooth (a livello hardware è la stessa scheda che gestisce entrambe le connettività).
    Insomma la soluzione per ora è (almeno, a me e a molti altri funziona), quella di accendere l'iMac con mouse, tastiera, trackpad ecc..spenti, e accenderli solo una volta che ti ritrovi sulla schermata di login.
    In questo modo la scheda di rete non da nessun problema nemmeno al primo avvio, e non ti sarà necessario dover riavviare ogni volta.     
    Comunque un nostro compagno di disavventure in america ha scritto che ha contattato l'apple care per comunicare questo bug e questa soluzione, e pare che presto apple invierà un aggiornamento per fixare questo bug.
    Spero di esserti stato utile, ciao!

  • Dopo aver installato Mountain Lion non posso usare le miei app

    Ciao a tutti,
    Ieri sera ho installato ML dopo averlo scaricato da mac e le miei app non funzionano.
    Quando le apro mi dice che non sono aggiornate ad ML. Le app in questione sono diverse: Mail, Utility disco, Libro Font, iCal, ecc...
    Come posso fare?

    Problema risolto. Per chi, come me, aveva bisogno di aiuto e cercava risposte in questa domanda, potete tranquillamente disinstallare Adobe AIR se non avete installato Adobe Muse CC.
    Messaggio modificato da hooligans92 per Problema Risolto!

Maybe you are looking for

  • Creating a dynamic query by choosing the field and getting the report

    Hi, Is there a way to create a report by allowing the user to choose a field from the table and design a query based on that field. Ex In a table students with fields (StudentNo, StudentName,Age,Qualification,Hobbies, PlaceofBirth) Is it possible to

  • Adding a new field in the ESS webdynpro application.

    Hello All, We are currently using the ECC 5.0 and Portal EP 6.0 SP18. In the Family members Iview ( Web dynpro) there are different Items like Mother, Father, Child etc which we can add from the IMG. If we want to add new field ( SSN ) to the Spouse

  • Shockwave ready photogallery?

    Is there a nice ready photo gallery in shockwave which I can use for a website i am designing for a photographer? please advise. I am currently using java based photo gallery, however am not satisfied with the effects therein. the site's url is www.s

  • RGB color coordinates compatible with QText (8 bit vs 16 bit)

    Hello, I apologize in advance for this dumb question. I want to insert text into a .mov. I export the text so that I edit the file and I just want a white font color on a green background. Evidently the RGB codes are 'HighColor' (up to 65000?) and no

  • UWL poor performance

    Hi All, I am having a problem with UWL performance. When user clicks on a work its taking 20 secs to open that and when user approves or rejects again its taking around 20 secs  time to point back to UWL. Can anyone guide on how to improve performanc