Query Waveform Names

Is there a way to query the waveform names that are loaded into an RFSG using Labview?  I didn't see it in the RFSG property node options, so I was wondering if there is a DLL that I can access.  I know that the API can do this, because I have received errors calling out specific waveform names.  Any ideas?
Attachments:
waveform error.jpg ‏26 KB

Hi Joel,
There is a pretty indepth example of how to write and generate multiple waveforms by name from ARB memory located in the LabVIEW Example Finder (Hardware I/O -> Modular Instruments ->NI-RFSG -> Arbitrary Waveforms -> RFSG Multiple Arbitrary Waveforms). 
Regards,
Travis Ann
Customer Education Product Marketing Manager
National Instruments

Similar Messages

  • Query View name not saved in "Analysis Grid Properties" under Data Provider

    Hi BW World;)
    We are on BI 7.0
    I have created a BI workbook which contains a query view.
    However when we go into design mode and then "analysis grid properties" for this query view then "change data provider" it does not show the query view name but the query name. (we have saved the workbook)
    Is this the normal scenario?
    Surely should show the "query view name " and not the "query name" as confuses what data provider is being used?
    Is this a bug?
    Best
    Stevo.... Points of course... Thanks in advance.;)
    Edited by: bw4eva999 on Sep 10, 2009 4:40 PM     spelling

    Hi,
    You have created a workbook on top of a Query View which is again depends on a Query.Now the base for Query View is a Query.So the underlying Data Provider for a workbook is a Query.
    Hence when you go to Properties of grid->Change Data Provider,it shows the Query and the InfoCube,but not the Query View.
    So this is not a bug and this how its been designed.
    If you click for the Information of that workbook,it will show the Query and Info Provider,but not the query View.
    Though it looks like wierd,it is not a bug.
    Rgds,
    Murali

  • How to find the link between strcture and query technical name

    Hi Guru's
    How to find the link between Strcture in the query and query technical name. In other way where used list of the structure  used in queries?
    I know we have table called RSZELTDIR which have the values of strcuture name. from here i do not find any link to query technical name.
    Please can anyone help me?
    Regards,
    Sirisha

    Hi ,
    For structure and query relationship, the structure has to be a reusable structure( a global one). Then you can right click in on the structure name (in BEX query designer) and select the where used list. You will find all the query names where it is being used.
    U can also check out tables RSRREPDIR and RSZCOMPDIR for other query properties.
    Thanks,
    Amit

  • Displaying query view name in web template.

    Hi all,
    In the standard web template (0ANALYSIS_PATTERN) there is a text box which displays the query title.  I need to change this so it displays the name of the query view instead of the query.  Does anyone know how to do this?
    Many thanks,
    Nick.

    Hi Nick,
    In the template you need not to do any special setting for Query View Name display.
    When You use a query view in template that becomes as a data provider, so for every data provider whether that's a query or query view it works same.
    You can select to display query technical name or description.
    Hope i understood your requirement correctly. If not than please correct me.
    Thanks
    Dipika Tyagi

  • Execute query by name (of query)?

    hi!
    I was reading about weak typed api in lightswitch and I'm wondering can I get and execute query by name?
    so if I have line of code:
    dim coll = me.dataworkspace.applicationdata.Customers.GetQuery.where(function(x) x.name = name).execute
    can it be called with weak type api? like we can do
    dim val = me.details.properties("Name").value  - or something similar..
    and also could this be done with saved queries (like dim coll = CutomerByName(name as string).execute)..
    tnx in advance..
    Kivito
    Nobody expects the Spanish Inquisition! (M.P.F.C.)

    A modeled query can be found under the "methods" object
    So, if you have query named "Query1",
    this.DataWorkspace.ApplicationData.Details.Methods["Query1"]
    You need to use afterward the CreateInvocation method.
    Here is an example from my blog:
    private static IEntityObject GetEntityByKey(IDataService dataService, string entitySetName, params object[] keySegments)
    ICreateQueryMethod singleOrDefaultQuery = dataService.Details.Methods[entitySetName + "_SingleOrDefault"] as ICreateQueryMethod;
    if (singleOrDefaultQuery == null)
    throw new ArgumentException("An EntitySet SingleOfDefault query does not exist for the specified EntitySet.", entitySetName);
    ICreateQueryMethodInvocation singleOrDefaultQueryInvocation = singleOrDefaultQuery.CreateInvocation(keySegments);
    return singleOrDefaultQueryInvocation.Execute() as IEntityObject;
    See: http://blog.pragmaswitch.com/?p=291
    paul van bladel ==independent enterprise application architect== http://blog.pragmaswitch.com

  • From Query's name, how could i find the corresponding Infoset's name?

    Thanks!!
    If i know a Query's name, how to do could i find its corresponding Infoset's name??
    Query's name---->Infoset's name.
    Thanks!!!

    Go to SQ01,  right there is a column for infoset.  This will tell you what infoset that the query is using.
    Regards,
    RIch Heilman

  • Customer Exit - Fill variable depending on query view name

    Hi
    We're running BW 7.0
    We have a query which is used for broadcasting and as well for user input. That's why we have a variable which is default filled by a customer exit. This variable is the week and is default filled: fist week of year up to actual week.
    But now we have for the same query different selection requirenments.
    The same query should be send by email with
    - first week of year up to actual week
    - previous week
    Because of dynamic variables the calweek needs to be filled by customer exit and worked until now fine - until a second requirenment was coming (separat broadcast only with previous week).
    I don't like the idea to copy the query because of maintenance work.
    I'd like to have several views - and depending on the view name etc. I would fill the customer variable. But I don't get the query view name into customer exit - right?
    Do you have any other ideas?
    How do you handle such requirenments?
    Thx
    Roger

    Hi Helder,
    I understand your requirement but I don't understand the solution you are using. I think it's a bit tricky.
    What I would do is:
    Create three variables:
    - VAR1: Single value, mandatory, ready for input, customer exit. Used to store "User input date"
    - VAR2: Select option, customer exit, not ready for input. Used to store Valid From restriction.
    - VAR3: Select option, customer exit, not ready for input. Used to store Valid to restriction.
    Then, use this code:
    WHEN 'VAR2'.
    IF I_STEP = 2.
    READ TABLE I_T_VAR_RANGE INTO LOC_VAR_RANGE
    with key VNAM = 'VAR1'.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'LE'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDIF.
    WHEN 'VAR3'.
    IF I_STEP = 2.
    READ TABLE I_T_VAR_RANGE INTO LOC_VAR_RANGE
    with key VNAM = 'VAR1'.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'GE'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDIF.
    I think this should work, and you'll have three independent variables used for one purpose each.
    Hope this helps.
    Regards,
    Diego

  • C170 Ironport error "The query domain.name.accept failed

    Dear Community,
    I have two Cisco C170 Ironport devices.  Each is throwing the following error:
    "The query <domain.name.accept> failed with result inquiry timed out."
    I have been unable to decipher it and was hoping anyone might possibly have a clue to look for the resolution.
    I would be very grateful Community.
    Thanks.
    Rocky

    Hey Rocky,
    This seems to be an error on an LDAP accept query that is configured on the appliance.
    If you have indeed created an LDAP accept query, please check connectivity from the appliance to your AD servers currently set.
    Please go to GUI > System Admin > LDAP
    Here you can check connectivity to the AD servers and also run a test accept query.
    Please attempt these tests and let us know the results.
    Judging from the error, I am assuming that the LDAP accept query test will fail resulting in a time out, if it does this usually indicates either the AD server was not properly setup on the appliance, if so, you will need to ensure that your firewalls if any are in place is allowing the query traffic from the appliance to the AD server
    Please let us know.
    Regards,
    Matthew

  • CommonSearchParseException: Error building query, common name {0} specified

    Hi,
    I have installed Content Server and I have setup CIS on Oracle OC4J standalone. I have also validated the configuration by the action "Validate communication with Oracle Content Server".
    I tried to execute the sample program CommonSearch from SDK.
    The program is taking a default query as "$author <substring> 'Adm'" and default metadata map from /resources/ucpmcommon-metamap-default.xml ]
    But I got the following error:
    CommonSearchParseException: Error building query, common name {0} specified but is not mapped.
    at com.stellent.cis.client.command.impl.services.CommandExecutorService.executeCommand(CommandExecutorService.java:62)
         at com.stellent.cis.client.command.impl.CommandFacade.executeCommand(CommandFacade.java:158)
         at com.stellent.cis.client.command.impl.BaseCommandAPI.invokeCommand(BaseCommandAPI.java:84)
         at com.stellent.cis.client.api.common.search.impl.CISSearchAPI.search(CISSearchAPI.java:59)
         at com.stellent.cis.sdk.samples.search.CommonSearch.execute(CommonSearch.java:78)
    I have configured the adapterconfig.xml matching the CIS adapter config in OC4J as given below:
    <?xml version="1.0" ?>
    <config>
         <adapter type="scs" default="true" name="myadapter">
              <config>
    <property name="port">4444</property>
    <property name="host">localhost</property>
    <property name="type">web</property>
    <property name="contentServerAdminID">sysadmin</property>
    <property name="contentServerAdminPassword">idc</property>
              </config>
              <beans template="classpath:/META-INF/resources/adapter/adapter-services-scs.jxml"/>
         </adapter>
    </config>
    My metada map is the default mapping as follows
    <metamap>
    <adapter name="scsadapter">
    <common>
    <map name="Title" native="dDocTitle" />
    <map name="Author" native="dDocAuthor" />
    <map name="Date" native="dInDate" />
    <map name="ID" native="dID" />
    </common>
    <contribution>
    <!-- native fields are used only for contribution -->
    <native name="comments" default="" override="true" />
    <!-- common fields refer back to common map, can also be tagged with default and override attributes -->
    <common name="title" />
    <common name="author" />
    </contribution>
    </adapter>
    </metamap>
    When is this error "common name {0} specified but is not mapped" thrown? Is my metadata map file correct?
    Thanks
    Raji

    Hi,
    I changed the query and executed the program, still getting the same error. I have followed the instructions in CIS developer guide to create the metamap file but unable to figure out the reason for the error. Any other suggestions?
    Thanks
    Raji

  • Change report legend label waveform name

    I am automatically generating a report using VBScript. Everything works OK, except the legend label for one of my waveforms. For one waveform I want to use the channel group name instead of the channel name. For the other one, I want the channel name, which is what it seems to use by default.
    How do I change the waveform name displayed in the legend using VBScript?

    Use the related text option for the column legend (eLegendTextCurveRelatedText), and then you can customize the name in the legend for each of the ploted curves curve.
    ' Add the plot
    Set Plot = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"Plot2d")
    ' Set the ithColumn of the of the legend to -> related curve text
    Plot.CurveLegend.Columns(ithColumn).Type=eLegendTextCurveRelatedText
    ' Set the related text in each of the curves for the ithColumn
    Plot.Curves2D.Item(1).RelatedLegendText(ithColumn) = "@@Data.GetChannel(CurrChnNo).Name@@"
    Plot.Curves2D.Item(2).RelatedLegendText(ithColumn) = "@@Data.GetChannel(CurrChnNo).ChannelGroup.Name@@"

  • Query field names renamed to Expr1

    I recently had things quit working in a newer Access database that has been stable for several months.&nbsp; I tracked it down to field names in the queries changed from a name to "Expr1".
    Behaved like this topic:
    https://social.msdn.microsoft.com/Forums/office/en-US/b92d559b-2ce3-4b37-9939-a2a519b3429b/upgrade-from-2003-to-2010-causing-query-column-name-problems?forum=accessdev
    It's in Access 2010 and I did not upgrade, and I did not change any linked tables.
    I'm wondering if it had anything to do when I did a Compact and Repair on the database.
    Per other articles I have unchecked ALL boxes under Access/Options/Current Database/Name AutoCorrect Options
    Thanks for any help you can provide!

    I had a backup copy so this morning I went through all the queries and found the Expr1 and changed them back.  I had no calculated fields, and I didn't change anything in the queries.  (I added a new and different query, but that was it. 
    Didn't touch any other queries, and this happened in all the other queries.)
    My main concern is not knowing what caused it, and preventing it from happening again.  I'm hoping removing the Name AutoCorrect prevents that.
    I appreciate the reply.  Thanks!

  • BW query tech name changes

    Hello Experts,
    I have crystal report created on top of BW query, the report works good, but some how its technical name is getting added 1 in the end,example : my query technical name is : FI_q01 but it got changed to FI_q01_1.
    Any help is greatly appreciated.
    Kirsh

    Thanks Amit,
    I am creating through file->new and connection type sap bw mdx query.
    this is happening for some reports only.
    Its adding 1 for all the objects:example sales document : its looking like sdq1_1.0doc_num instead of sd_q1.0doc_num , like this its doing for all the objects if the query technical name is changed to sd_q1_1 from sd_q1.
    Also, another strange behavior is it is pulling technical name of one query and description of another query.
    example: if i have a query on MM with name MM_q1 and description as material mgm and FI query as FI_q1 and description as Finance qry then its pulling for MM query as FI_q1 and description as material mgm instead of MM_q1.
    Thanks,
    Krish

  • Bex Query Technical Name - auto populate

    When a user creates a query and goes to save it.... is there a way to populate the technical name box with a suggested (user can amend if required) technical name?
    The reason that I want to do this is because there is a strict query naming convention in place here and it is a way of making sure that users follow the correct naming convention.

    Hi Anil
    Thanks for the reply that is very useful and is one way in which this could be solved.
    But what I am really after is a way of populating the technical name box at the time the user saves a query.
    I have noticed that at times the technical name box holds the present query technical name.
    What I would like to know is, is there a way of filling this with for e.g. ZZ_Z_CA_CM_FINTRA_000, each and every time a user attempts to save a query? The user should be able to amend this if required. The purpose of this is that it highlights the naming convention to the key users and reminds them that they must follow this format.
    Forcing a naming a convention as part of authorisations is an option, but we also need to allow for some flexibility.
    Regards
    Harry

  • Easiest way to know the query group name?

    Hello All,
    This has been nagging at me for quite some time now. Would appreciate you inputs on the ways to find out the query group name for a set of queries we see on the UI.
    The obvious method is to search your query group from the list of query groups that system shows when we navigate to Setup->Queries and Reports->Query Groups. Do we have some other ways as well.
    Thanks In Advance
    Devesh

    Hi Devesh,
    If you know the query definition then the easiest way to find the query group would be to use "Search Query Groups by Queries Used" query on the Query Groups list page. This query allows you to select a query definition and returns the query group using the query.
    Or you could use "Query Group Review" query on the Query Groups list page. This returns all queries within all Query Groups. You can further refine your search by Query Name or Internal Name of the query you are interested in.
    If you want to do a general search for all buy-side list page or buy-side picker page query groups, search for <buylist> and <buypick> respectively.
    Hope this helps.
    Regards,
    Vikram

  • Question: To derive Query technical name based on RSZCALC table.

    Hello All -
    Could you please kindly help to share your thought on Link of Query table. I am interested to see the list of Queries using Exception Aggregation against particular Characteristic.
    I use RSZCALC table to get Information about Exception Aggregation, however, I am not sure how to get Query technical name.
    Could you please kindly share your thought, what table I should use to get Query Technical name based on data from RSZCALC? And appreciate to share your thought what column that I should use to link between those tables.
    Looking forward your feedback on this, and appreciate much.
    Thanks,
    Cheers,

    Also Refer this Wiki  , For More information about bex  query  tables.
    Relation between between BEX Query DefinitionTables - SAP NetWeaver Business Warehouse - SCN Wiki

Maybe you are looking for

  • Instrument IO Assistant is not installed correctly

    Hi I am using LabVIEW 8.6, and I want to use Instrument I/O assistant in the code as attachment. but it shows "measurement & automation explorer or the instrument I/O assistant is not installed correctly. please install these form the LabVIEW driver

  • Did not get org id in parameter form

    HI, select * from HR_OPERATING_UNITS organization_id IN (SELECT organization_id FROM hr_operating_units hou1 WHERE default_legal_context_id IN (SELECT default_legal_context_id FROM hr_operating_units hou2 WHERE hou2.organization_id = FND_PROFILE.VALU

  • WSUS 33002 ERROR

    Hello,  i have a probleme with my WSUS error 33002 fhis is the error in the event log which appears every 15 seconds. OS: Widows server 2005 SQL server 2005 Type de l'événement : Erreur Source de l'événement : MSSQL$MICROSOFT##SSEE Catégorie de l'évé

  • Document Types - Physical Inventory

    My Client want to have different document type while doing the Physical Inventory In stead of "IB" which is standard document sap has provided. Client want to have separate document type . Please advise any menthod is available so that I can inform c

  • Expdp problem when executing from pl/sql transportable tablespaces

    Hello i have a very strange problem for which your assistance is really appreciated. i am applying the transportable tablespaces approach and i have a problem when executing expdp from commandline in comparison to the procedure generated to make the