Prompting for collecting each set of data

Sir/Madam,
I need to collect 300 readings and the program/control panel is prompting to select the location where I have to save my data(i.e in excel or word file) each time for 300 times. I am using Labview 7.0 and Field point. Please reply me as soon as possible.

Attached please find the screenshots and help me out. You can maximize to view em.
Thanks,
Attachments:
Air water2000.vi ‏490 KB

Similar Messages

  • Using MVC - One model for each set of data, or one model for all?

    Hi there,
    I'm using MVC for my app, which pulls data from other sites, (news, blogs, video, twitter). Would I have a model for each set of data, or one for all that fires differint events depending on the data?
    Thanks in advance!

    Attached please find the screenshots and help me out. You can maximize to view em.
    Thanks,
    Attachments:
    Air water2000.vi ‏490 KB

  • Issue with xsd Data type mapping for collection of user defined data type

    Hi,
    I am facing a issue with wsdl for xsd mapping for collection of user defined data type.
    Here is the code snippet.
    sample.java
    @WebMethod
    public QueryPageOutput AccountQue(QueryPageInput qpInput)
    public class QueryPageInput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class QueryPageOutput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class Account_IO implements Serializable, Cloneable {
    protected ArrayList <AccountIC> fintObjInst = null;
    public ArrayList<AccountIC>getfintObjInst()
    return (ArrayList<AccountIC>)fintObjInst.clone();
    public void setfintObjInst(AccountIC val)
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    Public class AccountIC
    protected String Name;
    protected String Desc;
    public String getName()
    return Name;
    public void setName(String name)
    Name = name;
    For the sample.java code, the wsdl generated is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="SimpleService"
    targetNamespace="http://example.org"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <wsdl:types>
    <xs:schema version="1.0" targetNamespace="http://examples.org" xmlns:ns1="http://example.org/types"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://example.org/types"/>
    <xs:element name="AccountWSService" type="ns1:accountEMRIO"/>
    </xs:schema>
    <xs:schema version="1.0" targetNamespace="http://example.org/types" xmlns:ns1="http://examples.org"
    xmlns:tns="http://example.org/types" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://examples.org"/>
    <xs:complexType name="queryPageOutput">
    <xs:sequence>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="queryPageInput">
    <xs:sequence>
    <xs:element name="fPageSize" type="xs:string" minOccurs="0"/>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    <xs:element name="fStartRowNum" type="xs:string" minOccurs="0"/>
    <xs:element name="fViewMode" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org" xmlns:ns1="http://example.org/types">
    <import namespace="http://example.org/types"/>
    <xsd:complexType name="AccountQue">
    <xsd:sequence>
    <xsd:element name="arg0" type="ns1:queryPageInput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQue" type="tns:AccountQue"/>
    <xsd:complexType name="AccountQueResponse">
    <xsd:sequence>
    <xsd:element name="return" type="ns1:queryPageOutput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQueResponse" type="tns:AccountQueResponse"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="AccountQueInput">
    <wsdl:part name="parameters" element="tns:AccountQue"/>
    </wsdl:message>
    <wsdl:message name="AccountQueOutput">
    <wsdl:part name="parameters" element="tns:AccountQueResponse"/>
    </wsdl:message>
    <wsdl:portType name="SimpleService">
    <wsdl:operation name="AccountQue">
    <wsdl:input message="tns:AccountQueInput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    <wsdl:output message="tns:AccountQueOutput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SimpleServiceSoapHttp" type="tns:SimpleService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AccountQue">
    <soap:operation soapAction=""/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SimpleService">
    <wsdl:port name="SimpleServicePort" binding="tns:SimpleServiceSoapHttp">
    <soap:address location="http://localhost:7101/WS-Project1-context-root/SimpleServicePort"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    In the above wsdl the collection of fintObjInst if of type xs:anytype. From the wsdl, I do not see the xsd mapping for AccountIC which includes Name and Desc. Due to which, when invoking the web service from a different client like c#(by creating proxy business service), I am unable to set the parameters for AccountIC. I am using JAX-WS stack and WLS 10.3. I have already looked at blog http://weblogs.java.net/blog/kohlert/archive/2006/10/jaxws_and_type.html but unable to solve this issue. However, at run time using a tool like SoapUI, when this wsdl is imported, I am able to see all the params related to AccountIC class.
    Can some one help me with this.
    Thanks,
    Sudha.

    Did you try adding the the XmlSeeAlso annotation to the webservice
    @XmlSeeAlso({<package.name>.AccountIC.class})
    This will add the schema for the data type (AccountIC) to the WSDL.
    Hope this helps.
    -Ajay

  • Prompt For Value inbetween 2 Calendar Dates

    I would like to know how to set up the following in Answers.
    Report should show sales that occurred in between 2 dates. When the report is run I would like the user to be prompted for a Start Date and an End Date. How can I set this up in Answers. I know I have to create 2 prompts for Start Date and End Date but after this what do I do.
    Thanks

    HI pass the presentation variables for the startdate as 'startdate' and for the End date 'enddate' and save the prompt. In the report level select the column date(the date which you have joined)
    and use the filter for that date and use the between operator and add the two presentation variables startdate and enddate and save the report. Now the report will be filtered based on the dates you have selected.
    check the link below here they have passed server variable for the date prompts but you can use presentation variable.
    http://tipsonobiee.blogspot.com/2009/07/in-between-calendar-control-with.html
    Thanks,
    chak

  • Best Practices for loading large sets of Data

    Just a general question regarding an initial load with a large set of data.
    Does it make any sense to use a materialized view to aid with load times for an initial load? Or do I simply let the query run for as long as it takes.
    Just looking for advice on what is the common approach here.
    Thanks!

    Hi GK,
    What I have normally seen is:
    1) Data would be extracted from APO Planning Area to APO Cube (FOR BACKUP purpose). Weekly or monthly, depending on how much data change you expect, or how critical it is for business. Backups are mostly monthly for DP.
    2) Data extracted from APO planning area directly to DSO of staging layer in BW, and then to BW cubes, for reporting.
    For DP monthly, SNP daily
    You can also use the option 1 that you mentioned below. In this case, the APO cube is the backup cube, while the BW cube is the one that you could use for reporting, and this BW cube gets data from APO cube.
    Benefit in this case is that we have to extract data from Planning Area only once. So, planning area is available for jobs/users for more time. However, backup and reporting extraction are getting mixed in this case, so issues in the flow could impact both the backup and the reporting. We have used this scenario recently, and yet to see the full impact.
    Thanks - Pawan

  • Bex Error for a particular set of data

    Hi Gurus,
        I have strange problem going on with my report, i have report which has variable
        for fiscal period (we can enter like 001/2007), the reports runs fine for 001/2207
        and 002/2007 but fails to run for 003/2007. i have data in the cube for that
        fiscal period.
        Please suggest a solution for this.
    Thanks a ton..

    Hi,
    Check for the fiscal year variant value for that  fisal period 003/2007in the cube is it same as that of othertwo values of the fiscal period.
    May be at the report level or at the cube level you have restricted the values of the fisacl variant for a particular value and for that variant value there is no fiscal period of 003/2007.
    Also it may be possible that your report key figures are restrcited year to date... that is till current fiscal period only through some other way.. and thats why you can only see data till current fiscal.
    Hope it helps
    Thanks

  • Not being prompted for collection variables

    Heres the situation:  i have a few very similar task sequences that deploy operating systems to unknown computers.  By placing the collection variable "OSDComputerName" on the unknown x64 computers collection my unknown 64-bit computers
    stop and ask for a computer name before executing the rest of the task.  I have an identical setup on my unknown x86 collection.  When i PXE boot that task sequence though i am never prompted to enter the variables.  Both advertisements are
    optional installs.  Both boot disks while different architecture and drivers are based on the lasted boot images that came with SCCM 2012r2 with the latest updates (6.3.9600.16384).  Other than collecting my variables the task sequence functions.
     Any ideas?
    Update:  It appears that the real problem is that this computer is not associating with the expected collection.  The device runs a 64-bit capable Atom CPU but is only compatible with 32-bit versions of Windows.  I expected (possibly incorrectly)
    that the computer when unknown would associate with the unknown 32-bit computer object, but in fact it associates with the 64-bit unknown computer object.

    That was a good idea and gave me a clue.  The collection variable did function that time so i did some more testing.  I have determined that this device is booting my 32-bit boot image, but is including itself in the "Unknown x64 Computer"
    object and therefore pulling collection variables and tasks from the "Unknown x64" collection.  Is there a place in the logs I can determine what collection this unknown device is associating with?  Looking at smsts.log i also found what
    appears to be the machine stating that its a 64-bit compatible system:  "Is 64-bit capable: 1"

  • Outlook 2010 prompting for password each login to Exchange 2013

    We have a new member server w/ Windows Server 2012 and Exchange 2013.  User's mailboxes were migrated from an old Windows Server 2003 server w/ Exchange 2003 by creating new empty mailboxes in Exchange 2013 then we exported/imported
    .pst files instead of migrating exchange stores.  Every time any users opens Outlook, they are being prompted to log in with domain credentials.  Obviously I'm clicking on "Remember my password", too. The workstations are all
    using Outlook 2010 and on a mix of Windows XP SP3, Windows 7 SP1 and Windows Server 2008 R2 (terminal server with Outlook 2010 installed for remote users). Some users were using Outlook 2010 prior to the migration to Exchange 2013 and some were on Outlook
    2007 but upgraded to Outlook 2010. I'm almost to the point of telling the users it's a new "feature" of Exchange 2013.  I'm confident that it's not stored passwords or credentials on the workstations, I've removed, deleted, created and
    recreated those credentials.  I've changed domain passwords and that didn't help either.  Any hints, tips or suggestions would be greatly appreciated.

    Hi
       These settings can be found under your Outlook profile, "More Settings > Connection > Exchange Proxy Settings."
       If you have Outlook Anywhere enabled, then you should force all Outlook clients to use HTTP when connecting.  Ensure you have  "On fast networks, connect using HTTP..."  AND "On slow networks, connect using HTTP...".  If you
    don't, anytime you dock, undock, get a new IP address, refresh your IP address, go to sleep, idle, anything that causes your IP stack wants to renegotiate connective will cause a password prompt to appear, EVERYTIME.
    Terence Yu
    TechNet Community Support

  • Looking for best practice on showing data inside a TableView

    I have an app, that can retrieve one ore more than 300,000 rows as the result of a query and i am displaying them into a TableView.. i am using a mechanism to bring the data "on parts", when i do the query an object with the ids of the rows is set into memory and a "queryResultKey" is passed in order to start asking for the complete set of data.
    The controlers send the queryResultKey telling the DAO that it has already N resultas, so the DAO will return X registers (from N+1 to N+J) or less if the total number of registers is reached. At this point the registers are added to the items of the table view using a addAll to the list binded to the table itemsProperty.
    it works fine for the first thounsands registers but suddenly a Null Pointer Exception is raised:
    ene 15, 2013 12:56:40 PM mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5 call
    SEVERE: null
    java.lang.NullPointerException
         at com.sun.javafx.collections.ListListenerHelper$Generic.fireValueChangedEvent(ListListenerHelper.java:291)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.scene.control.ReadOnlyUnbackedObservableList.callObservers(ReadOnlyUnbackedObservableList.java:74)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel$3.onChanged(TableView.java:1725)
         at com.sun.javafx.collections.ListListenerHelper$SingleChange.fireValueChangedEvent(ListListenerHelper.java:134)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.collections.ObservableListWrapper.callObservers(ObservableListWrapper.java:97)
         at com.sun.javafx.collections.ObservableListWrapper.clear(ObservableListWrapper.java:184)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.quietClearSelection(TableView.java:2154)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.updateSelection(TableView.java:1902)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.access$2600(TableView.java:1681)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel$8.onChanged(TableView.java:1802)
         at com.sun.javafx.scene.control.WeakListChangeListener.onChanged(WeakListChangeListener.java:71)
         at com.sun.javafx.collections.ListListenerHelper$Generic.fireValueChangedEvent(ListListenerHelper.java:291)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.collections.ObservableListWrapper.callObservers(ObservableListWrapper.java:97)
         at com.sun.javafx.collections.ObservableListWrapper.addAll(ObservableListWrapper.java:171)
         at com.sun.javafx.collections.ObservableListWrapper.addAll(ObservableListWrapper.java:160)
         at javafx.beans.binding.ListExpression.addAll(ListExpression.java:280)
         at mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5.call(TablaResultadosController.java:433)
         at mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5.call(TablaResultadosController.java:427)
         at javafx.concurrent.Task$TaskCallable.call(Task.java:1259)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
         at java.util.concurrent.FutureTask.run(FutureTask.java:166)
         at java.lang.Thread.run(Thread.java:722)This exception ocurrs inside the Thread that is filling the table:
    task = new Task<Integer>() {
                @Override
                protected Integer call() throws Exception {
                    while (listaTesis.size() < pag.getLargo()) {
                        List<TesisTO> tesisParaincrustar = fac.getTesisParaLista(pag.getId(), listaTesis.size());
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        tesisActuales.addAll(tesisParaincrustar);
                        updateProgress(listaTesis.size(), pag.getLargo());
                    return new Integer(100);
                @Override
                protected void succeeded() {
                    status.getProgreso().setVisible(false);
                    preparaFiltros();
                    llenandoTabla = false;
                    tblResultados.getSelectionModel().select(0);
            status.getProgreso().progressProperty().bind(task.progressProperty());
            new Thread((Runnable) task).start();So, what can be another strategy to simulate (or have) that all the register values are in memory and "grab just the needed ones" to display them in the TableView???
    Any idea will be helpfull.

    The first thing I would do here is to check that
    fac.getTesisParaLista(pag.getId(), listaTesis.size())cannot return null under any circumstances. If this is returning null, then that is the source of your exception. In this case you should add the appropriate guard to your code:
    if (tesisParaincrustar != null) {
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        tesisActuales.addAll(tesisParaincrustar);
    }For the threading issue, you can schedule anything that changes the UI to run on the FX Application Thread using Platform.runLater(...). Note that any data you pass into that should not be modified elsewhere. So you can do something like:
    Platform.runLater(new Runnable() {
      @Override
      public void run() {
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        tesisActuales.addAll(tesisParaincrustar);
    });You'll need to add the 'final' keyword to the declaration of tesisParaincrustar to get this to compile.
    This is fine, assuming that the call to fac.getTesisParaLista(...) returns a new list instance each time (i.e. it doesn't modify an existing list).
    You will be left with one remaining problem: the condition in your while(...) loop references listaTesis.size(). Since this list is now being updated on a thread different to the thread managing the while(...) loop. This can (and probably will) cause the loop to terminate at the wrong time. Can you adjust the while(...) condition so it doesn't refer to this list (for example, calculate ahead of time how many things need to be read, pass that number to your Task implementation, and use that in the while(...) condition.)
    There are effectively two rules for multithreading in JavaFX:
    1. Don't access the UI outside of the FX Application Thread. This includes data structures which are bound to the UI. I'm assuming at some point you've called tableView.setItems(listaTesis), so listaTesis should be considered part of the UI.
    2. Don't perform long-running tasks on the FX Application Thread.
    In attempting to conform to rule 2, you've violated rule 1.
    Doing incremental updates to a displayed list in a background thread is one of the trickiest uses of Task. Read through the API documentation for Task ( http://docs.oracle.com/javafx/2/api/javafx/concurrent/Task.html ): the "PartialResultsTask" example under "A Task which returns partial results" is an example of what you're trying to do.

  • Outlook 2013 Constantly Prompting For Credentials - Exchange 2007 - Small Business Server 2008

    Hello, I am having a problem using Windows Small Business Server 2008 and Exchange 2007 with Outlook 2013. The issue is that a credentials box appears in Outlook 2013 when using there exchange account whilst connected to the domain. The box will randomly
    prompt for user credentials, once the user credentials are entered it will either pop back up again and if you enter the details in again it will continue to pop up for around 4 or 5 times before accepting the credentials. It will then pop back up within 15
    minutes and do the same thing, if you click "Cancel" on the box it will also go away and remain connected to exchange however a popup in the bottom right will appear asking for a password even though you can send / receive from the mailbox.
    I have looked into this issue for hours and hours and still can not find a resolution, I have tried re-installing Office 2013 and re-creating the Outlook Profile as-well as as the Windows 7 Profile. I have checked through all the SSL certificates in IIS
    and everything appear to be correct.
    Is this a common issue? Is there anything I can do to further diagnose or fix this issue without having to try to re-install both the server and machine?

    Hi James_wilson,
    Any update?
    Just additional, would you please let me know whether have installed all updates for Outlook 2013? If hasn’t, please install and then monitor the result.
    Please also check if you enable
    Always prompt for logon credentials setting in Outlook 2013. 
    If you enable this setting, please uncheck and check if this issue still persists. Meanwhile, please remove the old credential in
    Credential Manager, then add again. Then monitor the result
    By the way, please run the Exchange BPA on the SBS 2008 server and check if can find some issue.
    Hope this helps.
    Best regards,
    Justin Gu

  • Restricting the Prompt Values based on Fact table data

    Hi,
    We need dashboard prompts in OBIEE reports that will fetch data from dimension tables. Our all dimensions are conformed dimension having joined with multiple fact tables.
    Because prompts are showing data from dimension table, it is showing all dimension data and few data might not present in the particular fact table that we have used in the report.
    For Example:
    We have one Calendar dimension table that has 20 years data that means all dates. Now we have two fact tables Fact1 and Fact2.
    In Fact1 we have records related to only 2007 Years data. And In Fact2 We have 2008 years data.
    Now We are creating two separate reports in two separate page in one dashboard where the prompt is same. That is Calendar date prompt.
    So In report1, The prompt will be Calendare and Result will be from Fact1. But as the calendar prompt from Calendar dimension, it showing all 20 years data though only 2007 years data is valie.
    Similarly for Report2, It is showing all calendar dates in the prompt where Fact2 is having 2008 year data.
    I want to show only 2007 years dates in the prompt for Report1 and 2008 years dates for Report2. That means I want to restrict prompt values based on the fact.
    It will be great if someone can suggest on this.
    Regards,
    SS

    Hi, I have a similar problem.
    I have two dimensions: time and customer.
    The two dimensions are joined into two Fact Table (Order, Forecast).
    I created a dashboard prompt with two selections: the first is the Year (time dimension) and the second is the Region (customer dimension) with the option "cosntraint."
    When I select a Year, not all Regions are shown, but only those that are present in one of two fact table for the year chosen. Which fact table?
    What criteria will limit the values of the Region?
    Thanks

  • Outlook 2007 Clients Prompt For Password When Opening

    I am running Exchange 2007 Standard.  New outlook 07 clients prompt for password each time it is opened.  Older clients do not prompt for password.  Is there any way for outlook 07 to not prompt for password?  Users already logged into domain, should their credentials not be recognized automatically like with outlook 03?

    This fixed it for me.
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrgeneral/thread/383d130e-869f-4fce-9502-8b340904b0ba/#636c5a5e-c61f-414b-8e85-562c888b83cc
    Quote:
    Same problem here after restarting SBS 2008 for upgrades (annoying login box popping up after starting Outlook and also other times). 
    This solved the problem for me:
    IIS Mgr on SBS 2008 / - / SBS Web Applications /
    - SSL Settings / Client certificates - Stop / Start web server after changing settings: 
    Autodiscover: Ignore 
    EWS: Ignore 
    OAB: Accept *) 
    owa: Accept *) 
    Rpc: Accept *) 
    RpcWithCert: Accept *) 
    *) All these have to be Accept to get rid of login box 
    Best regards 
    Bjorn
    I was having the same issue. SBS2008, Exchange 2007. Only being prompted in Outlook 2007 clients. Tried a lot of different things to fix it, but none worked. This started happening after a round of security updates but I could not find KB2412171 on the list.

  • How to activate a different sub-report for each row in the data set as main report page breaks on each row of data in the main dataset

    I am going to try asking this same question a different way as I have yet to find a working solution to my problem.  I have a main report and then 8 sub reports.  My main report has one data set and returns one row of data per account number.  One
    of the fields in the main data set is called AccountProf.  My main report displays one page per Account number and then calls a different sub report based on that account's AccountProf value.  The sub reports take in the account number as a parameter
    and get multiple rows of data to display that accounts usage formatted differntly for each AccountProf (hence the 8 different sub report.  
    So far I can figure out how to do everything but setting the visibility property of each sub-reports when I have multiple accounts.  If I use the following expression for the visibility property on each sub report, it makes all the applicable sub report
    for all the accounts requested visible at once:
    =IIF(Fields!AccountProf.Value= "USE_PLUS_DMD",False,True)
    *The value in bold USE_PLUS_DMD  is different for each sub report.
    Here is a look at what the main report look like:
    Here is the main reports data set:

    Hi JasonDWilson77,
    According to your description, there is a main report and 8 sub reports in the report, you want to set visibility of sub reports, if no value is passed to the parameter of sub report, the sub report will not be displayed. If that is the case, please refer
    to the following steps:
      1. Create a new parameter named NewAccountNumber, set its data type the same as @AccountNumber, select Allow multiple values, set Visibility to be hidden, then set all available values to default values.
      2. Right-click the first sub report and open Subreport Properties dialog box, click Parameters in left pane, set name to AccountNumber, then click (fx) button, type the expression like below:
    =Parameters! NewAccountNumber(0)
      3. Click Visibility in left pane, select Show or hide based on an expression, then click (fx) button and type the expression like below:
    =IIF(InStr(Join(Parameters! AccountNumber.Value), Parameters!NewAccountNumber.Value(0))>0 , false,true)
      4. Modify parameter of other sub reports like step2.
      5. Set visibility of other sub reports like step3.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • Trying to do a password update but it asks me for a four digit pass code. Does anyone know if that would have been a significant date or set of letters or numbers I was prompt for in the past when I first bought my phone?  Thanks.

    Trying to do a password update but it asks me for a four digit pass code. Does anyone know if that would have been a significant date or set of letters or numbers I was prompt for in the past when I first bought my phone?  Thanks.

    It rather depends on where you are seeing the demand for a passcode. If, as I assumed, you are trying to change the password at http://appleid/apple.com then that will ask for a passcode if 2-step verification has been set up. On the other hand, if, as Csound1 has assumed, you have changed the password on that website and are trying to enter it in your phone (for which you need to sign out completely before you can do this) and are being asked for a passcode that can only be one you set yourself (unless of course the phone is second-hand in which case that would open a whole new can of worms).

  • Problem setting up data collection for a performance problem

    We have a performance problem on our production environment: there is a query that is long to display specially on specific records involving a lot of détails. I had the idea to set up data collection to investigate the problem.
    I used the wizard to set up data collection with default settings.
    I had created a database PERF_DW on our test server for that purpose.
    I didn't have any problem with the wizard: it created data collection sets and SQL Server agents tasks and probably many objects. But I don't know where I missed something  but I didnt, have the chance to specify the database I wanted to tune
    and even when I started data collection, I couldn't figure out where were the reports.
    Then I tought that I did it all wrong so I stopped data collection and dropped the database and tried to deleted the jobs created and I had the following message:
    TITRE : Microsoft SQL Server Management Studio
    Échec de Supprimer pour Travail « collection_set_1_noncached_collect_and_upload ».  (Microsoft.SqlServer.Smo)
    Pour obtenir de l'aide, cliquez sur :
    http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=11.0.2100.60+((SQL11_RTM).120210-1917+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Supprimer+Job&LinkId=20476
    INFORMATIONS SUPPLÉMENTAIRES :
    Une exception s'est produite lors de l'exécution d'une instruction ou d'un lot Transact-SQL. (Microsoft.SqlServer.ConnectionInfo)
    The DELETE statement conflicted with the REFERENCE constraint "FK_syscollector_collection_sets_collection_sysjobs". The conflict occurred in database "msdb", table "dbo.syscollector_collection_sets_internal", column 'collection_job_id'.
    The statement has been terminated. (Microsoft SQL Server, Erreur : 547)
    Pour obtenir de l'aide, cliquez sur :
    http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3128&EvtSrc=MSSQLServer&EvtID=547&LinkId=20476
    BOUTONS :
    OK
    Now I understand that the collectors prevent the jobs from being deleted but I can't delete the collectors.
    What should I do?
    Any help is appreciated.
    Thank you for your advice.
    Sylvie P

    Hello,
    Please refer to the following article.
    http://blogs.msdn.com/b/sqlagent/archive/2011/07/22/remove-associated-data-collector-jobs.aspx
    You can run the dcclenaup.sql script mentioned in the article.
    Another option is using sp_syscollector_cleanup_collector.
    http://blogs.msdn.com/b/sqlagent/archive/2012/04/05/remove-associated-data-collector-jobs-in-sql-2012.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • Report - Want to know the maximum length of a character Data Type.

    Hello,        I have to print some details which is having more than 500 characters. Is it possible to create a variable or workarea with more than 256 characters? Please help me. Its very urgent. My actual requirement is to pass this workarea to sma

  • P2 1080i/24p and CS3

    Started a DVCPRO HD 1080i/24p project. Imported P2 mxf files shot in 1080i/24p. Timeline needs rendering when mxf is placed on timeline. Why does this happen? Every other native P2 project for DVCPRO HD does not require rendering. ex, 720/60 etc. CS4

  • What role of sd functional consultant in  ale and idoc  scenarios

    Hi friends, I am sd consultant having worked for indian support projects and implementaiton project. i do not have idea of ALE and IDOC scenarios. Now i am on foreign offshore support project where they asked for ALE AND IDOC knowledge. please guide

  • Security update seems to crash mail

    I have just installed the new security update (May 24) and since doing this mail crashes when I try and start it up. Mail has been working fine all morning before I installed the update. No other programs seem to be affected. Restarting my computer a

  • Reinstalling Snow Leopard MacBook Air into Mavericks/Lion

    Hi! I have a MacBook Air from 2011 with Snow Leopard on it. I want to wipe my hardrive clean and install either Lion or Mavericks on it. The problem with the 2011 model with Snow Leopard is that you cannot reboot and reinstall it without a USB key, r