Loading string to xmlDocument using c#

strDetails ="<ApplicationName>" + appname + "</ApplicationName>" + "<Status>" + appstatus + "</Status>" +
"<RecPort>" + receiveport1 + "</RecPort>" +
"<SendPort>" + Sendport1 + "</SendPort>" +
"<Orchestration>" + orchestration1 + "</Orchestration>" +
"<Transform>" + transform1 + "</Transform>"
+ "<Pipeline>" + pipeline1 + "</Pipeline>" + "</ApplicationName>";
Hello,
I have a string variable as shown above,
I want to load that string variable (getting new values everytime) to xml file
the string variable getting new values everytime, so how to make that as next child record.
Please help..
Thanks

Hi Val10,
I tried this
It showing error saying : multiple root nodes
Can you please check what could be the error below is what I am trying to do,
foreach (Microsoft.BizTalk.ExplorerOM.Application app in catalog.Applications)
appname = app.Name;
appstatus = Convert.ToString(app.Status);
foreach (ReceivePort Recv in app.ReceivePorts)
receiveport = Recv.Name + ", ";
receiveport1 = receiveport1 + receiveport;
foreach (SendPort sen in app.SendPorts)
Sendport = sen.Name + ", ";
Sendport1 = Sendport1 + Sendport;
foreach (BtsOrchestration orch in app.Orchestrations)
orchestration = orch.FullName + ", ";
orchestration1 = orchestration1 + orchestration;
foreach (Transform trans in app.Transforms)
transform = trans.FullName + ", ";
transform1 = transform1 + transform;
foreach (Pipeline pipe in app.Pipelines)
pipeline = pipe.FullName + ", ";
pipeline1 = pipeline1 + pipeline;
} string strDetails = "<ApplicationName>" + appname + "</ApplicationName>" + "<Status>" + appstatus + "</Status>" +
"<RecPort>" + receiveport1 + "</RecPort>" +
                   "<Pipeline>" + pipeline1 + "</Pipeline>" ;
            string main = "<Apps></Apps>";
            System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
            doc.LoadXml(main);
            System.Xml.XmlNode root = doc.DocumentElement;
             doc.LoadXml(strDetails);
             System.Xml.XmlNode node = doc.DocumentElement;
             root.AppendChild(node);

Similar Messages

  • Error while loading an XML document using a structured application

    Hi,
    I try to load an XML document using a structured application defined in the default structapps.fm
    My code is shown down, extracted from the FDK API code sample.
    Problem, I always have the same message :
    "Cannot find the file named e:\xml\AdobeFrameMaker10\file. Make sure that the file exists. "
    Where "e:\xml\AdobeFrameMaker10\" is my install directory.
    So I assume that frame try to find the structapps.fm file but does not find it.
    What else can it be ?
    Does anyone knowns how to achieve this simple task using extendScript ?
    Thanks for any comments, Pierre
    function openXMLFile(myLastFile) {
        var filename = myLastFile.openDlg("Choose XML file ...", "*.xml", false);
        if (filename != null) {
            /* Get default open properties. Return if it can’t be allocated. */
            var params = GetOpenDefaultParams();
            /* Set properties to open an XML document*/
            /*Specify XML as file type to open*/
            var i = GetPropIndex(params, Constants.FS_OpenAsType)
            params[i].propVal.ival = Constants.FV_TYPE_XML;
            /* Specify the XML application to be used when opening the document.*/
            i = GetPropIndex(params, Constants.FS_StructuredOpenApplication)
            params[i].propVal.sval = "myApp";
            i = GetPropIndex(params, Constants.FS_FileIsOldVersion)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FontNotFoundInDoc)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FileIsInUse)
            params[i].propVal.ival = Constants.FV_DoCancel
            i = GetPropIndex(params, Constants.FS_AlertUserAboutFailure)
            params[i].propVal.ival = Constants.FV_DoCancel
            /*The structapps.fm file containing the specified application must have
            already been read. The default structapps.fm file is read when FrameMaker is
            opened so this shouldn't be a problem if the application to be used is
            listed in the structapps.fm file.*/
            var retParm = new PropVals()
            var fileObj = Open(filename, params, retParm);
            return fileObj
        } else {
            return null;

    Pierre,
    Depending on the object "myLastFile", the method openDlg might not even exist (if the myLastFile object is not a File object, for instance). And I do not see any need for the myLastFile anyhow, as you are presenting a dialog to select a file to open. I recommend using the global ChooseFile( ) method instead. This will give you a filename as string in full path notation, or null when no file was selected in the dialog. I am not sure what your ExtendScript documentation states about the return value for ChooseFile, but if that differs from what I am telling you here, the documentation is wrong. So, if you replace the first lines of your code with the following it should work:
    function openXMLFile ( ) {
        var filename = ChooseFile ( "Choose XML file ...", "", "*.xml", Constants.FV_ChooseSelect );
    While writing this, I see that Russ has already given you the same advice. Use the symbolic constant value I indicated to use the ChooseFile dialog to select a single file (it can also be used to select a directory or open a file - but you want to control the opening process yourself). Note that this method allows you to set a start directory for the dialog (second parameter). The ESTK autocompletion also gives you a fifth parameter "helplink" which is undocumented and can safely be ignored.
    Good luck
    Jang

  • Error while loading Data into Essbase using ODI

    Hi,
    I am very new to ODI. I have installed ODI and working on Demo environment only. I havn't done any configuration. I am using Essbase Technology which is coming by default.
    I have created one sample outline in Essbase and a text file to load data into essbase using ODI.
    Following my text file.
    Time     Market     Product     Scenario     Measures     Data
    Jan     USA     Pepsi     Actual     Sales     222
    I am getting the error. I have checked in Operator. It is giving at step 6 i.e. Integration SampleLoad data into essbase.
    Here is the description.
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    from java.lang import Class
    from java.lang import Boolean
    from java.sql import *
    from java.util import HashMap
    # Get the select statement on the staging area:
    sql= """select C3_C1 ""Time"",C5_C2 ""Market"",C2_C3 ""product"",C6_C4 ""Scenario"",C1_C5 ""Measures"",C4_C6 ""Data"" from "C$_0Demo_Demo_genData" where      (1=1) """
    srcCx = odiRef.getJDBCConnection("SRC")
    stmt = srcCx.createStatement()
    srcFetchSize=30
    stmt.setFetchSize(srcFetchSize)
    rs = stmt.executeQuery(sql)
    #load the data
    stats = pWriter.loadData(rs)
    #close the database result set, connection
    rs.close()
    stmt.close()
    Please help me to proceed further...

    Hi John,
    Here is the error message in execution tab....
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 20, in ?
    java.sql.SQLException: Unexpected token: TIME in statement [select   C3_C1    ""Time]
         at org.hsqldb.jdbc.jdbcUtil.sqlException(jdbcUtil.java:67)
         at org.hsqldb.jdbc.jdbcStatement.fetchResult(jdbcStatement.java:1598)
         at org.hsqldb.jdbc.jdbcStatement.executeQuery(jdbcStatement.java:194)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx4.f$0(<string>:20)
         at org.python.pycode._pyx4.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    java.sql.SQLException: java.sql.SQLException: Unexpected token: TIME in statement [select   C3_C1    ""Time]
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • Pass multiple query strings to url using HTTPWebRequest

    I'm trying to read data from API (in Json format) and load it into SQL server using script task in SSIS.
    Dim Request1 As System.Net.HttpWebRequest = DirectCast(System.Net.HttpWebRequest.Create(URL), System.Net.HttpWebRequest)
            Dim Object1 As [Object]
            Dim Response1 As System.Net.HttpWebResponse = Nothing
            Dim reader1 As System.IO.StreamReader
            Dim myResponseString As String
            Request1.Headers.Add("Authorization: Token *****")
            Try
                Response1 = DirectCast(Request1.GetResponse(), System.Net.HttpWebResponse)
                reader 1= New System.IO.StreamReader(Response1.GetResponseStream())
                myResponseString = reader.ReadToEnd()
    I'm able to do this with the URL. However, the requirement now is to pass different query strings to the URL and load the data into SQL.
    Could someone please provide the code sample to achieve this.
    Thanks

    If we sent you a code you must try and tell that it doesn't work or that's not what I want, this is better than repeating the same question again and again. Here you go another snippet for httpwebrequest with querstrings and tested:
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Try
    Dim request As HttpWebRequest = DirectCast(HttpWebRequest.Create(New Uri("http://www.google.com?querstring1=1&querystring2=2")), HttpWebRequest)
    request.BeginGetResponse(New AsyncCallback(AddressOf ReadCallback), request)
    Catch ex As WebException
     End Try
    End Sub
    Private Sub ReadCallback(asynchronousResult As IAsyncResult)
    Dim request As HttpWebRequest = DirectCast(asynchronousResult.AsyncState, HttpWebRequest)
    Dim response As HttpWebResponse = DirectCast(request.EndGetResponse(asynchronousResult), HttpWebResponse)
    Using streamReader1 As New StreamReader(response.GetResponseStream())
    Dim resultString As String = streamReader1.ReadToEnd()
    Dim result As String = Convert.ToString("Using HttpWebRequest: ") & resultString
    End Using
    End Sub
    Fouad Roumieh

  • Error while load data into Essbase using ODI

    Hi ,
    I'm getting the following error while loading measures into Essbase using ODI, I used the same LOG nd Error file and file path for all my Dimensions , this worked well but not sure why this is not working for measures....need help.
    File "<string>", line 79, in ?
    com.hyperion.odi.common.ODIHAppException: c:/temp/Log1.log (No such file or directory)
    Thanks
    Venu

    Are you definitely running it against an agent where that path exists.
    Have you tried using a different location and filename, have you restarted the agent to make sure there is not a lock on the file.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Load Rules into Dictonary using JAVA

    Hi all,
    I want to load the rules (Written using RL) in to Dictionary. I wrote java client which will read Rules from XML but i dont understand how to load it in to dictionary ?
    following is my Java Client.
    public class JSRDemo {
    public static void main(String args[]){
    String RULE_SERVICE_PROVIDER = "oracle.rules.jsr94";
    Class.forName( "oracle.rules.jsr94.RLRuleServiceProvider");
    RLRuleServiceProvider serviceProvider = (RLRuleServiceProvider)RuleServiceProviderManager.getRuleServiceProvider(
    RULE_SERVICE_PROVIDER );
    RLRuleAdministrator ruleAdministrator = (RLRuleAdministrator)serviceProvider.getRuleAdministrator();
    InputStream inStream = demo.getClass().getResourceAsStream( "/com/demo/rl/input_rules.xml" );
    System.out.println("Acquired InputStream to RI input_rules.xml: " + inStream);
    RLRuleExecutionSet res1 = (RLRuleExecutionSet)ruleAdministrator.getLocalRuleExecutionSetProvider(null).createRuleExecutionSet(inStream,null);
    inStream.close();
    System.out.println("Loaded RuleExecutionSet: " + res1);
    Following is my input_rule.xml file.
    <rule-execution-set xmlns="http://xmlns.oracle.com/rules/jsr94/configuration" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0">
    <name>RLDemo</name>
    <description>RLDemo</description>
    <rule-source>
    <rl-text>
    ruleset DM{ 
    fact class com.demo.rl.Driver {
    hide property ableToDrive, driverLicNum, licIssueDate, licenceType,
    llicIssueDate, numPreAccidents, numPreConvictions,
    numYearsSinceLicIssued, vehicleType;
    function println(String message) {
    //RL literal statement
    main.println(message);
    function showDecision() {
    //RL literal statement
    DM.println("here is my decision");
    </rl-text>
    </rule-source>
    <rule-source>
    <rl-text>
    ruleset vehicleRent {
    rule UnderAge {
    priority = 0;
    if ((fact com.demo.rl.Driver v0_Driver &&
    (v0_Driver.age < 19))) {
    DM.println( "Rental declined: " + v0_Driver.name +
    " Under age, age is: " + v0_Driver.age);
    retract(v0_Driver);
    </rl-text>
    </rule-source>
    <ruleset-stack>
    <ruleset-name>vehicleRent</ruleset-name>
    </ruleset-stack>
    </rule-execution-set>
    now i can read rules form above xml but portion i dont understand how to load it in to dictionary so that i can access same dictionary using rule author.
    Can anybody help me in this ?
    Thanks in advance.

    Hi Phil,
    I understood now. after searching a lot i found there is no way we can load RL in to dictionary. but we have very critical issue for version the rules. we dont want to version binary file or .ruleset created by rule author. we dont want to write chunk of java code to write rules as we have many rules. i dont understand what is other way we can version rules and can see all the changes in rules.can u suggest something ?

  • How to create dynamic connection string with variables using ssis.

    Hello,
    Can anyone let me know on how to create dynamic connection string with variables using ssis?
    Any help would be appreciated.

    Hi vinay9738,
    According to your description, you want to connect multiple database from multiple servers using dynamic connection.
    If in this case, we can create a Table in our local database (whatever DB we want) and load all the connection strings.  We can use Execute SQL Task to query all the connection strings and store the result-set in a variable of object type in SSIS package.
    Then use ForEach Loop container to shred the content of the object variable and iterate through each of the connection strings. And then Place an Execute SQL task inside ForEach Loop container with the SQL statements we have to run in all the DB instances. 
    For more details, please refer to the following blog:
    http://sql-developers.blogspot.kr/2010/07/dynamic-database-connection-using-ssis.html
    If there are any other questions, please feel free to let me know.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • It is possible to convert String to XMLDocument?

    I use XML SQL Utility to generate an XML document from the results of a query. I want to apply XSLT on this xml document.
    The problem is that XSU generates the document in String format. Or I use XSLProcessor.processXSL, and this method needs to parameters stylesheet and XMLDocument.
    So, my question is :It is possible to convert String to XMLDocument?
    Thanks.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    Use getXMLDOM() instead of getXMLString() on the OracleXMLQuery object. This returns you a DOM representation instead of a string, avoiding parsing.<HR></BLOCKQUOTE>
    Hi
    I'm reading about how " generate an XML document from the results of a query" i exactly want to do this but i need to create the XML file not only generate it. How I "create" the XML file?. Because, I need to manipulate later my XML file.
    Thanks for any help.
    null

  • So how long does it take to load a 160GB iPod using the Convert Higher ...

    I have a 160GB Gen 5 that I bought when first released back in the day when they were $400. Through a number of changes, the most recent being the advent of the Convert Higher Bitrate Songs to 128bit AAC feature, I decided to look at what more music I could store. After all was said and done, I ended up with a bit of a disaster with cover art not being properly applied to the music being played. I decided to *restore the ipod* based on suggestions in the discussion boards, and equally important was following the hints and tips here.
    http://www.samsoft.org.uk/iTunes/grouping.asp
    The advice is especially important in very large library situations to ensure you have uniqueness in the albums you want to display. Hadn't really given it much thought until I had the ability to see the individual albums for the 40K songs on the iPod via the cover art view.
    Finally the point of the post...
    *So how long does it take to load a 160GB iPod using the Convert Higher Bitrate option now available in iTunes 9.1?* The specs on my computer are not highend by any stretch, but it's no slouch, and neither of the CPUs are ever pegged. At this point I've lost count of how much time it's taken, but the load is going on 3-4 days. With some breaks in between because I need to check each incremental load to verify there is no cover art corruption, correct bad tags and such, but for the most part the loading is visibly slow, and I'm sure the conversion is the cause. I'm not really complaining at this point, but there is clearly room for improvement. And of course unless there is a redo involved in which case I will get quite cranky.
    *I would like to hear the experiences of others.*
    Finally to lend a bit more credence to the performance concern, my 32GB iPhone 3GS for only about say 28GB of music takes about 24 hrs to load from a 2.2GHz dual core intel laptop, again using the convert higher bitrate option.

    With AC power adapter it takes 3-4 hours for a full charge. With the USB charger it takes 9-0 hours for a full charge. I am not happy with them removing the AC charger and other accessoreis at all. It's business but it still stinks.
    I know I would rethink my purchase but would most likely end up buying the Micro anyway

  • Recently my adobe is taking much longer to load PDF files that used to open immediately

    recently my adobe is taking much longer to load PDF files that used to load almost instantly

    Look at this comprehensive trouble shooting document;
    https://discussions.apple.com/docs/DOC-3353
    I suggest that you start with SMC and PRAM resets.
    Then  a Safe Boot.
    Ciao.

  • Error BEA-000438 - Unable to load performance pack. Using Java I/O instead.

    On a Solaris 9 machime, 64 bits architecture, j2sdk1.4.2_08, Weblogic Server 8.1 SP2
              when I try to deploy the application, launching java wiht "-d64" option I get :
              <Jun 22, 2005 12:12:41 PM CEST> <Error> <Socket> <BEA-000438> <Unable to load performance pack. Using Java I/O instead.
              Please ensure that libmuxer library is in
              :'/export/home/j2se/j2sdk1.4.2_08/jre/lib/sparcv9/server:/export/home/j2se/j2sdk1.4.2_08/jre/lib/sparcv9:/export/home/Aplics/Apl1/WEB-INF/lib::/usr/local/bea/weblogic81/server/lib/solaris:/usr/local/bea/weblogic81/server/lib/solaris/oci920_8:/usr/lib'
              libmuxer exist on /usr/local/bea/weblogic81/server/lib/solaris
              Any idea?
              Thanks

              Can you post more details ?
              Sergi
              Jiffy <[email protected]> wrote:
              >error:
              > <2004-3-12 %u4E0B%u534815%u65F648%u520654%u79D2 CST> <Error> <Socket>
              ><BEA-000438> <Unable to load performance pack. Using Java I/O instead.
              >Please ensure that wlntio.dll is in: 'D:D:/bea/weblogic81/server/bin'
              >>
              

  • I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" the error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    I tried down loading mozilla firefox to use as a web browser. It was downloaded 100% then when prompted to "run" An error message comes up with a red cross and the message'This file is corrupted" and won't let me proceed. What do I do now?

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    You can try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Since itunes and apple tvs latest update I have had problem wtching movies on apple tv via my itunes can any one help, movie takes a very long time to load sometimes never, it use to work really well, whats going on please help?

    Since itunes and apple tvs latest update I have had problem wtching movies on apple tv via my itunes can any one help, movie takes a very long time to load sometimes never, it use to work really well, whats going on please help?

    You might find useful information in item D1 of Time Machine Troubleshooting.

  • Since loading the latest version of firefox i can no longer print. instead a message comes up "can not load library 'DLBAPRP.DLL' using defaults, error 126. what happened?

    error 126 can not load library "DLBAPRP.DLL" using defaults. this message appears when we try to print from our web bookmarks or any acrobat or pdf files

    That error seems to be new with Firefox 4 - never heard of it with earlier versions of Firefox, but it goes back many years in various Windows programs.
    See this [http://www.google.com/search?client=ubuntu&channel=fs&q=DLBAPRP.Dll&ie=utf-8&oe=utf-8 search].

  • Steps to load the data by using flat file for hierarchies in BI 7.0

    Hi Gurus,
    steps to load the data by using flat file for hierarchies in BI 7.0

    hi ,
    u will get the steps int he following blog by Prakash Bagali
    Hierarchy Upload from Flat files
    regards,
    Rathy

Maybe you are looking for

  • 0IC_C03  Data Not Showing in Report

    Dear Friends, We are using SAP BW 3.5. I have a problem with 0IC_C03 Cube. Problem is: Data is transfered to BW i can see the data from Cube --> Contents. But when i create a report i am unable to see only that particaluar data which dont have storag

  • Status error in workflow while changing personnel admin in pa30

    HI,   I have created a leave request in PA30, so that a workflow has to trigger, for personnel admin i am using custom rule for agent selection. I am following error in inbox instead of work item. Workflow 1712 set to status ERROR Please repair the s

  • I have a problem syncing my photos....please help

    I have been using my ipad for quite a while without syncing. I hooked up to a new computer yesterday and did a sync. this jhappened q few times whilst i was messing about. I had 1500 photos on my ipad which were transferred across ( i think ) but now

  • Thinkpad Twist performance: i5 + HDD vs i7 + SSD

    Can anyone please share a review of a Twist with an i7 cpu, 8GB RAM and an SSD? All the reviews I find online are of the model with an i5 cpu and a HDD. I think that is a very unfortunate combination, which generates at least some of the negative fee

  • Where can I find a longer lightening cable

    This tiny cable is not working for me.  I need a 6 foot cable?  At the suggestion of the Apple dude at Best Bork, I  purchased a USB cable.  When I tried to charge my IPAD it was excessively and noticeably slower and appeared to not charge while I wa