How to define in different controls device and channels in a DAQmx function?

Hi,
I need to build a vi that permits the user to change the device of a DAQmx  acquisition system, although I don't want that the user modify the input channels. I`d like to know if it is possible to define in different controls device and channels.
[]´s
Juliana

Hello Juliana,
What you would like to do is possible with some simple string manipulation.  First you will need a Device Name constant from the DAQmx >> Advanced >> DAQmx Constants & Property Nodes palette.  Right-click on the constant and turn it into a control.  Then, use a concatenate strings function to join the device name with the rest of the characters you need to define your input channels.  Wire the output of the concatenate strings VI to your DAQmx Create Channel VI.
Let me know if you have any questions on this.
Thanks,
Laura

Similar Messages

  • Sessions, Devices, and Channels

    In previous versions of the driver, if I defined more than one IP address in the "device names" field of an "open session" vi...then each USRP "device" was actually referred to as a "channel" according to the Property Nodes, or documentation of say a "Configure" vi..
    In v1.3 of the driver, with the arrival of the new radios that are actually multi-channel within a single device, it is now less clear as to what the meaning of a "channel" is in the software.  There's now a section in the Help document called, "Scoping Rules" that refers to Devices as dev0, dev1, etc., and Channels within that device as "0, 1, etc.".  However...in most of the other documentation on the VI's and Property Nodes...the definitions seem more in line with previous versions of the driver.
    Can someone help sort this out?  What exactly does the "Active Channel" property in the Property Node define/refer to?  And the "Enabled Channels" property?  Do these things have different meanings/behaviors depending on your hardware?
    Brandon

    Good questions, and I'm glad we have a forum to clear them up.
    There are Session, Device, and Channel attributes.  Session attributes apply to the whole session, and configure things that are not device or channel specific (e.g. Current Driver Version, Start Trigger configuration, etc.).  Device attributes configure properties that may vary across devices in the session, but apply to the whole device regardless of the number of channels (e.g. Model, Reference Frequency Source, etc.).  Channel attributes can vary from channel-to-channel, whether on the same device or on different devices (Gain, Carrier Frequency, etc.).
    The "Active Channel" property in the property node allows you to specify the scope for all of the properties below the "Active Channel".  It is something of a misnomer because it can be used to scope an attribute to a device or session, not just channel.  This is simply an old naming convention that is used in IVI drivers in LabVIEW.  "Enabled Channels" actually specifies which channels in a multi-channel session you want to turn on for receiving/transmitting data.
    Here are some useful things to know:
    0) On the VIs that have the "channel list" terminal, that string means the same thing as "Active Channel" in the property node and can take the same values.
    1) Channels are uniquely numbered in monotonically increasing order in a session.  For example,
       Single device, single channel (device names="192.168.10.2"): There is a single channel "0"
       Single device, multi-channel (device names="192.168.10.2"): There may be two channels, "0" and "1"
       Multi-device, single channel per device (device names="192.168.10.2;192.168.10.3"): The channel on the first device in the list is "0" and the channel on the second device is "1"
       Multi-device, multi-channel per device (device names="192.168.10.2;192.168.10.3"): The channels on the first device in the list are "0" and "1" and the channels on the second device are "2" and "3"
    2) The "Active Channel" or "channel list" string allows you to scope attributes as specifically as you want to.  For example, say you want to specify the gain differently on each channel
       Multi-device, multi-channel per device session (device names="192.168.10.2;192.168.10.3")
            set Active Channel to "dev0/0"
            set Gain to 10  (sets gain on the first channel of device 192.168.10.2)
            set Active Channel to "dev1/3" 
            set Gain to 20 (sets gain on the second channel of device 192.168.10.3)
    2b)  The driver is nice... since the channel numbers are unique, you can say either "dev0/0" or "0" and the driver will set the attribute on the appropriate channel
    3) You can set multiple attributes at once by specifying a wider scope.
    Let's say you have a multi-device, multi-channel per device session. So the channels are "dev0/0", "dev0/1", "dev1/2", "dev1/3".  If you set the Gain property with the scope
       "dev0/0"  : it only sets the Gain on that specific channel
       "dev0" : it sets the Gain on both channels of dev0 ("0" and "1")
       "" : it sets the Gain on all channels on all devices in the session ("0","1","2", and "3")
    If you set the Reference Frequency Source property with the scope
       "dev0" : it only sets the Reference on the first device
       ""  : it sets the Reference on all devices in the session
       "dev0/0" : doesn't make sense because Reference Frequency Source is a device, not a channel, attribute
    4) Similar rules apply to reading attribute values back, but you can get into trouble.  If you read an attribute with a wide scope (e.g. read Gain with a "" Active Channel) it will return a valid value ONLY if all of the channels in the session have the same value for that property.  Otherwise, you get an error.
    5) Enabled Channels is a Session attribute, so the "Active Channel" property should be "" or just not set at all when you set that property.
       Let's say you have a multi-device, multi-channel per device session with channels "0", "1", "2", and "3".
       To enable only channels "0" and "2", set
          Active Channel = ""  (applies to entire session)
          Enabled Channels = "0,2"
    Patrick

  • How to use the different class for each screen as well as function.

    Hi Experts,
    How to use the different class for each screen as well as function.
    With BestRegards,
    M.Thippa Reddy.

    Hi ThippaReddy,
    see this sample code
    Public Class ClsMenInBlack
    #Region "Declarations"
        'Class objects
        'UI and Di objects
        Dim objForm As SAPbouiCOM.Form
        'Variables
        Dim strQuery As String
    #End Region
    #Region "Methods"
        Private Function GeRate() As Double
                Return Double
        End Function
    #End Region
    Public Sub SBO_Appln_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean)
            If pVal.BeforeAction = True Then
                If pVal.MenuUID = "ENV_Menu_MIB" Then
                End If
            Else ' Before Action False
                End If
        End Sub
    #End Region
    End Class
    End Class
    Rgds
    Micheal
    Vasu Anna Regional Feeling a???? Just Kidding
    Edited by: micheal willis on Jul 27, 2009 5:49 PM
    Edited by: micheal willis on Jul 27, 2009 5:50 PM

  • How to define tablespaces in Oracle 10g and how put tables on tablespaces

    Hello,
    I'm having trouble to define the structure of tablespaces and how to distribute the tables/indexes/lobs on these tablespaces.
    Do you know some rules on how to define this?
    What I have until now:
    1) Put table indexes in separate tablespace
    2) Put lobs in separate tablespace and use storage clause when defining the lob column. Not sure how many tablespaces to use, I have tables with millions of lobs and tables with just one lob (with row containing the lob).
    3) Please fill more rules here ...
    Thank you, Alex.

    Long story: I received database and schema creation scripts defined in Oracle 9i. I want to redesign the tablespaces number/storage and also to change the distribution of tables into tablespaces.
    As an example I will show how tablespaces are created now. There is one tablespace for indexes BLUE_AUTO_INDX and one for each EXTENT MANAGEMENT of:
    - 64K for BLOB , name BLUE_K064_BLOB
    - 64K for tables , name K064_NTAB
    - 128K for tables, name BLUE_K128_NTAB
    - 512K for CLOB , name BLUE_K512_CLOB
    - 4M for BLOB , name BLUE_M004_BLOB
    - 64M for CLOB , name BLUE_M064_CLOB
    - 8M for tables , name BLUE_M008_NTAB
    - 1M for tables , name BLUE_M001_NTAB
    - 256M for tables, name BLUE_M256_NTAB
    Definition of each tablespace is like:
    CREATE TABLESPACE BLUE_AUTO_INDX DATAFILE 'BLUE_AUTO_INDX01.DBF' SIZE 200M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64M SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_K064_BLOB DATAFILE 'BLUE_K064_BLOB01.DBF' SIZE 20M REUSE AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64K SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_K064_NTAB DATAFILE 'BLUE_K064_NTAB01.DBF' SIZE 20M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64K SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_K128_NTAB DATAFILE 'BLUE_K128_NTAB01.DBF' SIZE 20M REUSE AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_K512_CLOB DATAFILE 'BLUE_K512_CLOB01.DBF' SIZE 20M REUSE AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 512K SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_M004_BLOB DATAFILE 'BLUE_M004_BLOB01.DBF' SIZE 20M REUSE AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 4M SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_M064_CLOB DATAFILE 'BLUE_M064_CLOB01.DBF' SIZE 400M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64M SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_M008_NTAB DATAFILE 'BLUE_M008_NTAB01.DBF' SIZE 200M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 8M SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_M001_NTAB DATAFILE 'BLUE_M001_NTAB01.DBF' SIZE 100M REUSE AUTOEXTEND ON NEXT 50M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE BLUE_M256_NTAB DATAFILE 'BLUE_M256_NTAB01.DBF' SIZE 512M REUSE AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED LOGGING ONLINE PERMANENT EXTENT MANAGEMENT LOCAL UNIFORM SIZE 256M SEGMENT SPACE MANAGEMENT AUTO;
    Does this structure of tablespaces ok? I mean if the logic of one tablespace for different EXTENT SIZEs looks ok?

  • How to find PG.xml file name and path associated with a FUNCTION

    Hi,
    I am having a function:IRC_VIS_HOME_PAGE with Web HTML value as below:
    OA.jsp?akRegionCode=IRC_VIS_HOME_PAGE&akRegionApplicationId=800&OAPB=IRC_BRAND
    How to find PG.xml file name and path assoicated with above funtion.
    Thanks,
    ashok

    Ashok,
    Function IRC_VIS_HOME_PAGE will have 2 parameter defined for it which are OASF and OAHP where
    OASF=<SelectedFunctionName> - this tells the Framework to select this function in the given "Home Page" menu context.
    OAHP=<HomePageMenuName> - this is used ONLY with the OASF parameter, and it is used to establish the current menu context. It should point to a "Home Page" menu.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to make par to export  provider and channel with example

    I want to make par for exporting my provider and channel
    this is mypar.txt file
    from: provider DefineItemProvider
    from: channel+provider TemplateTableContainer/DefineItem
    directory: templateBaseDir . DefineItemProvider
    in this way i am able to import channel only no provider
    so how to import both provider and channel in my organization and how to create text file for both provider as well as channel

    try specifying the class you are exporting ..
    class: class [types]
    "class" indicates that a class file is to be packaged with the entry, and you may optionally specify the types of operations that the class file are associated with. If not specified, "provider" is assumed. types can be "channel", "provider", or "channel,provider", and "channel+provider"; also, when specifying both, you can use a space.

  • Different Text Size for different mobile devices and Tabbed View Application

    Hi,
    I am developing an sample mobile application to target all mobile devices (IPhone/IPad/IPod and Android).
    I am facing an Issue that i am using default text size for the TextInput, TextArea and label but text size look so small for some devices, i discuss this with some(unkown) person(he is an IPhone developer).
    He told me that in Iphone development for different devices they use different text size.
    So how would I do the same at our Flex Mobile application ?
    Please provide me help regarding this
    There is one more problem in the application. I have tabbed view application, and i assign the firstview of the tab after 10 or more seconds of interval so that data will load in the application properly.
    But issue is that my first tab is not show anything at first go. When we switch the tab then it loads the screen and application work fine.
    Please provide me any help so that i can see the first Tab Screen.
    Thanks

    Hi there. For your font issue you need to set up a variable call it var fontSize or something. Then have an if statement that reads something like if (stage.stageWidth <= 320) fontSize=8 else if (stage.stageWidth > 320 || stage.stageWidth <= 640) fontSize = 12.
    Then instead of giving your font a size give it the size of fontSize variable and it will check for stage width or whatever you base it on and apply that size to your text field.
    I had done this for an app I did for Kellogg Garden Products but if you notice when you go from portrait to landscape mode the font size increases using this technique.
    http://itunes.apple.com/us/app/kellogg-garden-products-soil/id440522636?mt=8

  • HT204364 How do I make different greeting cards and send them to the same address in a bulk - not having to pay $3.99 shipping for each card

    In Iphoto, I would like to produce a bunch of greeting cards with different pics for different people and I would like all these cards to be sent to my home address in one shipment.
    The way I understand it, I can only prodce one card and order multiple copies of the same card.
    I am looking for a way not to spend $0.99 + $3.99 (shipping)....
    Can this be done?
    Or is there an app that allows that?
    Or how can I save each card and have them printed somewhere else?
    Thanks!

    Not really because the format is an odd size and when you save it as a pdf file there's a white border around the card. 
    There are 2 tutorials on how to print them yourself if you have a 3rd party image editor that supports layers or Pages from iWork: iP06 - Printing a iPhoto Greeting Card and iP07 - Printing a iPhoto Greeting Card to Standard Stock Sizes.  Apple has made it difficult to print them borderless unless the card color is the same as the card stock.
    OT

  • How to handle 3 different fact tables and measures within a DAX query?

    I am writing a DAX query in DAX studio in Excel against a tabular model that has 4 different Fact tables, but they share the same dimensions. (There's some long story I can't get into here, but unfortunately this is the structure) I want to
    include measures from the 4 fact tables, summarize by the dimensions in a single query output that can be used for a pivot table.  So far I have something like this:
     EVALUATE
    FILTER
        SUMMARIZE
            FactTable1,
            DimensionTable1[Value],        DimensionTable2[Value],
            DimensionTable3[Value],
            Dimensiontable4[Value],
            'dimDateTime'[Month PST],
            DimDateTIme[FiscalYear PST],
            "Measure Score",
            FactTable1[Measure 1],
            "Measure Score 2",
            FactTable1[Measure 2],
        ,Company[CompanyName]="Company ABC" 
    What I want to do is summarize the 3 fact tables by the same dimensions, but I am not sure how to do that within a DAX query.  I am getting an error if I try to include another table statement in the original SUMMARIZE function, even though the FACTS
    do share the same dimension.  Is there an easy way to do this?

    You can use ADDCOLUMNS to add the data from other tables, but you need to use within the SUMMARIZE the fact table that determines the cardinality of the output. If you are not sure (e.g. you project cost and revenues from two fact tables by month and there
    could me months with cost and no revenues, but also months with revenues and no costs), then you should use CROSSJOIN and then FILTER.
    You query might be written as (please note CALCULATETABLE instead of FILTER to improve performance):
    EVALUATE
    CALCULATETABLE (
        ADDCOLUMNS (
            SUMMARIZE (
                FactTable1,
                DimensionTable1[Value],
                DimensionTable2[Value],
                DimensionTable3[Value],
                Dimensiontable4[Value],
                'dimDateTime'[Month PST],
                DimDateTIme[FiscalYear PST]
            "Measure Score", FactTable1[Measure 1],
            "Measure Score 2", FactTable1[Measure 2]
        Company[CompanyName] = "Company ABC"
    Marco Russo http://www.sqlbi.com http://www.powerpivotworkshop.com http://sqlblog.com/blogs/marco_russo

  • For the same table in the same page, how to use 2 different forms (simple and tabular)?

    Hello! How I can be on the same page with the same table insert and update operations using 2 different forms (single form and tabular form)
    I have little knowledge of Apex, but I know PLSQL
    Thanks
    Ginger
    Ecuador

    Thank you Gramps.  It took some time, but I've got it working now.  I had to re-do all the user authentication actions from scratch for one of the databases, but it's finally behaving itself now.  I appreciate you pointing me in the right direction.

  • How to define if iPhone was activated and when?

    My friend is living in Russia (I myself in Canada). Recently she bought iPhone in the shop. When she opened the box she found an old used iPhone there.
    Management of the store refused her to return the product.
    She put complains to police. Now she is trying to prove that the used iPhone  she received was activated before she bought it.
    How she can define when purchased  iPhone was activated initially? (She has iPhone ID on the product).
    Where she can file a complain about switch of the products? May be Apple is interesting to know about such cases?
    Thank you.

    Put the serial number in here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Since the phone has a 1 year warranty from the original date of sale, you should be able to tell when the phone was originally sold based on the end date of the warranty.
    There's nothing Apple can do about it. The gray market for iPhones is huge and it is not necessarily illegal to re-sell an iPhone that was privately purchased.

  • Scripts - How to define a different dimension

    Hi,
    I have  data for certain members called "concepto", these data is going to be stored in the dimension TIME but only for year. What i want to do is take this data by year and spread it to each month of the year. But also, the members of the dimension change.
    1. Concepts:  MOD, GL, MP (3 members)
    Stored for 2011
    Stored also with the following dims:  Cliente: Dummy , Concepts: Cd (Parent of the 3 concepts) , Consumibles : Consumibles, Lob: Dummy, Metrica: X, Moneda: Dummy, OI: Dummy, Tiempo: 2011, Version: Esperado_2011, Vendedor: Dummy
    2. Spreading the value for the months, calling the 3 concepts with a property (dist):
    *XDIM_MEMBERSET TIEMPO=2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021
    *WHEN CONCEPTO.DIST
    *IS "Y"
    *FOR %ANO%= %TIEMPO_SET%
    *FOR %MES%= ENE,FEB,MAR,ABR,MAY,JUN,JUL,AGO,SEP,OCT,NOV,DIC
    *REC(FACTOR=1, TIEMPO="%ANO%.%MES%")
    *NEXT
    *NEXT
    *ENDWHEN
    *COMMIT
    So far, it works perfectly, but the destination for those dims is not the right one, I'd like to change 3 dims:
    Lob: Servicios_out ,  Metrica: Importe,  Moneda: MXN.
    3. How can I define this destination?  I have tried adding FOR (each dimension) along with the FOR statements (time) but it does not work.
    Thanx in advance !!
    Velázquez

    Hi John,
    It didnt worked.
    I typed:
    *XDIM_MEMBERSET TIEMPO=2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021
    *WHEN CONCEPTOS.DIST
    *IS "Y"
    *FOR %ANO%= %TIEMPO_SET%
    *FOR %MES%= ENE,FEB,MAR,ABR,MAY,JUN,JUL,AGO,SEP,OCT,NOV,DIC
    *REC(FACTOR=1, TIEMPO="%ANO%.%MES%", Lob="Servicios_out", Metrica="importe", Moneda="mxn")
    *NEXT
    *NEXT
    *ENDWHEN
    *COMMIT
    In order to store the data in the dimensions i want and the rest of them stay as the original, i.e. Version, etc.
    It simply ignored this and stored everything in the wrong members for the dimensions.
    Any other suggestion?
    Velázquez

  • How many K8T Neo2 different versions? (and how to tell them apart)

    First of all, hello everyone ^_^ This is my first post so... I hope I won't be annoying anyone.
    My questions are: is there a way to tell (from the name/item-code/prod number) which version "K8T Neo2" (code 6702-E) has the Promise controller onboard, and which not?
    Are there different mainboards for each country?
    The (long...sorry... ) explanation to my question follows :
    I live in Italy, and I'm trying to find a "K8T Neo2-FIR" MSI Mainboard, but it seems this mb model has not yet shipped in my country (I can find K8T Neo-FIS2R easily, but not the Neo2).
    I visited some (german) online shops, but descriptions are often not clear enough (and images are often taken from the wrong board...): which "6702-E" mb versions have the Promise controller on board?
    Having visited MSI site in different languages, it seems to me that for the american market (http://www.msicomputer.com) there are the "FIR" and "F" versions of the MB , the second without the Promise. For the german market ( http://www.msi-technology.de, the nearest country where i found online shops) there is only one 6702-E version of this mb, and it seems it's without the promise controller. Now, for the italian site (http://www.msi-italia.com) ... the link "Mainboards" leads to the international "msi.com.tw" site, where I read that the promise controller is "OPTIONAL"... so this doesn't give me any info.
    If anyone has experience of this, or any info, please reply
    Thank you in advance

    Try the following online stores :-
    http://www.ebuyer.com/customer/products/index.html?action=UFNTaG93UmVzdWx0cw%3D%3D
    http://www.scan.co.uk/index.asp
    http://www.overclockers.co.uk/
    I'm sure they will all ship within the EEC.

  • How to obtain data from a device and display that data in an infinite loop

    I'm trying to run an infinite loop where I'm testing a robot for thermal insulation.
    I send the robot a command to run infinitely (using VISA communication)..., the robot starts running.
    At the same time I obtain the temperature data from its motors (through sensors) and want to display it. The data should be refreshed at regular itervals but I only get broken display of the data at various instances of time during the robot's test-run.
    I fear that there is a problem with the time synchronization. But having tried many permutations of time delays at various points in the program, I can not find the fault.
    Any help is much appreciated.
    Cheers
    Rajat

    We really need screen shots (*png format/NOT .bmp!) or attached code to see what might be the problem. There are an infinite number of mistakes that can be made (or nearly so), depending on how a program is written.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • How to define a different Server for Firefox Sync

    I would like to define a server for sync-data other than the default Firefox- Server. What are the requirements for such a server?
    How is the setup?

    See:
    * http://tobyelliott.wordpress.com/2009/09/11/weave-minimal-server/
    * https://wiki.mozilla.org/Services/Sync

Maybe you are looking for

  • Premiere pro CC で photoshop CC 作成のレイヤーファイルが認識しなくなる

    premiere pro CC photoshop CC で時折起こる事象です. win8.1でCC2014は使っていません.業務では再作業で対応回避しています. 1 premiere で 複数レイヤーを持つpsdファイルを 個別のレイヤー.レイヤーサイズ保持 で読み込ませる. タイムライン上にレイヤーファイルを配置し. 確認後.任意のレイヤーファイルを右クリックで「photoshopで編集」を選んで編集を加え.保存する 突然.そのpsdファイルを認識しなくなる. 2 タイムライン上で上記と同じ

  • Misplaced mail - how do I put it back where it belongs?

    Today, in order to reduce the size of my In Box, I created a new mailbox named "Old Mail-before 6", then selected the contents of my inbox dated before June 2005, and used the "move to" command to move these items (about half the contents of the inbo

  • JTable row color based on a certain value

    Can anyone please show some code on how I can change the background color of an entire row based on a string value from the first column ? Every time that the first column contains the string "TOTAL", I want the entire row to have another background

  • Reprocessing errors in XI

    Hi,   From a 3rd party system I want to receive a set of records into XI. By passong all the records (for example: 10 records), I want to call the Inbound Proxy. If some of the records failed (lets say 3 records failed) to post in XI, can I reprocess

  • Table for Cost of materials/services at level of Operation

    Hello All, I am trying to develop a custom report where I need to report the cost of material/services at Order operation level. I got the table AUFM which shows the issue of material against order.However where do I see the same against an Order and