Popup dialog data viewing

I'm reading Hex data off a serial port with VISA including some GPS LAT/LON and Altittude data.
The data is extracted and sent to my GUI, updating indicators with the information.
I'd like to provide a button that causes a dialog window to open on top of the GUI and view the incoming raw data if desired by the user.
Is this possible?

Sure. Just create a new VI and set it to Dialog in the VI properties under "Window Appearance". Now you only have to transfer the incoming data to some kind of indicator on that new VI. There are multiple options available. One would be a notifier to send the new incoming data from the receiver to the dialog.

Similar Messages

  • Acquire data from a tab delimited file using a popup dialog object on a stamp

    I am trying to import data from a tab delimited file using a popup dialog object on a stamp.  I have purchased the book by Thom Parker--All About PDF Stamps in Acrobat and Paperless Workflows and have been working through the examples in the appendix.
    My problem is understanding how to bring the data into the dialog object from the file.
    I don't want to plagiarize his book--so am electing at this time not to show my code.  The  script is reading the file, just not bringing in the records from the file so that I can select which line to import into the stamp.
    I have typed in the code exactly how the book describes, but when the popup dialog object is selected, there is nothing in the drop-down.  When I click OK, the first record is put on the stamp--except for the fields that I am wanting to appear in the dialog object popup box.
    I have searched the forums, and also the JavaScript reference.  There are examples of the popup dialog object, but none of them show how to import the data from a file--just for the items to be typed in as the list.
    Any help would be greatly appreciated!  i have been trying to work on this for several months now.

    Karl
    Thank you for getting back with me!
    In answer to your questions:
    1. Your trusted function is not a trusted function. Did you put this
    function into a folder level script so that it will get executed at system
    startup?--
         yes--I saved the script as a .js file and put it in the following path (I have Acrobat XI Pro for Windows)
    C:\Documents and Settings\tjohnson\Application Data\Adobe\Acrobat\Privileged\11.0\JavaScripts\GetTabData.js
    2. The script cannot find your tab delimited data file, or it cannot
    extract the data. Did you add the data file in the correct location? The
    location from the script in the book would be c:\mydata\Contacts.txt
    Yes--the file is in the same path as the book.
    Below is my code that references the file.
    var cPath = "/c/mydata/Contacts.txt";
    the slashes in the book go in the direction of the text above--should they go in the direction that you have in your question?
    Also,  the name and email address need to be separated by one Tab character.
    They are. 
    3. The fields need to be named the same way as the columns in the data file (the two names are in the first line of the file).
    My headings are RevByFromTab and EmailFromTab--which match the names of the two fields on the stamp.
    So, check that you are not getting any errors in the JavaScript console
    (Ctrl-J or Cmd-J), and verify that the tab delimited file is in the correct
    location
    When I run in the java script console--and I just run the script on the stamp,
    it says
    TypeError: event.source is null
    17:Console:Exec
    undefined
    When I place the stamp on the page, the popup box is working, but when you click on the down arrow, there is nothing listed.  When I click OK, the RevByFromTab is populated by the first item in the file, but the EmailFromTab field says undefined.
    Thank you
    Message was edited by: tdjohnson7700

  • Common popup dialog(but differnt model data) for entire application

    Hi
    i have use case like displaying the viewhistroy for the current page form data.
    so i need to implement common popup dialog which will show the current page data history in a pop up.
    can anyone suggest me how to implement? i am using the jdev11.1.1.3.0 version
    thanks,
    raj
    Edited by: Raj Gopal K on Mar 21, 2011 2:19 PM

    How about building a dynamic table to display the data. Probably a reusable 'task flow' which take some parameter to decide the query, and build the dynamic VO. This VO can be wired to the UI table - a couple of possibilities can be see here - http://jobinesh.blogspot.com/2010/06/model-driven-approach-for-building.html

  • How to pass data to popup dialog

    Hi All,
    How do I pass some data from the main window to the popup dialog. Please help.
    Thanks in advance.

    I think you can create a Group with a scene that contain the value from the main window then use the getContent.add() method of Popup.
    Group root = new Group();
    Scene scene = new Scene(root,200,200);
    //add the value form main windown to scene
    Popup pop = new Popup();
    pop.getContent().add(root);
    Glad if this can help you

  • How to display a screen as Popup Dialog box in Module Pool

    Hi All,
    I have a requirement to display a popup dialoge box into module pool.
    i need to display a screen as a popup on the current screen on a button click.I have developed a screen and in atribute tab i have defined the screen type as modal dialog box but  it is displaying previous screen screen is hide i want to display on the same screen as a popup.
    Thanks
    Narendra

    Hi Narendra,
    Try to trigger the popup once it is done with the previous action might be anything.
    i have shown one sample code where after i click on save button when the data is saved successfully
    after that it has to trigger me a popup asking for conformation for the next action.
    A small piece of code
    INSERT INTO ZORMD1 VALUES WA_ZORMD1.
        IF SY-SUBRC = 0.
          G_LOCAL1 = 0.
          MESSAGE S000.  " Data saved successfully and immediately call the popup
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
            EXPORTING
      DEFAULTOPTION  = 'Y'
    TEXTLINE1 = 'SUCCESSFULLY SAVED'
              TITEL = 'POPUP FOR conformation'
             START_COLUMN         = 25
             START_ROW            = 10
            CANCEL_DISPLAY       = 'X'
           IMPORTING
    ANSWER  = G_PRINT
    IF G_PRINT = 'J'.
    PERFORM PRINT_OUT.
    ENDIF.
    Do the modification according to your requirement.
    Cheers!!
    VEnk@

  • Best strategy for working with popup dialog/PanelWindow (refbook)?

    In JD 11g I want selecting the value from reference book (which returned from DB). This reference book must show in popup dialog.
    I create bounded task flow with page fragment in which place the query filter and table with values for selecting.
    1. I inserted task flow as region in DIALOG component and place command button "OK" and "Cancel" into DIALOG buttons facet.
    Problem - I cant gain access to binding value (which contain ID of selected row) from fragments page definition.
    I try set the "Data Control Scope" value of task flow to "shared", but this did not help.
    2. I place command button "OK" and "Cancel" into page fragment and inserted task flow as region in panelWindow component. Now I cant gain access to binding value from fragments page definition (of course). But I cant auto-close the panelWindow after pressing buttuns on page fragment.
    Please help to solve a problem!

    Thank you for help, Frank!
    I have many reference books (reftables), which contains much records each (two columns - ID, TITLE). Also I have several tables (main tables), which refer to these reference books (maintable.ID_REF1 -> REF1.ID). On page, where I edit record from one of the main tables, i cant use simple LOV combobox, coz many records from reftable. Also I cant use ADF LOV input / ADF CHOICE LIST coz in input fields shows the ID of ref row (i want - the "title" column, bun cant do it). So I have solved to use the modal dialog / panel window in which include the region with reftable (coz each reftable may use in many page with edit of main tables).

  • Create a confirmation popup dialog when submitting a form

    Hi all,
    I have a simple business : ask a question (yes/no) to a user when he is submitting a form.
    This form is an "ADF Form (11g)" and is displayed in a inline dialog. It is triggered for an EntityView when user clicks on an edit button of a table row.
    I've tried lot of different solutions but it never works.
    Let me tell you about these:
    Solution 1: Adding a showPopupBehavior
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>The issue is that the +<af:returnActionListener/>+ is never triggered and the form do not close.
    Solution 2: Adding a showPopupBehavior and change the triggerType
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" triggerType="click" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>By reading in your forum I find this solution to be able to initiate a popup and execute the commandButton action by adding the triggerType="click" on the showPopupBehavior.
    The issue then is that the dialog get closed without waiting for a user response on the popup dialog (yes/no)
    Solution 3: Adding aAdfFacesContext.getCurrentInstance().returnFromDialog(null, null); in my dialog listener
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" triggerType="click" />
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>
      public void mustClosePreviousAddress(DialogEvent dialogEvent)
        //Business logic
        AdfFacesContext.getCurrentInstance().returnFromDialog(null, null);
      }It looks like it work and close the dialog when click on yes/no on the popup dialog but the value are not submitted and the data model do not change.
    Solution 4: Sendind an ActionEvent on the button when user has made his selection
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1" binding="#{backingBeanScope.dialogBackingBean.cb1}">
                    <af:showPopupBehavior popupId="p1" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>
      public void mustClosePreviousAddress(DialogEvent dialogEvent)
        //Business logic
        cb1.queueEvent(new ActionEvent(cb1));
      }The same as foor the third solution, it looks like it work and close the dialog when click on yes/no on the popup dialog but the value are not submitted and the data model do not change.
    I've verified with an actionListener, the actionEvent received when the user click on the button is exactly the same as the one i've dispatched manually.
    Can you help me with a solution adressing this issue?
    Best regards,
    Alex

    Mmm something like this ?
        public void newDialogListener(DialogEvent dialogEvent) {
            if (dialogEvent.getOutcome().name().equals("ok")) {
                this.getBindings().getOperationBinding("Commit").execute();
                    // Do something
        }

  • Af:richTextEditor can not work fine in the popup dialog.

    Hi all:
    I want to use af:richTextEditor in a pop up dialog, but it can not be used correctly. The code is like below:
    <af:popup id="***">
    <af:dialog >
    <af:richTextEditor contentStyle="width:100%" value="this is a test" inlineStyle="width:100%" binding="#{backing_myBackingBean.richTextEditor1}"
    id="richTextEditor1"/>
    </af:dialog>
    <af:popup>
    The value "this is a test" can not be shown in the editor and I can not write/edit in this rich text editor.
    Anyone has some experience on using these components? Please help me.
    Thanks
    Hart

    Hi Frank,
    Below is my test code, the text editor does not work fine actually. Can you help me to find where I was wrong using this code OR is is a bug to use richtexteditor in popup dialog?
    <?xml version='1.0' encoding='GBK'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=GBK"/>
    <f:view>
    <af:document>
    <af:form>
    <af:outputText value="This is test page"/>
    <af:commandButton text="PopupRichTextEditor">
    <af:showPopupBehavior popupId="test">
    </af:showPopupBehavior>
    </af:commandButton>
    <af:popup id="test">
    <af:dialog modal="true">
    <af:richTextEditor value="this is for test">
    </af:richTextEditor>
    </af:dialog>
    </af:popup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Thanks in advance.
    Hart
    Message was edited by:
    harth
    Message was edited by:
    harth

  • Popup dialog or information message after planning functions run

    Hi Guru,
              Anyone who encounter an issue on BPS where a popup dialog or information message appear with SQL statements (one line of statement per dialog). When I debug it the message was raise by form write_sql_log_begin/end.
    Thanks,
    Irish

    MODULE m_pai INPUT.
    CASE fcode.
        WHEN 'ENT'.
            PERFORM f_force_enter.
            LOOP AT git_tab INTO gwa_tab.
                  PERFORM f_update_it9090 USING l_tabix.
            ENDLOOP.
      ENDCASE.
      CLEAR fcode.
    ENDMODULE.      
    FORM f_update_it9090 USING fu_tabix.
    PERFORM f_read_9090 TABLES lit_p9090 USING fu_tab CHANGING lwa_p9090.
        IF lwa_p9090-pernr IS NOT INITIAL.
      ELSE.
          CONCATENATE fu_tab-pernr text-014 '.' INTO l_text SEPARATED BY space.
          <b>MESSAGE i004 WITH l_text.</b>
          g_final_flag = 'X'.
        ENDIF.
    ENDFORM.          
    FORM f_force_enter.
      CALL METHOD g_alv->check_changed_data
        IMPORTING
          e_valid = g_valid.
    ENDFORM.
    Therefore, when this code is run the statement highlighted in BOLD behaves differently when 'Enter' is strike before save and when 'Enter' is not strike before save.  The f_force_enter subroutine is invoke to cause data_changed method to be invoke to capture relevant data before proceeding to other processing.

  • PopUp Dialog with SplitViewNavigator

    Hi,
    I created an application with a SplitViewNavigator taking care of 3 views.
    I want to create a PopUp Dialog to receive some user input.
    I have tried the examples that I have been able to find but they all place the dialog box in one of the views of the SplitViewNavigator instead of popping a dialog box up on the screen outside of the navigator.
    Has anyone found a solution to this?
    Neil

    hi Oscar,
    you can try:
    POPUP_WITH_3_BUTTONS_TO_CHOOSE
    hope this helps
    ec

  • Popup dialog with 3 buttons to show internal table

    Hi,
    Is there any popup dialog that can show internal table and with 3 buttons?
    Just like the combination of POPUP_WITH_3_BUTTONS_TO_CHOOSE and POPUP_WITH_TABLE.
    Thanks in advance.

    hi,
    Use FM 'POPUP_TO_CONFIRM'.
    Check the below example code
    data parameters like spar occurs 0 with header line.
    data Name(75) type c.
    name = ' '.
    Data : v_ecc6_text type string,
    v_ecc6_title type string.
    DATA: L_SVAR(1).
    concatenate
    '1'
    '2'
    '3'
    into Name separated by space.
    move Name to parameters-value.
    move 'NAME' to parameters-param.
    append parameters.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    TITLEBAR = 'Hai'
    DIAGNOSE_OBJECT = 'ZDIALOG_TEXT'
    TEXT_QUESTION = 'Hello'
    DEFAULT_BUTTON = '1'
    IMPORTING
    ANSWER = L_SVAR
    TABLES
    PARAMETER = parameters
    EXCEPTIONS
    TEXT_NOT_FOUND = 1
    OTHERS = 2.
    Edited by: Raj on Jul 1, 2008 1:03 AM

  • How to enable calender popup in Discoverer Viewer?

    Hi
    How to enable the calender popup in Discoverer Viewer for date parameter.
    Dis Plus It ll works , but in Dis.viewer not works.
    Regards
    Manikandan.

    It's a great idea, but I just don't think it's possible in Disco Viewer yet.

  • Region Popup Dialog doesn't show up in Detach mode

    issue description:
    1.     There is a task-flow: filter-task-flow.xml, there is method call as default activity and always route to next one view activity filter , refer to below filter.jsf code
    <af:panelGroupLayout id="pgl1" layout="vertical">
    <af:popup childCreation="deferred" autoCancel="disabled" id="filterpopup" binding="#{backingBeanScope.filterBean.p1}" contentDelivery="lazy">
    <af:dialog id="d2" ……/>
    </af:popup>
    </af:panelGroupLayout>
    2.     In my report.jsff page, there is a command button and a region with filter-task-flow.xml , refer to below
    <fnd:applicationsTreeTable featuresOff="wrap " actionsMenuRendered="false" primaryToolbarRendered="true" secondaryToolbarRendered="true" >
    <f:facet name="treeTable">
    <af:treeTable …..>
    </af:treeTable>
    </f:facet>
    <f:facet name="appsTreeTableSecondaryToolbar">
    <af:toolbar id="t1">
    <af:commandToolbarButton id="filter2" text="Filter" rendered="true" >
    <af:showPopupBehavior triggerType="click" popupId=":::fr1:filterpopup"/>
    </af:commandToolbarButton>
              </af:toolbar>
    </ fnd:applicationsTreeTable>
    <af:region value="#{bindings.filtertaskflow1.regionModel}" id="fr1"/>
    3.     In page definition reportPageDef.xml for report.jsff page, there is below definition.
    <taskFlow id="filtertaskflow1"
    taskFlowId="/WEB-INF/…../filter/flow/filter-task-flow.xml#filter-task-flow"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    activation="deferred">
    <parameters>
    <parameter id="selectedSubTab" value="#{backingBeanScope.apprAppraisalPMOCRBean.selectedSubTabKey}"/>
    <parameter id="planId" value="#{backingBeanScope.apprAppraisalPMOCRBean.planId}"/>
    <parameter id="mgrEventId" value="#{backingBeanScope.apprAppraisalPMOCRBean.mgrEventId}"/>
    </parameters>
    </taskFlow>
    4.     Now if I go to this page(report.jsff) and click command tool bar button Filter , popup dialog works. And enter Detach mode, click Filter again, popup dialog works.
    5.     But if I go the this page(report.jsff) and enter Detach mode before clicking Filter button, then try to click Filter button, popup dialog doesn’t show up without any issue/error in UI & console. Then I exit Detach mode, and click Filter button again, It will still not popup any more until you reopen the page and click Filter button firstly.
    Appreciate for any suggestion. Thanks a lot.

    resolved. just need move dialog from region to report.jsff page and keep table content in region. that's all

  • Can not view data in Dimension Data Viewer

    Hello Forum,
    Has anyone run into this one yet? with OWB10gr2
    we have created a dimension called store, it has a simple hiearchy"
    store-->category-->primary category-->Busines Unit
    The dimension validates and deploys sucessfully - we have seen the notes to choose Deploy All for configuration instead of the default, reason being that if you don't choose Deploy All you will not be able to view it through the data viewer
    We have mapped the data from our oracle staging table to the dimension and our map has run without error.
    We can see data in the underlying table that supports the dimension, but when we open the dimension with object editor and try to view the loaded data via the dimension data view we get nothing?
    What's up with that?
    thx again
    monalisa

    You're probably running into the same known bug we hit. See the OWB 10gR2 release notes, under "Known Issues / OLAP Catalog". Probably hitting the mentioned OLAP bug 4945008.
    Hope this helps,
    Scott

  • I can not see data in data viewer

    Hi,
    I use OWB 10g Relase 2. I have one table and I imported table metadata to OWB. I load data to table with pl/sql script, Now I do not see data in this table in data viewer. I see data in SQL*PLUS
    I tried deploy table and run script to load again. Same problem.
    I run mapping from this table. But target object is empty as well.
    Thanks for advice
    Jerry

    my fail, I forgot commit transaction

Maybe you are looking for

  • UD connection with MYSQL database in java server

    HI Friends, Tried to create UD type of source system ,in the proposal i got below error.Please advice me. Error message : Error while extracting field list of UD Connect object: UDCADAPTERROR::RSSDK|200|Cannot open the connectio Message no. RSDS_ACCE

  • Can I change book size after its designed?

    I just spent hours getting my book just the way I want it but now realize I'd rather buy the larger size book than the smaller one I selected at the start of the project. Can I change the book size now before I purchase?

  • Single Image from the Picture Library

    Hi All - I am trying to display single image from a picture library. I thought it is the simplest task of all to do in SharePoint. I am having hard time. The Picture Library List View Webpart is not displaying single image (created a view that will b

  • HELP : customize SQL generated

    Hi, I've followed the Tutorial 'Generating a Struts-based JSP Application for an Application Module', where I'm working with only one table. When I run the 'main.html', on the left side ( navigator ), there are 'Browse' and 'Query' options. Every tim

  • Server error 404

    Hi experts, I am new to the bsp concept I creted simple application to display some text on the browser I was done with creation bsp application ,page and everything but when I want to executre it is showing the error in the browser as http server er