XPath, replace XML part in BPEL variable.

Hi.
Let's say i have a variable in BPEL which is filled with data :
<group id="id1">
<element name="name1" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
</group>
<group id="id2">
<element name="name1" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
</group>
<group id="id3">
<element name="name1" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
<element name="name2" selected="N"/>
</group>
Im sending one of the groups to my web app which changes the data and returns 1 group.
<group id="id2">
<element name="name1" selected="N"/>
<element name="name2" selected="Y"/>
<element name="name2" selected="Y"/>
<element name="name2" selected="Y"/>
</group>
And now i have to update the variable in BPEL becouse it is not up to date. So i want to replace my group with id="id2" with the one i received from my web app.
I dont know how to do it :( can somebody guide me through it ? A simple copy operation doesnt work :(
Thanks for help in advance.

Thx, i already managed to do it. Im using Java Embedded :
Element input = (Element)getVariableData("pageRequestInput", "payload", "/client:ConfiguratorWizardProcessRequest/client:productGroup");
Element output= (Element)getVariableData("ProductCatalogInstance", "payload", "/client:KP");
Node adoptedInput = output.getOwnerDocument().importNode( input, true );
NodeList list = output.getChildNodes();
Node oldChild = output;
for(int i = 0; i < list.getLength(); i++){
if ( list.item( i ).hasAttributes() ) {
addAuditTrailEntry( list.item( i ).getNodeName() );
NamedNodeMap attributes = list.item( i ).getAttributes();
for( int j = 0; j < attributes.getLength(); j++){
if( attributes.item( j ).getNodeName().equals( "id" ) ){
if( attributes.item( j ).getNodeValue().equals( input.getAttribute( "id" ))){
oldChild = list.item( i );
break;
}

Similar Messages

  • How to replace a part of BLOB(XML)

    Hi.
    I would like to know how replace a part of BLOB.
    For example, I have this code
    <inscSufDestinatario>999999999</inscSufDestinatario>
    <ufDestino>MG</ufDestino>
    <ufOrigem>SP</ufOrigem>
    <qtdeNF>#1</qtdeNF>
    <notasFiscais>
    and I need replace the "#1" for "5" or "10" and store him again in a blob.
    I wait have been clear.
    Tks

    For sufficently small blobs you can work with utl_raw package.
    Furthermore assuming you are working with real xml files you can do
    SQL> with t as (
      select to_blob(utl_raw.cast_to_raw('<xml><inscSufDestinatario>999999999</inscSufDestinatario>
    <ufDestino>MG</ufDestino>
    <ufOrigem>SP</ufOrigem>
    <qtdeNF>#1</qtdeNF>
    <notasFiscais/></xml>')) bl from dual
    select bl,
    to_blob(utl_raw.cast_to_raw(updatexml(xmltype(utl_raw.cast_to_varchar2(bl)), '//qtdeNF/text()','#5').getstringval())) new_bl
    from t
    BL                                       NEW_BL                                 
    <xml><inscSufDestinatario>999999999</ins <xml><inscSufDestinatario>999999999</ins
    cSufDestinatario>                        cSufDestinatario><ufDestino>MG</ufDestin
    <ufDestino>MG</ufDestino>                o><ufOrigem>SP</ufOrigem><qtdeNF>#5</qtd
    <ufOrigem>SP</ufOrigem>                  eNF><notasFiscais/></xml>              
    <qtdeNF>#1</qtdeNF>                  
    <notasFiscais/></xml>                  
    1 row selected.

  • Assigning values to element part of a variable

    Hello,
    I have a BPEL process which has a variable declared thusly:
        <variable name="myMessageVariable" element="ns1:MyMessage"/>The MyMessage type is declared by an XSD file which is used as part of a WSDL definition which an adapter then uses to connect to an external service:
        <xsd:element name="MyMessage" type="tns:MyMessageType" />
        <xsd:complexType name="MyMessageType">
            <xsd:sequence>
                <xsd:element name="ErrorString" type="xsd:string" />
                <xsd:element name="ErrorReason" type="xsd:string" />
            </xsd:sequence>
        </xsd:complexType>I am trying to assign a value to one of the element parts of the variable via an assignment:
            <assign name="Assign1">
              <copy>
                <from>ora:getFaultAsString()</from>
                <to>$myMessageVariable.ErrorString</to>
              </copy>
            </assign>... but I am getting the following error:
    Error(81): Variable "myMessageVariable"  must not specify part "ErrorString" because its type is not a WSDL messageCan anyone indicate the correct syntax for doing so, please?
    Many thanks in advance for any assistance.
    Edited by: ZeroZeroZeroOne on Apr 25, 2013 9:22 PM

    Looks like your wsdl is not defining the message properly for the operation. I have pasted you an example of wsdl and xsd here.
    WSDL File:
    +<?xml version="1.0" encoding="UTF-8"?>+
    +<wsdl:definitions name="BPELDVM"+
    targetNamespace="http://xmlns.oracle.com/PIMtoRPASAmendment/BPELDVM/BPELDVM"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/PIMtoRPASAmendment/BPELDVM/BPELDVM"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    +     <wsdl:types>+
    +          <schema xmlns="http://www.w3.org/2001/XMLSchema">+
    +               <import namespace="http://xmlns.oracle.com/PIMtoRPASAmendment/BPELDVM/BPELDVM" schemaLocation="xsd/BPELDVM.xsd" />+
    +          </schema>+
    +     </wsdl:types>+
    +     <wsdl:message name="BPELDVMRequestMessage">+
    +     <wsdl:part name="payload" element="client:process"/>+
    +     </wsdl:message>+
    +     <wsdl:message name="BPELDVMResponseMessage">+
    +          <wsdl:part name="payload" element="client:processResponse"/>+
    +     </wsdl:message>+
    +     +
    +     <!-- portType implemented by the BPELDVM BPEL process -->+
    +     <wsdl:portType name="BPELDVM">+
    +          <wsdl:operation name="process">+
    +               <wsdl:input message="client:BPELDVMRequestMessage" />+
    +               <wsdl:output message="client:BPELDVMResponseMessage"/>+
    +          </wsdl:operation>+
    +     </wsdl:portType>+
    +     <plnk:partnerLinkType name="BPELDVM">+
    +     <plnk:role name="BPELDVMProvider">+
    +               <plnk:portType name="client:BPELDVM"/>+
    +          </plnk:role>+
    +     </plnk:partnerLinkType>+
    +</wsdl:definitions>+
    XSD File:
    +<?xml version="1.0" encoding="UTF-8"?>+
    +<schema attributeFormDefault="unqualified"+
    +     elementFormDefault="qualified"+
    +     targetNamespace="http://xmlns.oracle.com/PIMtoRPASAmendment/BPELDVM/BPELDVM"+
    +     xmlns="http://www.w3.org/2001/XMLSchema">+
    +     <element name="process">+
    +          <complexType>+
    +               <sequence>+
    +                    <element name="input" type="string"/>+
    +               </sequence>+
    +          </complexType>+
    +     </element>+
    +     <element name="processResponse">+
    +          <complexType>+
    +               <sequence>+
    +                    <element name="result" type="string"/>+
    +               </sequence>+
    +          </complexType>+
    +     </element>+
    +</schema>+
    Let us know if you still having problem with that. Otherwise you can share your wsdl and schema file here.
    Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question.
    Thanks,
    Vijay

  • How to set values to bpel variables from Java

    I have a java class to create files and populate some contents into it. On success it returnes "File Created"
    I used the following code to achieve it :-
    WriteFiles objWriteFiles=new WriteFiles();
    String para=((oracle.xml.parser.v2.XMLElement)getVariableData("inputVariable","payload","/client:FileTestProcessRequest/client:HO_ORG_ID")).getFirstChild().getNodeValue();
    String result=objWriteFiles.writeHeaderInfo(para);
    (writeHeaderInfo is a method in my java class)
    addAuditTrailEntry(result);
    I works fine..Now I want to assign this reult value to a bpel variable .. I tried doin it like below:-
    setVariableData("outputVariable","payload","/client:FileTestProcessResponse/client:result" , result)
    but its not working...I get a fault ...
    Can anyone help me out...
    Thanks,
    Githa.R.S

    In this example :
       <!-- Invoke the EmployeeStatus Java class instead of web service -->
       <bpelx:exec name="invokeJavaExec" language="java" version="1.4">
          <![CDATA[
             EmployeeStatus e = new EmployeeStatus();
                String firstName = ((Element)getVariableData(
                                 "EmployeeTravelStatusRequest", "employee",
                                 "/employee/FirstName")).getNodeValue();
                String lastName = ((Element)getVariableData(
                                   "EmployeeTravelStatusRequest", "employee",
                                   "/employee/LastName")).getNodeValue();
                String empStatus = e.getTravelStatus(firstName, lastName);
                addAuditTrailEntry("Employee status is: " + empStatus);
                setVariableData("EmployeeTravelStatusResponse", "travelClass",
                             "/travelClass", empStatus);
          ]]>
       </bpelx:exec>they dont use namespaces in the xpath-expression, can you try that ?

  • AP Invoices via XML Gateway using BPEL

    Experts,
    I am trying to create a process that loads an invoice into 11i Accounts Payables using the XML Gateway. I have done this manually, uploading a piece of XML using the Oracle Transport Agent Send Inbound html page and it works fine. I believe my applications environment is working correctly. However, when I attempt to leverage the XML Gateway adapter for invoices in BPEL 10.1.2.02 I am getting errors.
    For some reason I am not able to add one xml node (which processes the invoice) as a child of another (the entire xml message sent to the gateway).
    I'm trying to assign a piece of an xml doc to the message for AP/XML Gateway:
    <copy>
    <from variable="Invoke_AP_Invoice_Enqueue_InputVariable" part="PROCESS_INVOICE_002"/>
    <to variable="Invoke_1_ReceiveDocument_InputVariable" part="body" query="/ns5:ReceiveDocument[1]"/>
    </copy>
    What I am expecting is:
    <Invoke_1_ReceiveDocument_InputVariable>
    <part name="header" >
    <XMLGateway_Header>
    <MESSAGE_TYPE>XML</MESSAGE_TYPE>
    <MESSAGE_STANDARD>OAG</MESSAGE_STANDARD>
    <TRANSACTION_TYPE>INVOICE</TRANSACTION_TYPE>
    <TRANSACTION_SUBTYPE>PROCESS</TRANSACTION_SUBTYPE>
    <DOCUMENT_NUMBER>1</DOCUMENT_NUMBER>
    <PARTY_ID>1</PARTY_ID>
    <PARTY_SITE_ID>OSO</PARTY_SITE_ID>
    <USERNAME>SYSADMIN</USERNAME>
    <PASSWORD>SYSADMIN</PASSWORD>
    </XMLGateway_Header>
    </part>
    <part name="body" >
    <ReceiveDocument>
    <PROCESS_INVOICE_002>
    <CNTROLAREA>...
    What I get is:
    <Invoke_1_ReceiveDocument_InputVariable>
    <part name="header" >
    <XMLGateway_Header>
    <MESSAGE_TYPE>XML</MESSAGE_TYPE>
    <MESSAGE_STANDARD>OAG</MESSAGE_STANDARD>
    <TRANSACTION_TYPE>INVOICE</TRANSACTION_TYPE>
    <TRANSACTION_SUBTYPE>PROCESS</TRANSACTION_SUBTYPE>
    <DOCUMENT_NUMBER>1</DOCUMENT_NUMBER>
    <PARTY_ID>1</PARTY_ID>
    <PARTY_SITE_ID>OSO</PARTY_SITE_ID>
    <USERNAME>SYSADMIN</USERNAME>
    <PASSWORD>SYSADMIN</PASSWORD>
    </XMLGateway_Header>
    </part>
    <part name="body" >
    <ReceiveDocument>
    <CNTROLAREA>...
    As you will notice the <PROCESS_INVOICE_002> tag is missing. Everytime I assign it, the <PROCESS_INVOICE_002> will not show up. What am I doing incorrectly? btw - I'm not on this list so any (please!) responses will have to be copied to me.
    Thanks,
    Mark W

    We have exactly the same problem. The guides are not up to date and we can't find where to find information about accepting and processing inbound Advanced Shipment Notifications (ASN) through XML Gateway.

  • Appending XML Node to XMLTYPE Variable

    Hi All,
    My Database Details,
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE 9.2.0.1.0 Production
    TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production
    SQL> var mycnt number
    SQL> exec :mycnt := 2
    SQL> declare
    xml xmltype := xmltype('
    <EMP>
    <NAME>
    </NAME>
    <SALARY>
    <DATE></DATE>
    <AMOUNT></AMOUNT>
    </SALARY>
    </EMP>');
    l_sal long := '<SALARY><DATE></DATE><AMOUNT></AMOUNT></SALARY>';
    l_str long;
    begin for i in 1 .. :mycnt
    loop
    l_str := l_str || l_sal;
    end loop;
    xml := xmltype(replace (xml.getstringval(), '</EMP>', l_str || '</EMP>'));
    dbms_output.put_line (xml.extract('.').getstringval());
    end;
    <EMP>
    <NAME/>
    <SALARY>
    <DATE/>
    <AMOUNT/>
    </SALARY>
    <SALARY>
    <DATE/>
    <AMOUNT/>
    </SALARY>
    <SALARY>
    <DATE/>
    <AMOUNT/>
    </SALARY>
    </EMP>
    This program is working fine. Consider the following scenario...
    My XML is like this,
    <ABC>
    <AB> -- First element
    <CCC></CCC>
    </AB>
    <AB> -- Second element
    <CCC></CCC>
    </AB>
    </ABC>
    Now i want to replicate the tag of <CCC></CCC>
    to 'N' TIMES from XPATH = /A/AB[1]/CCC and /A/AB[2]/CCC
    For example if N=3 then, the XML should be,
    <ABC>
    <AB>
    <CCC></CCC>
    <CCC></CCC>
    <CCC></CCC>
    </AB>
    <AB>
    <CCC></CCC>
    <CCC></CCC>
    <CCC></CCC>
    </AB>
    </ABC>
    Please provide me some Sample PLSQL code for this,
    Thanks in Advance,
    Simbhu

    not sure that this is waht you want - but maybe you find smth useful:
    SQL> set serveroutput on;
    SQL>
    SQL> declare str xmltype:=xmltype('<ABC><AB><CCC></CCC></AB><AB><CCC></CCC></AB><AB><CCC></CCC></AB></ABC>');
      2  begin
      3  for i in 1..2
      4  loop
      5  select InsertChildXML(str, '/ABC/AB['||i||']', 'CCC', XMLForest('' as "CCC",'' as "CCC")) into str from dual;
      6  end loop;
      7  dbms_output.put_line(str.extract('.').getstringval());
      8  end;
      9  /
    <ABC>
      <AB>
        <CCC/>
        <CCC/>
        <CCC/>
      </AB>
      <AB>
        <CCC/>
        <CCC/>
        <CCC/>
      </AB>
      <AB>
        <CCC/>
      </AB>
    </ABC>
    PL/SQL procedure successfully completed
    SQL>

  • XML element "userComments" of variable "UserComments" is not defined error while deploying AccountDistribution composite to soa server

    Hi,
    We did deploying AccountDistribution composite to soa server hosted in our test environment but We could not succeed as the following error was thrown on compilation itself in Jdeveloper.
    <snip>
         Error(124): XML element "{http://xmlns.oracle.com/InvoiceSynchronization/AccountDistribution/AccountDistribution}userComments" of variable "UserComments" is not defined
    <snip>
    We have had 4 variables defined with element attribute in our AccountDistribution bpel
    <variable name="UserComments" element="client:userComments"/>
    and for every variable we are coming up with this error on composite deployment.
    We have tried multiple workarounds like deleting SCA-INF of AccountDistribution that is auto generated by Jdeveloper etc but but no luck, we are still coming up with same error.
    We back traced for the element's definition i.e userComments definition and we could find the definition in xsd stored in MDS as per configuration.
    Please provide your advise on how to proceed further on this issue.
    Thanks,
    Satheesh

    Hi Nicolas,
    adf-config.xml is for all the composites present in the project, but we are getting this error in only 1 composite, our other composites are working fine without any error.
    We tried creating a new variable with type element and getting same error.
    Thanks
    Satheesh

  • BPEL Variables in to Transform activity (XSL)

    Hi,
    I need to access a BPEL variable from within a Transform activity (XSL).
    I need an output like this:
    <XML>
    <val1>1</val1>
    <val2>2</val2>
    <val3>3</val3>
    <val4>4</val4>
    </XML>
    Val1 and val2 is reachable from the xsd in the Transform activity (source variable). A DB-adapter is used to provide these data.
    Val3 and val4 is present in the BPEL, within BPEL variables.
    I have created a Transform activity with source = result of DP-adapter (val1 + val2), but will then need to get val3 + val4 (BPEL vars) from inside the Transform activity as well.
    How can I do this ?
    I have tried passing the variables in as parameters, but can't get this to work. I either only get the parameters, or only get the values from the DB-adapter, as it seems I only can have 1 source.
    Similar thread, but with no answer:
    Global Variables in to XSL

    Thank you for answering.
    The link you're referring to is the thing that I mentioned that I couldn't get to work.
    Works fine when just passing parameters, but when I already have a source (like my DB-adapter output), and want the parameters as well, it's getting tricky. Seems there can only be 1 source: Parameters or DB-adapter output.
    What I need is values from a source (DB-adapter output) + be able to send BPEL variables to the same Transform activity (XSL).
    Have you tried this ? Is it at all possible ?

  • Accessing BPEL Variables in XSLT

    Hi All,
    In a BPEL PM process I need to be able to access a global BPEL process variable in the XSL transformation. When I use any functions in the "Transform" activity I do not see the BPEL variables in scope. Any idea on how can this can be done ?
    Regards,
    Venkatesh.

    This causes a problem with the XSL Mapper. If I try to add an XPath-expression component to use this function I get the Warning message :-
    "Function of name "bpws:getVariableData" not found."
    If I continue, the following XSL segment is generated :-
    <tns:comment>
    <xsl:value-of select="bpws:getVariableData(?,?,?)"/>
    </tns:comment>
    This compiles ok, but when I run the business process, I get the following error from the transformation component :-
    XPath expression failed to execute. Error while processing xpath expression, the expression is "ora:processXSLT("transformDimToRAN.xsl", bpws:getVariableData("invokeDimensionGateway_getFutOptTradesSelect_lastProcessedTradeRef_OutputVariable", "FutOptTradesCollection"))", the reason is Extension function http://schemas.xmlsoap.org/ws/2003/03/business-process/ : getVariableData is unknown. Please verify the xpath query.

  • Accessing BPEL variables in XSL

    Hi,
    Did anyone have success accessing BPEL variables in XSL? If so can
    you please let me know how you did it? I tried bpws:getVariableData
    without much luck.
    Any information will be of great help.
    Thanks
    Raj

    I don't think that's really what XSL is for. It's really about taking a single XML document, and generating another XML document, based on the first.
    If you want to pass in variables from BPEL, then write a complex type that contains the main XML document you need, plus all the other inputs you need.
    As an example, I was doing some XSL work and needed to also supply it with a default date to set when nothing else was present.
    My complex type would have been something like:
    <complexType name="ProcessDataInputType">
    <sequence>
    <element name="defaultDate" type="date"/>
    <element name="data" type="tns:MyDataType"/>
    </sequence>
    </complexType>

  • Formula variable with replacement path to another input variable

    Hi @ all,
    i have a question regarding "Formula variable with replacement path to another input variable".
    My Problem is that in selection screen and for info-fields the input variable is shown with its key and not with its description.
    Scenario:
    A formula variable (X) is used to get an input value of a characteristic variable (Y) for 0Fiscper3 to realize a IF-Then scenario.
    The formula variable (X) uses replacement path by variable (Y) replace by "key".
    In selection screen of the query variable (Y) is named with its key "ZAB_BUPE01" and not with its description " fiscal period". Same as for info-fields where the description is "ZAB_BUPE01" and not " fiscal period".
    Does anybody have a solution to display the selection variable correctly?
    Regards
    Tobias

    Issue Solved!
    The input varaible (y) for 0Fiscper3 was saved globally on the InfoProvider. This results in that the formula variable with replacement path only shows its technical name. I put the input variable in the query itself and it soved the problem. The variable is displayed with its description in selection screen.
    Regards

  • How to use XML fragment in BPEL?

    Hello,
    How to use XML fragment in BPEL process and whats the purpose of XML fragment ? And why we need it ??

    It is used to build up an XML fragment to the element on the target side...
    please refer this link....
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=2252997&tstart=2
    Thanks,
    N

  • How to display a BPEL variable using Java Embedding

    Hi, hope someone can help, I'm sure this is something very simple but for the life of me can't seem to find it through the tutorials including the Dev guide.
    Question
    =======
    How can I display user defined and BPEL variables in the process activity "Java Embedding" ?
    ex: System.out.println(bpws:getVariableData("myDatabaseParameterVariable")
    This example doesn't work but this is basically what I am trying to achieve.
    I would appreciate any help with this.
    Rookie

    Actually that's all the code I have.... System.out.println(myDatabaseArg);
    myDatabaseArg is a simple parameter defined in the database adapter configuration wizard which is used as a criteria to retrieve data.
    Just before I invoke the Read I use the Java Embedding to display the content of the parameter.

  • Replacing a part of a String with a new String

    Hi everybody,
    is there a option or a method to replace a part of a String with a String???
    I only found the method "replace", but with this method I only can replace a char of the String. I don't need to replace only a char of a String, I have to replace a part of a String.
    e.g.:
    String str = "Hello you nice world!";
    str.replace("nice","wonderfull");   // this won't work, because I can't replace a String with the method "replace"
                                        // with this method I'm only able to replace charsDoes anyone know some method like I need???
    Thanks for your time on answering my question!!
    king regards
    IceCube-D

    do check java 1.4 api, I think there is a method in it, however for jdk1.3 you can use
    private static String replace(String str, String word,String word2) {
         if(str==null || word==null || word2 == null ||
               word.equals("") || word2.equals("") || str.equals("")) {
              return str;
         StringBuffer buff = new StringBuffer(str);
         int lastPosition = 0;
         while(lastPosition>-1) {
              int startIndex = str.indexOf(word,lastPosition);
              if(startIndex==-1) {
                   break;
              int len = word.length();
              buff.delete(startIndex,startIndex+len);
              char[] charArray = word2.toCharArray();
              buff.insert(startIndex,charArray);
              str = buff.toString();
              int len2 = startIndex+word2.length();
              lastPosition = str.indexOf(word,len2);
         return buff.toString();

  • Videos for replacing ThinkPad parts available for streaming to your smartphones

    Hello all,
    Lenovo Service and Support Training site has added an additional
    feature to the site which is viewing videos on how to replace FRU parts
    I've tested it on the iPhone which I think is pretty helpful to watch
    the video on how to replace the part when your laptop has been taken
    apart.
    Head to the site on your PC/laptop here -> http://www.lenovoservicetraining.com/ion/
    For mobile devices (Android, iPhone, BlackBerry, Win Phone) here -> http://frusonfone.com/fof/
    Thanks All
    JameZ
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

    Hey Everybody!
    I am also just now posting the videos and FRUSonFone for the:
    X220 Tablet
    E420
    E420s
    E220s
    If there are any other machines that you might like to see on FRUs on Fone, make a good case for me to bring to my boss and I can go back and make a "Mobile" version!
    Thanks,
    Paul Vignola
    Lenovo Training Solutions

Maybe you are looking for

  • Crystal Reports 2008 - Error deploying on Windows 7 64 bit

    My reports will not display on a 64 bit Windows 7 computer. I have a VB.NET app I wrote that used Crystal Reports XIR2 to display a number of reports. Everything has worked fine for a year or two, but now we're rolling out 64 bit Windows 7 computers

  • Mac is freezing up

    My mac is freezing up everytime I open a Appleworks file. It works fine on the web, but as soon as I open an Appleworks file, this little rainbow circle starts turning and turning. I can't think of what it might be. Any suggestions, PLEASE?

  • How to identify the german words in the program

    Hi sham, Perez C , and karthikeyan, Thanks for the quick Reply, from ur help i could be able to write entire program in to output, this is fine but my requirement is each and every word i have to compare with the german words.. suppose there is a pos

  • IPhone Music Album Art DB is strangely huge

    I have an iPad and an iPhone. Both get music from the same source. Both take the tracks from my computer's library, downsize them to 128kps and there we are. However, the on-device Art Database sizes are very different and not in the way that makes s

  • Load Report Error

    Hi Experts, I have a customer who is receiving this error when trying to install Crystal Reports version 2.0.6. This is the error that he receives everytime. CrystalDecisions.Shared.CrystalReportsException: Load report failed. ---> System.Runtime.Int