Take an input from the dashboard to the data base

Hi all
I need to take a text from the dashboard and insert it to the database
is there anyone experienced about that ?
thanks in advance

Hey Mohammed,
Dashboard is used to view the industries KPI, I really don't understand the need of pushing the data from reporting side to DB. If the customers are not clear about that, as a developer we need to explain them the process. On top of all this, if its really helpful for the analysis, then go with them.
I never tested this, though i have heard about this scenario. Below mentioned links can helpful for you to understand the data flow.
Writing Data from Dashboards to Database using XML
http://support.dundas.com/Dashboard4.Write_back_to_database.ashx
How to send data from Xcelsius Dashboard to dat... | SCN
Hope this helps.

Similar Messages

  • How do I moves the widgets from the dashboard to the desktop?

    How do I move my widgets from the dashboard to the desktop?

    Yes, you can. All you need to do is do a Spotlight search for Terminal and open the application Terminal. After launching Terminal, type the following:
    defaults write com.apple.dashboard devmode YES
    Then hit return. Nothing will happen. The next step is to type the following command into Terminal:
    killall dock
    Then press return. Your dock will disappear momentarily.
    Once your dock reappears, press F12 (the keyboard command to bring up Dashboard). Then begin dragging the widget that you would like to have on your desktop. Continue dragging it—don't let to—and press F12 again. Voila! It's on your desktop. You can get it off by dragging it and pressing F12, just like you do to get it on.
    Hope that helps! :)

  • Take multiple inputs from BNC2120

    I have a BNC2120 board.
    I need to take inputs from two channels and display the outputs on separate waveform graphs.
    My current VI takes two inputs from channel A2 and A6 and the data is sent to waveform graph 1 and 2 thorugh a signal splitter.
    I however see the same signal on both the graphs.
    I am a beginner with LabView and need the solution asap!
    Thanks
     

    When i connect the graph directly, i see two graphs on my screen, with different colors (they can be defined in properties). The same problem however, they follow each other with a little gap on the Y- axis.
    When i disconnect the cable, i see just the connected signal on my graph. and everything runs normally.
    I haven't tried index array yet due to the simple reason that i don't know how to.
    If there is a possibility that it solves my problem, do you mind explaining to me or pointing to a source that can help me implement it.?
    and yes i have seen dynamic datatype and as a beginner, i could'nt even start understanding what was going on there!
    I have plans to learn it in future but for now, i would like to stick express VIs!  

  • Please, help! After upgrading to Yosemite, my dock has disappeared, along with the dashboard and the wallpaper! Can anyone help? I'm using a MacBook Pro, retina, bought it last year.

    Please, help!
    After upgrading to Yosemite, my dock has disappeared, along with the dashboard and the wallpaper! Can anyone help? I'm using a MacBook Pro, retina, bought it last year.
    Thanks

    Have you been trying to download from the app store? Did you get a message?
    As a suggestion, you might go to an Apple store (genius bar appointment) for help. As far as I know, there should be no charge.
    Barry

  • How can I enable the Dashboards  in the UCM 10G  ?

    Hi to all, How can I enable the Dashboards in the UCM 10G ?

    There was a component (I can't remember its name) that added a dashboard. Note that it was not a supported component, so you had to take it as it is, or create your own.

  • How do I install widgets from the dashboard onto the desktop?

    I would like to be able to add a few widgets from the Dashboard to my desktop, but I cant do it. I have gone to the terminal, antered the command
    sudo defaults write com.apple.dashboard devmode YES
    then
    killall Dock
    clicked on a widget clicked on F12 and the sound icon appears on the screen and it alarms and it wont move the widget to the desktop
    How can I get it to work
    thanks

    ok, my apologies......one I completely forgot about this, as it took so long to be answered.......2, I got no notification via e-mail that a response had been posted......3, I 'found an app for that' which was another reason I forgot about this thread......1st two reasons not exactly my fault for not responding.....this whole thread hasnt exactly helped....
    But I can help now, as I said there 'is an app for that' and its found here.....and by the way, he has updated it and has made it free and open source, and it works a dream......
    http://www.mesadynamics.com/
    hope that helps
    p.s. please dont be so arsey, especially when a thread like this is not really much help at all, it really doesnt help

  • How do I take a picture from usb camera using the Windows Image Acquisition Automation activex control in LabWindows?

    Hy!
    I have a faculty project in wich I
    have to acquire image from a webcam in Labwindows
    8.1 and to take a picture and save it in a file and to display it.I managed to acquire
    image from the webcam using the WIA automation activex controll but I
    haven't been able to take a picture and save it and display it .So i ask of you to
    post a tutorial or something that would help me to take a picture and save it and display it using the WIA automation activex controll in
    LabWindows.
    OS: Windows XP Professional X86
    Please help me!!

    Unfortunetly I do not have any experience with Activex.This is one of the codes I tried so far:#include "wiaaut.h"
    #include <cvirte.h>        
    #include <userint.h>
    #include "camm.h"
    static int panelHandle;
       int cid,eroare;
       CAObjHandle objh;
       WIAObj_IImageFile result;
       ERRORINFO eror;
    int main (int argc, char *argv[])
        if (InitCVIRTE (0, argv, 0) == 0)
            return -1;    /* out of memory */
        if ((panelHandle = LoadPanel (0, "camm.uir", PANEL)) < 0)
            return -1;
        DisplayPanel (panelHandle);
        RunUserInterface ();
        DiscardPanel (panelHandle);
        return 0;
    int CVICALLBACK OkCallback (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
               WIA_NewIVideoPreview(panelHandle,"Video",45,45,&cid,&eroare);
               GetObjHandleFromActiveXCtrl(panelHandle,cid,&objh) ;
                break;
        return 0;
    int CVICALLBACK QuitCallback (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                QuitUserInterface (0);
                break;
        return 0;
    int CVICALLBACK pozaCallback (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
               WIA_NewICommonDialog(panelHandle,"poza",45,400,&cid,&eroare);
               WIA_ICommonDialogShowAcquireImage(objh,&eror,2,1,131072,"{B96B3CAB-0728-11D3-9D7B-0000F81EF32E}",VTRUE,VTRUE,VTRUE,&result);
                break;
        return 0;

  • Multiple inputs from a user using the same variable !

    Hi Folks,
    I am trying out the following code block,which should ask the users to enter 3 different names using '&' operator & assign it to a variable v_ename every time the loop executes.
    declare
    type ename_table_type is table of
    emp.ename%type
    index by binary_integer
    ename_table ename_table_type
    begin
    for i in 1..3 loop
    ename_table( i ):= '&v_ename';
    dbms_output.put_line(ename_table(i));
    end loop;
    end
    The above code accepts a single input from the user & assigns the same input 3 times to "ename_table".thus the output shows the same name 3 times.
    Is it possible that we can have the user input 3 different names & then print them using the concept of Index by binary_integer ?
    Please help
    Thanks
    Om

    Server side PL/SQL is NOT designed for this kind of user interaction.
    the "&" character is intrepreted by the SQL*Plus application and before the PL/SQL block is submitted to the DB by the SQL*Plus application, it replaces each appearance of the &variable with the value entered. Once the block gets to the database, all it sees is a constant value - no more a variable name.
    &variable_name is a SQL*Plus application thing, not the database.
    Where will this type of logic will be eventually used? What client application will interact with the server side PL/SQL? You need to code this input logic in that client application.

  • HT5612 How long should the download take to go from Snow Leopard to the newest version of Mountain Lion?  I started the download 2 hours ago and it's still running.

    I have ac OS X version 10.6.8 Snow Leopard.  I bought the upgrade to Mountain Lion and started the download 2 hours ago.  It is still downloading.  What should I do?  Is this typical? 

    elainefromco wrote:
    I don't know how to determine how fast it is. 
    There are several internet sites you can access to test both your upload and download speeds. Among them are:
    Speedtest.net
    Speakeasy.net
    WhatIsMyIP.ccom
    Be aware that there can and likely will be wide variations in the tested speed depending on the location of the server running your test, time of day, etc. The results should be taken with a grain of salt and treat variations of less than 10% as inconsequential.

  • Stuck at password screen and doesn't take iny input from keyboard or mouse

    Laptop started and some msg appeared the automatically shut down... Again automatically started but stuck on password screen which neither take input from kayboard or mouse.. Pls help

    Ditto for about a week. Happens maybe every 24-48 hours.
    IIRC, I applied some routine MS Updates prior.
    T510, Win7 Professional, Nvidia GPU.

  • How can i play the youtube songs on the dashboard with the new IOS6 Software

    since apple is not associatied with youtube anymore in the new IOS6 we have to download the youtube app. But now i dont know if we can play the music while on the dashboard. Is there a way that you can play it. I think personally this update has done more harm then good but if you have any suggestions please feel free to comment.

    Hello
    As far as I know the Toshiba Controls were tested and designed only for Microsoft Media Player and WinDVD. How this topic says:
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=3621&messageID=11461#11461
    I dont have any experience with WinAmp but I found useful info in this forum about this theme:
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=6673&messageID=24448#24448
    Check this.
    Bye

  • Xcode, how do you take an app from an idea to a data model, data structure, or class structure?

    Hey everyone!
    I'm a beginner xcoder and computer engineering sophomore and have literally spent every hour of the past few weeks reading as much as I possibly can about becoming a developer.
    I've found plenty of documentation, and guides on how to do very specific things in xcode and objective-C but am still looking for more information on one topic; how do you decide which data models/structures/controllers etc to use?
    I mean, you personally. I've been looking for a resource on this and have not been able to find one. I just finished Apple's iOS Developers Guide and they mention "choosing a data model" but do not describe them in much detail.
    The following is what is provided in the guide:
    ● Choose a basic approach for your data model:
    ● Existing data model code—If you already have data model code written in a C-based language, you
    can integrate that code directly into your iOS apps. Because iOS apps are written in Objective-C, they
    work just fine with code written in other C-based languages. Of course, there is also benefit to writing
    an Objective-C wrapper for any non Objective-C code.
    ● Custom objects data model—A custom object typically combines some simple data (strings, numbers,
    dates, URLs, and so on) with the business logic needed to manage that data and ensure its consistency.
    Custom objects can store a combination of scalar values and pointers to other objects. For example,
    the Foundation framework defines classes for many simple data types and for storing collections of
    other objects. These classes make it much easier to define your own custom objects.
    ● Structured data model—If your data is highly structured—that is, it lends itself to storage in a
    database—use Core Data (or SQLite) to store the data. Core Data provides a simple object-oriented
    model for managing your structured data. It also provides built-in support for some advanced features
    like undo and iCloud. (SQLite files cannot be used in conjunction with iCloud.)
    ● Decide whether you need support for documents:
    The job of a document is to manage your app’s in-memory data model objects and coordinate the storage
    of that data in a corresponding file (or set of files) on disk. Documents normally connote files that the user
    created but apps can use documents to manage non user facing files too. One big advantage of using
    documents is that the UIDocument class makes interacting with iCloud and the local file system much
    simpler. For apps that use Core Data to store their content, the UIManagedDocument class provides similar
    support.
    I suppose my question boils down to, how do you decide which structures to use? If you can provide an example of an app idea and how its implemented that would be very helpful and much appreciated!
    For example, to implement the idea of an app which allows users to progress through levels of knowledge of a certain subject and rewarding them with badges and such (this is not an actual app just a whim) how would one model that?
    Thanks in advance for all your help!!!

    SgtChevelle wrote:
    how do you decide which structures to use?
    Trial and error.
    I wish I had a better answer for you, but that pretty much encapsulates it. There is some, but not much, good wisdom out there, but it takes a significant amount of experience to be able to recognize it. The software development community if currently afflicted with a case of copy-and-paste-itis. And the prognosis is poor.
    The solution is to be brutal to yourself and others. Focus on what you need and ignore everything else. Remember that other people have their own needs and methods and they might not be applicable to you. Apple, for example, can hire thousands of programmers, set them to coding for six months, pick the best results, and have the end-users spend their own time and monety to test it. If you don't have Apple's resources and power, think twice about adopting Apple's approach. And I am talking from a macro to a micro perspective. Apple's sample and boilerplate code is just junk. Don't assume you can't do better. You can.
    Unfortunately, all this takes time and practice. You can read popular books, but never assume that anyone knows more than you do. Maybe they do and maybe they don't. It takes time to figure that out. Just do your best, ignore the naysayers, and doubt other people even more than you doubt yourself.

  • To pick up input from Web page and retive data which adapter is to be used

    Hi,
    I need to accept input on a web page . e.g custeorm number. The go to the BW system and pull out transcations for this custoemr and display it on the web page again what adapaters should I use ? how do i pass the screen inptu a parameter to retrive data in BW ?

    if exposed as webservice u can use soap adatper or check with http client example
    Message was edited by:
            Prabhu  S

  • Where to find the drivers for DB2 data base

    Hi All,
          I want to use JDBC adapter to connect to DB2 data base . I want to know where i can find the required drivers for the DB2 data base.If some one can provide the exact link that would be great.
    Regards,
    Tarun.

    hey
    Download universal driver for DB2,the jar file
    http://www-128.ibm.com/developerworks/db2/library/techarticle/0203zikopoulos/0203zikopoulos.html
    also have a look at the following to install these driver in XI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-how-to-guides/how%20to%20install%20and%20configure%20external%20drivers%20for%20jdbc%20and%20jms%20adapters.pdf
    thanx
    Aamir

  • Load data from xml file in oracle data base

    Hi all,
    I'd like to know if is posible to load data from a file xml into a table of oracle data base through SQL*LOADER, loaded only in a normal column no with type XMLType , for example
    I have a xml file
    <person name="kate" surname="fari" city="new york" >
    <son name="faus" age="18"/>
    <son name="doly" age="10"/>
    </person>
    and I load in table :
    table :person
    column
    name surname city
    kate fari new york
    table : son
    name age
    doly 10
    faus 18
    thank you for your return !!!!!!!!!
    Ninova
    Edited by: user10474037 on 30 mai 2011 08:47
    Edited by: user10474037 on 30 mai 2011 08:48
    Edited by: user10474037 on 30 mai 2011 08:48
    Edited by: user10474037 on 30 mai 2011 08:49
    Edited by: user10474037 on 30 mai 2011 08:50

    Hi
    This May be found at
    SQL Loader to upload XML file

Maybe you are looking for