How to get specific cell or whatever is in your datatable?

All there is in my datatable is one value loaded. Here's my code, but how do i convert that datatable to a string?
var fileName = string.Format("{0}\\file.xlsx", Directory.GetCurrentDirectory());
var connectionString = string.Format("Provider=Microsoft.Jet.OLEDB.12.0; data source={0}; Extended Properties=Excel 12.0;", fileName);
OleDbConnection connExcel = new OleDbConnection(connectionString);
connExcel.Open();
DataTable xlsData = new DataTable();
OleDbDataAdapter dbAdapter = new OleDbDataAdapter("select * from [Filters$B2]", connExcel);
dbAdapter.Fill(xlsData);
//Now i want to see that value in xlsData???? or possibly convert it since it is only one cell loaded to a string? HELP?

Hi  vkid,
>>All there is in my datatable is one value loaded. Here's my code, but how do i convert that datatable to a string?
About convert datatable to a string, you can use the following code
string res = String.Join(Environment.NewLine, table.Rows.OfType<DataRow>().Select(x => String.Join(" ; ", x.ItemArray)));
But based on your title, How to get specific cell,  please check the following code
string value = table.Rows[0].ItemArray[0].ToString();
It means get the firstrow and first column value. You can get the specified cell which you want.
Best regards,
Kristin
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to get current Cell's Row & Col in a Dynamic Table??

    Hi all,
    I would to know if is possible, when I pass with a mouse over a specific cell's table (the table is created dynamically), to get the currents Row & Column.
    My target is to set a tooltip for any cell of that table that says to user the label of Row & Column.
    Can anyone help me please???
    Thanks a lot.
    Gianluca Barile

    Scuse me Armin,
    I don't find the method (in Java code) for creating a Column's calculated attribute.
    My Node and My Table are not visible in Context tabstrip, because I'd created them into wdDoModify() method.
    My Node has (3 + N) attributes (columns) and it's binded to a Table.
    I post you my code so I wish you explain me how I do Insert the lines code. Sorry but I don't had understanded the phases. Can you Help me please?? Thanks a lot.
    if (firstTime) {          
              //Node
              IWDNodeInfo nodeinfo = wdContext.getNodeInfo();
              IWDNodeInfo grigliaComparativaNode = nodeinfo.addChild("NODE",null,true,true,true,false,false,true,null,null,null);
              //Aattributes
              IWDAttributeInfo nominativo = grigliaComparativaNode.addAttribute("Name","com.sap.dictionary.string");
              IWDAttributeInfo periodoDa = grigliaComparativaNode.addAttribute("From","com.sap.dictionary.string");
              IWDAttributeInfo periodoA = grigliaComparativaNode.addAttribute("To","com.sap.dictionary.string");
              IWDAttributeInfo[] voti = new IWDAttributeInfo[MAX_ELEMENTS];
              for (int i = 0; i < wdContext.nodeElements().size(); i++)
                   voti<i> =     grigliaComparativaNode.addAttribute("V"+i,"com.sap.dictionary.string");          
    //Table
              IWDTable tab=(IWDTable)view.createElement(IWDTable.class,"Dyntable");
              IWDAttributeInfo attrib1 = grigliaComparativaNode.getAttribute("Name");
              IWDAttributeInfo attrib2 = grigliaComparativaNode.getAttribute("From");
              IWDAttributeInfo attrib3 = grigliaComparativaNode.getAttribute("To");
              for (int i = 0; i < wdContext.nodeElements().size(); i++)
                   voti<i> = grigliaComparativaNode.getAttribute("V"+i);
              //Binding Node -> Table
              tab.bindDataSource(grigliaComparativaNode);
              tab.setReadOnly(true);
              tab.setDesign(WDTableDesign.ALTERNATING);
              //Table’s Columns
              IWDTableColumn tabColumn1 = (IWDTableColumn)view.createElement(IWDTableColumn.class,"Name");
              IWDTableColumn tabColumn2 = (IWDTableColumn)view.createElement(IWDTableColumn.class,"From");
              IWDTableColumn tabColumn3 = (IWDTableColumn)view.createElement(IWDTableColumn.class,"To");
              IWDTableColumn[] votiCol = new IWDTableColumn[MAX_ELEMENTS];
              for (int i = 0; i < wdContext.nodeElements().size(); i++)
                   votiCol<i> = (IWDTableColumn)view.createElement(IWDTableColumn.class,"V"+i);
              //Captions
              IWDCaption nameCap=(IWDCaption)view.createElement(IWDCaption.class,"Name Caption");
              nameCap.setText("NAME");
              tabColumn1.setHeader((IWDCaption)nameCap);
              IWDCaption daCap=(IWDCaption)view.createElement(IWDCaption.class,"From Caption");
              daCap.setText("FROM");
              tabColumn2.setHeader((IWDCaption)daCap);
              IWDCaption aCap=(IWDCaption)view.createElement(IWDCaption.class,"To Caption");
              aCap.setText("TO");
              tabColumn3.setHeader((IWDCaption)aCap);
              IWDCaption[] votiCap = new IWDCaption[MAX_ELEMENTS];
              for (int i = 0; i < wdContext.nodeElements().size(); i++){
                   votiCap<i> = (IWDCaption)view.createElement(IWDCaption.class,"V_C"+i);
                   String s = wdContext.nodeElements().getElementAt(i).getAttributeAsText("Name");
                   votiCap<i>.setText(s);
                   votiCol<i>.setHeader((IWDCaption)votiCap<i>);
              //Cells
              IWDInputField nameText=(IWDInputField)view.createElement(IWDInputField.class,"Name");
              nameText.bindValue(attrib1);
              tabColumn1.setTableCellEditor((IWDTableCellEditor)nameText);
              IWDInputField daText=(IWDInputField)view.createElement(IWDInputField.class,"From");
              daText.bindValue(attrib2);
              tabColumn2.setTableCellEditor((IWDTableCellEditor)daText);
              IWDInputField aText=(IWDInputField)view.createElement(IWDInputField.class,"To");
              aText.bindValue(attrib3);
              tabColumn3.setTableCellEditor((IWDTableCellEditor)aText);
              IWDInputField[] votiField = new IWDInputField[MAX_ELEMENTS];
              for (int i = 0; i < wdContext.nodeElements().size(); i++){
                   votiField<i> =(IWDInputField)view.createElement(IWDInputField.class,"V_F"+i);
                   votiField<i>.bindValue(voti<i>);
                   votiCol<i>.setTableCellEditor((IWDTableCellEditor)votiField<i>);
              //Insert columns into table
              tab.addColumn(tabColumn1);
              tab.addColumn(tabColumn2);
              tab.addColumn(tabColumn3);
              for (int i = 0; i < wdContext.nodeElements().size(); i++){
                  tab.addColumn(votiCol<i>);
              tab.createLayoutData(IWDRowHeadData.class);

  • How to get the cell info?

    You all know that, on our mobile we used to get the cell info ( Tower Name ). How to access that in our J2ME application?
    John

    Hello txflwr48! I regret the difficulties you've been having while activating your new phone. I'd love to help, but I recommend that we take our conversation to direct message instead of here in the public forum. If you have not yet gotten your device activated, please follow these steps to follow my handle (DionM_VZW) send me a direct message: http://vz.to/1gBiqkv
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • How to get specific accounts using ScriptedHostResourceAdapter

    Hi
    we are using ScriptedHostResourceAdapter for mainframe.
    But how to get some specific list of users.
    When i try to get the connetion using
    <invoke name='getAffinityConnection' class='com.waveset.adapter.HostConnPool'>
    Iam getting error. Though LoginAction is there in idm and working with users and reconciliations.
    com.waveset.exception.ItemNotFound: ResourceAction: LoginAction
    When i try to use listAllObjects still iam getting the same error.
    com.waveset.exception.ItemNotFound: ResourceAction: LoginAction
    <invoke name='listAllObjects'>
                   <new class='com.waveset.adapter.ScriptedHostResourceAdapter'>
                   <rule name='commonRuleLib:RUL_getWSObject'>
    <argument name='Id' value='Mainframe'/>
    <argument name='type' value='Resource'/>
    <argument name='context'>
    <invoke name='getAuthenticatedContext'>
                             <new class='com.waveset.server.InternalSession'/>
                             <s>configurator</s>
                        </invoke>
    </argument>
    </rule>
                        <new class='com.waveset.object.ObjectCache'/>
                   </new>
                   <s>Account</s>
                   <map>
                   <s>accountId</s>
                        <s>G1NXV6T</s>
                   </map>
                   <s>configurator</s>
                        <invoke name='getPassword'>
                             <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                             <invoke name='getAuthenticatedContext'>
                                  <new class='com.waveset.server.InternalSession'/>
                                  <s>configurator</s>
                             </invoke>
                             <s>User</s>
                             <s>configurator</s>
                             </invoke>
                        </invoke>
              </invoke>
    Please help if any solution is there
    Thanks
    Edited by: shailu541 on Feb 3, 2010 10:50 AM
    Edited by: shailu541 on Feb 3, 2010 10:52 AM

    I think i got it now. iam not passing objectcache
    <invoke name='getCache'>               
                             <new class='com.waveset.server.InternalSession'/>                         
                   </invoke>

  • How to get selected Cell value in datagrid?

    Hi guys, I have a datagrid that is editable. I was wondering if it's possible to retreive the cell value after user edits the single cell.
    My datagrid will trigger griditemEditorSessionSave event if users finish the editing, but I don't know how to get the new cell value.
    //script
    protected function dg_gridItemEditorSessionSaveHandler(event:GridItemEditorEvent):void
         //I can only get the columnIndex but not the value
          Alert.show (event.columnIndex);
    //mxml
    <s:DataGrid id="dg" editable="true" x="5" y="3" width="734" height="153"
                      gridItemEditorSessionSave="dg_gridItemEditorSessionSaveHandler(event)"
    >
    </Datagrid>
    Any thoughts? Thanks a lot.

    Hi,
    Please go through following link :
    http://corlan.org/2008/08/31/retrieving-the-new-values-while-editing-data-inside-the-data- grids/
    Hope it helps you
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to get TableView cell values

    Hi All,
    I'm new to PDK.
    I have a TableView which set to Single Selection (the table has a column of radio buttons).
    When the user selects a row I want to get the cells' values of the row from the client side.
    I can get the row's number by using the following code:
    tvModel.setOnClientRowSelection("generateNumber(htmlbevent)");
    function generateNumber(myEvent) {
    alert(myEvent.obj.clickedRow.toString());
    Is there a function like getValueAt(row,col)?
    How can I solve this?
    Thanks,
    Omri

    Hi
    There is a function getValueAt(row,col) to get a value at particular row and column.
    Please go through the followin forum thread which is related to your problem:
    Using OnCellClick with TableView to get cell value
    Hope this helps you.
    Regards
    Victoria

  • ALV grid using methods: how to get modified cells

    Hi all,
    IAM USING alv grid using methods,
    i have few fields as editable
    if the user edits any of those fields how can i know which cell is modified and what is the new value.
    i tried to use method get_modified_cells
    but iam getting a msg saying protected method and u can  not use.
    please advise.
    thanks
    JAfar

    Jafar,
    You need to Take the Help of DATA_CHANGED event, when ever there is a change in the Grid, it will trigger, here you can capture the Cells which are modified.
    in your PAI call the method check changed data
    CL_GUI_ALV_GRID-->CHECK_CHANGED_DATA
    You need to set the handler for datachanged.
    set the handler for this, and register the event modified or enter.
    **Handler to Check the Data Change
        HANDLE_DATA_CHANGED FOR EVENT DATA_CHANGED
                             OF CL_GUI_ALV_GRID
                             IMPORTING ER_DATA_CHANGED
                                       E_ONF4
                                       E_ONF4_BEFORE
                                       E_ONF4_AFTER,
    **Handle Data Change
      METHOD HANDLE_DATA_CHANGED.
    DATA: X_CHANGE TYPE LVC_S_MODI.  "modified cells
        LOOP AT ER_DATA_CHANGED->MT_GOOD_CELLS INTO X_CHANGE.
        ENDLOOP.
      ENDMETHOD.                    "HANDLE_DATA_CHANGED
    Regards
    Vijay

  • How to make specific cell(s) read-only in a data-grid

    Hi there!
    Is there a way to make an specific cell read-only in a data-grid?
    Best regards,
    Ciro

    Hi !
    After some months... here is the solution:
    Private WithEvents _gridTaste As DataGrid
    Private Sub MyScreen_Created()
    AddHandler FindControl("GridTaste").ControlAvailable,
    Sub(s, e)
    _gridTaste = CType(e.Control, DataGrid)
    End Sub
    End Sub
    Private Sub _gridTaste_BeginningEdit(sender As Object, e As DataGridBeginningEditEventArgs) Handles _gridTaste.BeginningEdit
    ' I want do set the cell (2,0) as read only:
    If e.Row.GetIndex = 2 AndAlso e.Column.DisplayIndex = 0 Then
    e.Cancel = True
    End If
    End Sub
    I hope this post help you too!
    Best regards,
    Ciro

  • TS3899 Getting a "background picture of angry birds" in back of my e mail messages...any ideas how to get rid of this?  Thanks for your help

    All of a sudden I am getting a background picture of angry birds in my e mail.  I can view the mail but it is annoying.
    I have cleard the history an still it appears.   Any ideas on how to get rid of this garbage?  Thanks for your help.

    Bettina:
    Do you see the color in Designer, or only Acrobat. If it's only in Acrobat, try changing the menu item Forms >> Highlight Fields. This toggles entry field highlights on and off.
    Mark
    You can shut off or change the highlight with this
    app.runtimeHighlightColor = color.red;
    if (app.runtimeHighlight)
    app.runtimeHighlight = false;

  • How to Get HTML Cell in red depending on a condition while getting a output from Sharepoint powershell

    In Below Script I am able to get "disksizerequired" number in red by below script but I want that whole Cell to be red.
    Please let me know how to do it
    # HTML code to format output
    $b = "<style>"
    $b = $b + "BODY{background-color:white;}"
    $b = $b + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $b = $b + "TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:thistle}"
    $b = $b + "TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;}"
    $b = $b + "</style>"
    # Variable initializing to send mail
    $TXTFile = "C:\Abhishek\test\test231.html"
    $SMTPServer = "mapintmail.lab.com" 
    $emailFrom = "[email protected]
    $emailTo = "[email protected]
    $subject = "Sharepoint Farms Content databases Report" 
    $emailBody = "Dailyreport on Sharepoint Farms Content databases"
    $encrypted ="01000000d08c9ddf0115d1118c7a00c04fc297eb0100000097606a1d1a7321488a23f2056c613f690000000002000000000003660000c000000010000000ebf48a9bd08c88a4de367597a1b86b390000000004800000a0000000100000006fa6c5ca0af8ad180e19cc6e5a42765e200000009a2551a74c5da425a1fa63705d1d7469fa0bb94409bf9a43ba951ee5c64d7ff614000000c9c659511fda53078b9f2e00f3b673349962affa"
    $usser1 = "lab\abhi"
    $usser2 = "labb\abhi"
    $password = ConvertTo-SecureString -string $encrypted
    $cred1 = new-object -typename System.Management.Automation.PSCredential -argumentlist $usser1,$password
    $cred2 = new-object -typename System.Management.Automation.PSCredential -argumentlist $usser2,$password
    # Creating PSSession and Loading Snapin
    $s1 = New-PSSession -Authentication CredSSP -Credential $cred1 -ComputerName LROSHRPTL01
    $s2 = New-PSSession -Authentication CredSSP -Credential $cred2 -ComputerName LROSHRPTL03
    Invoke-Command -Session $s1 -ScriptBlock {Add-PSSnapin Microsoft.SharePoint.PowerShell}
    $f1 = Invoke-Command -Session $s1 -ScriptBlock {Get-SPWebApplication | Get-SPContentDatabase}
    $g1 = $f1 | Select-Object DisplayName,WebApplication,disksizerequired,CurrentSiteCount,WarningSiteCount,MaximumSiteCount | ConvertTo-Html -Fragment DisplayName,WebApplication,CurrentSiteCount,WarningSiteCount,MaximumSiteCount,@{label="disksizerequired";expression={
     if($_.disksizerequired -gt 1024*1204*1024)
     {"#font"+$_.disksizerequired+"font#"} 
     else
     {$_.disksizerequired}
    $g1 = $g1 -replace "#font","<font color='red'>"
    $g1 = $g1 -replace "font#","</font>"
    Invoke-Command -Session $s2 -ScriptBlock {Add-PSSnapin Microsoft.SharePoint.PowerShell}
    $f2 = Invoke-Command -Session $s2 -ScriptBlock {Get-SPWebApplication | Get-SPContentDatabase}
    $g2 = $f2 | Select-Object DisplayName,WebApplication,disksizerequired,CurrentSiteCount,WarningSiteCount,MaximumSiteCount | ConvertTo-Html -Fragment DisplayName,WebApplication,CurrentSiteCount,WarningSiteCount,MaximumSiteCount,@{label="disksizerequired";expression={
     if($_.disksizerequired -gt 1024*1024*1024)
     {"#font"+$_.disksizerequired+"font#"} 
     else
     {$_.disksizerequired}
    $g2 = $g2 -replace "#font","<font color='red'>"
    $g2 = $g2 -replace "font#","</font>"
    ConvertTo-HTML -head $b -Body "<h1>$(Get-Date) Sharepoint Farm Database Content DB Report</h1> <br /> <h2>SharePoint_Config_UAT2010 $g1 SharePoint_Config_Intranet2010  $g2</h2>" | Out-File C:\Abhishek\test\test231.html 
    Invoke-Expression C:\Abhishek\test\test231.html
    # Code to Send Mail
    Send-MailMessage -SmtpServer $SMTPServer -From $emailFrom -To $emailTo -Subject $subject -Body $emailBody -Attachment $TXTFile

    If I understand the script correctly, what it will be doing at the moment is setting the font colour to red, instead of the background colour. To do this, you'd normally have to sent the attribute on the <td bgcolor='red'>, rather than using <font
    color='red'>, but you might try using a span instead.
    $g2 = $g2 -replace "#font","<span style='background-color:red;'>"
    $g2 = $g2 -replace "font#","</span>"
    If this isn't what you're looking for (because there may be an untidy margin around the span, or something), you'll need to give the <td> a classname, and then change the css for that class within $b instead. Let me know if you prefer to try that.
    OWA For SmartPhone

  • Can any one tell me how to get the Cell ID from the nokia�s mobile stations

    Hi All:
    Im trying to get the gsm cell information from nokia�s cell phones, but the properties "phone.cid", "phone.lai", "phone.mcc" and the "phone.mnc" not works, every time the results are null.
    Could any one help me?
    Please contact me at [email protected]

    A bit of googling suggests that...
    System.getProperty("CellID");...should work. Does it?
    And no, I'm not going to email your bloody personal address - that's not how forums work.

  • How to get specific data in a column.

    I have a column in a table where I have saved the addresses of files.
    As following
    Address_column
    D:\oracle\inventory_sheets.csv
    C:\oracle\sales\sheets.csv
    C:\Desktop\training_material\ presentation.pps.
    I want to get only the names of files which are coming at the end but there position is uncertain.
    Can anyone help me. How can I do this using SQL Query or any other way.
    Thanks.
    Suhaib Ahmed

    Something like this:
    SQL> WITH test_tab AS
      2       (SELECT 'D:\oracle\inventory_sheets.csv' file_loc
      3          FROM DUAL
      4        UNION ALL
      5        SELECT 'C:\oracle\sales\sheets.csv'
      6          FROM DUAL
      7        UNION ALL
      8        SELECT 'C:\Desktop\training_material\presentation.pps'
      9          FROM DUAL)
    10  SELECT SUBSTR (file_loc, INSTR (file_loc, '\', -1, 1) + 1) file_name
    11    FROM test_tab
    12  /
    FILE_NAME
    inventory_sheets.csv
    sheets.csv
    presentation.pps
    SQL> Regards,
    Jo

  • How to get specific rows from the vo or Iterator in the backing bean?

    Hi,
    I have to get the specific number of rows from iterator in the backing bean. means i want to get the records from the VO or Iterator only from 5 th record to 10th record its like rownum in SQL.
    We can use rownum in VO sql query. but there would be a performance issue with that ...
    SO i am trying to get the rows from ADF Iterator once we fetch from DB.
    Is it possible to do that ?
    Do we have any way to set the pointer to the VO/Iterator like setFirst() and after that setMaxResult to retrun the rows between first and maxresult..
    Thanks

    If this is for pagination, then af:table offers pagination by design when you set accessmode=RangePaging or RangePagingIncremental in VO. Paginated queries are fired when scroll down in the table. Explore this option before you try out any custom solution
    To answer the question,
    Note: same logic i have implpemented ADF with EJB ..In EJB Query class we have setFirst(int) and setMaxResult(int) methods...simply i did setFirst(30) and setMaxResult(10)..It worked fine...Theoretically speaking the same can be achieved by setting setRangeStart() on the viewobject(which in turn sets to the default rowset) and by setting max fetch size on VO + accessmode=RangePaging. However when you use table with ADF binding, these will be overridden by the binding layer. If you are not using ADF binding, then the above is same as what you did for JPA entity. Other option is, you build expert mode VO with rownum for this special case, which will work if you dont need to set accessmode=RangePaging for VO.

  • How to get specific file based on last modified

    Hi,
    I have a problem.
    what I am doing in my program is unzipping few files in c:\temp.
    the folder structure is like this
    c:\temp\patch\abc.doc
    c:\temp\patch\abc.txt
    c:\temp\patch\myfolder\xyz.doc
    c:\temp\patch\myfolder\myFile\xyz.txt
    what I mean to say is that, I have files bot directly in the folder patch or in subdirectories.
    then what I have to do is that I have to perform some kind of verification on these files and from here i have to put it some other location.
    so for getting the list of files in the directory I am doing this
    File fileDir = new File("C:\\temp\\patch");
    File[] fileList = fileDir.listFiles();what this does is returns all the subdirectories and files in the folder patch, but not the files in the subdirectory.
    so I trried doing this
    for(int j=0 ;j < fileList.length; j++){
    String newFileName = fileList[j].getName();
    String dir =  File.separator + newFileName;
    if(fileList[j].isDirectory()){
          newDir.append(dir);
        getFiles(newDir.toString());
       newDir = new StringBuffer();
       newDir.append(outputDir);
    }this code works fine when i run it for the first time.
    but when i run it second time it is giving some path like
    C:\temp\patch\myFolderC:\temp\patch\myFolder
    becasue alreday the folder temp contains the folders and files
    what is the msitake?
    And how do i get only the file that I am copying at this particular time excluding the earlier ones.

    can you also tell me the modification required in the code.
    Because thats where I am facaing the problem.
    It would be of great help if you could give me the modified code of what I have written.
    Since I am new to java I am not able to get the nuances of the code, but surely its a childs play for you I guess

  • How to get specific folder and items in the document library sharepoint 2010

    I have a Shared library and it has Test folder and inside so many documents now i need to display the Test folder and items programmatically.
    Appreciate Help!!!!!
    Blitz

    This is how you could do it using the server object model -
    SPWeb site = SPContext.Current.Web;
    SPList list = site.Lists["listname"];
    SPQuery query = new SPQuery();
    SPFolder folder = list.RootFolder.SubFolders["FolderName"];
    query.Folder = folder;
    SPListItemCollection items = list.GetItems(query);
    foreach (SPListItem item in items)
    //do whatever you want here
    Please "Mark as Answer" if a post has answered your question or "Vote as Helpful" if it was helpful in some way. Here's
    why

Maybe you are looking for

  • Please help me to tune this PL/SQL...

    Hi everyone,     I have a SQL query which runs ok when i run it individually but the same query if i use it in a procedure.The procedure is hanging up.Could someone please help to tune this SQL query and please check my procedure why is it hanging up

  • I keep getting shopkick notifications with deleted app

    Please Help!! I Keep getting the location notifications for shopkick even though I already deleted the app. I turned off the location settings when I had the app and that didn't work so I just deleted the app all together and it's still coming up. I

  • Write.out to data.dat file

    Am new to all this an pretty sure this stuff is basic but god its doing my head in.... Basically i`ve got to write a program in java that can write data to a data.dat file. Thats fine. I`ve done that. Thing is when you enter the data it replaces the

  • Communication channel parameters are not tranported in CTS+ transport

    Hi, My scenario is MDM to jms. we have configured the cts+ transport in our system. We transported the ESR and ID objects from development to Quality. But in the sender mdm communication channel the everything is getting transported except Repository

  • I am not sure what games means on my phone don't play  then and not installed

    below is my diagnostic report for something called gamed and then I have gamed IPS also on my phone {"app_name":"gamed","app_version":"","os_version":"iPhone OS 8.1.2 (12B440)","slice_uuid":"10007ff3-915c-30f3-b19b-e6516ffb0ad0","share_with_app_d evs