Sending 2 data, is it possible?

Hi,
Is it possible to send two data in the same txt file?
Lets say, i have specific members from several dimensions and Im always sending 1 data register...
Dims: Account, time, version, company, rate
Price= $100
1 Data: AccountA,2011.Jan,Bdg11,CompanyA,Usd,100
Instead...  is it possible to send 2 data?
Price=$100
Quantity=80
2 Data: AccountA,2011.Jan,Bdg11,CompanyA,Usd,100,80
I know that by default the name of the column sending data is Measures, but is it possible to add a "second measure" or something  in order to perform the sending of data?
Velázquez

Hi,
You can maintain the flat file something like:
Price,2011.Jan,Bdg11,CompanyA,Usd,100
Quantity,2011.Jan,Bdg11,CompanyA,No_Curr,80
Where Price and Quantity are the members of the account dimension. And No_Curr is a member of your currency dimension, indicating that quantity is not stored with any rate.
Alternately, you can try using MVAL statement in the transformation file. Please take a look at the below link from help.sap:
Hope this helps.

Similar Messages

  • Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format

    Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format. Siebel wants to send the data as xml to BI but not sure of the BI capabilities on giving WSDL embedded with XSD (input is a hierarchical)

    Hi All,
    I am able to fulfil above requirement. Now I am stuck at below point. Need your help!
    Is there any way to UPDATE the XML file attached to a Data Definition (XML Publisher > Data Definition) using a standard package or procedure call or may be an API from backend? I am creating an XML dynamically and I want to attach it to its Data Definition programmatically using SQL.
    Please let me know if there is any oracle functionality to do this.
    If not, please let me know the standard directories on application/database server where the XML files attached to Data Definitions are stored.
    For eg, /$APPL_TOP/ar/1.0/sql or something.
    Regards,
    Swapnil K.

  • Is it possible to create a virtual TCP port and send data to it?

    Is it possible to create a virtual TCP port and send data to it?
    My application is this:   I am reading a constant stream of waveform data from a device via a LabVIEW VI set and I need to get that streaming data to a .NET application.  I can poll a TCP port in .NET easily so is there a way I can create a virtual TCP port in LabVIEW and send the data there?

    Have a look at the example called simple data server and simple data client and see what you can get from that. I'm not really familiar with TCP myself.
    Joe.
    "NOTHING IS EVER EASY"

  • Searching for a possibility to send data of an itab vial email

    Hello,
    i want to send data from an itab to an external emailadress. Does anybody know a FM or something other?
    Thanks for your help

    Below is the sample code for sending and email, just concatenate all the field line into one and pass that table to
    CONTENTS_BIN as attachment.
    DATA:
        L_DATE(10).
    DATA:
      LI_RECLIST         LIKE SOMLRECI1  OCCURS 5  WITH HEADER LINE,
      LI_OBJTXT          LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE,
      LI_OBJECT_CONT     LIKE SOLI       OCCURS 20 WITH HEADER LINE,
      LI_OBJPACK         LIKE SOPCKLSTI1 OCCURS 2  WITH HEADER LINE,
      LI_OBJHEAD         LIKE SOLISTI1   OCCURS 1  WITH HEADER LINE,
      LS_DOC_CHNG        LIKE SODOCCHGI1,
      LV_LINES           TYPE I,
      GI_OUTPUT          LIKE SOLISTI1   OCCURS 5  WITH HEADER LINE.
    DO 10 TIMES.
      GI_OUTPUT-LINE = 'Answerthink'.
      APPEND GI_OUTPUT.
    ENDDO.
    WRITE SY-DATUM TO L_DATE.
    LS_DOC_CHNG-OBJ_NAME  = 'ANGEBOT'.
    CONCATENATE 'ZMBIBC_CCMS_LOAD Error Report u2013'
                L_DATE
           INTO LS_DOC_CHNG-OBJ_DESCR.
    LI_OBJTXT = 'Please find the attached document'.
    APPEND LI_OBJTXT.
    CLEAR  LI_OBJTXT.
    DESCRIBE TABLE LI_OBJTXT LINES LV_LINES.
    READ TABLE LI_OBJTXT INDEX LV_LINES.
    LS_DOC_CHNG-DOC_SIZE = ( LV_LINES - 1 ) * 255 + STRLEN( LI_OBJTXT ).
    * Creation of the entry for the compressed document - body text
    CLEAR LI_OBJPACK-TRANSF_BIN.
    LI_OBJPACK-HEAD_START = 1.
    LI_OBJPACK-HEAD_NUM   = 0.
    LI_OBJPACK-BODY_START = 1.
    LI_OBJPACK-BODY_NUM   = LV_LINES.
    LI_OBJPACK-DOC_TYPE   = 'RAW'.
    APPEND LI_OBJPACK.
    DESCRIBE TABLE GI_OUTPUT LINES LV_LINES.
    LI_OBJHEAD = 'OUTPUT'.
    APPEND LI_OBJHEAD.
    LI_OBJPACK-TRANSF_BIN = 'X'.
    LI_OBJPACK-HEAD_START = 1.
    LI_OBJPACK-HEAD_NUM   = 1.
    LI_OBJPACK-BODY_START = 1.
    LI_OBJPACK-BODY_NUM   = LV_LINES.
    LI_OBJPACK-DOC_TYPE   = 'RAW'.
    LI_OBJPACK-OBJ_NAME   = 'ANLAGE'.
    LI_OBJPACK-OBJ_DESCR  = 'Output List'.
    LI_OBJPACK-DOC_SIZE   = LV_LINES * 255.
    APPEND LI_OBJPACK.
    LI_RECLIST-RECEIVER = 'give email address.
    LI_RECLIST-REC_TYPE = 'U'.
    LI_RECLIST-EXPRESS  = 'X'.
    APPEND LI_RECLIST.
    CLEAR LI_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA              = LS_DOC_CHNG
        PUT_IN_OUTBOX              = 'X'
      TABLES
        PACKING_LIST               = LI_OBJPACK
        OBJECT_HEADER              = LI_OBJHEAD
        CONTENTS_BIN               = GI_OUTPUT
        CONTENTS_TXT               = LI_OBJTXT
        RECEIVERS                  = LI_RECLIST
      EXCEPTIONS
        TOO_MANY_RECEIVERS         = 1
        DOCUMENT_NOT_SENT          = 2
        OPERATION_NO_AUTHORIZATION = 4
        OTHERS                     = 99.
    BREAK PANAKAPALLY.
    SUBMIT RSCONN01 WITH MODE   EQ 'INT'
                    WITH OUTPUT EQ SPACE
                     AND RETURN.
    COMMIT WORK AND WAIT.
    CASE SY-SUBRC.
      WHEN 0.
        LOOP AT LI_RECLIST.
          IF LI_RECLIST-RETRN_CODE = 0.
            MESSAGE S000(Z1) WITH 'The document was sent'.
          ELSE.
            MESSAGE S000(Z1) WITH 'The document could not be sent'.
          ENDIF.
        ENDLOOP.
      WHEN 1.
        MESSAGE S000(Z1) WITH 'No authorization for sending'
                              'to the specified number'
                             'of recipients'.
      WHEN 2.
        MESSAGE S000(Z1) WITH 'Document could not be'
                               'sent to any recipient'.
      WHEN 4.
        MESSAGE S000(Z1) WITH 'No send authorization'.
      WHEN OTHERS.
        MESSAGE S000(Z1) WITH 'Error occurred while sending'.
    ENDCASE.

  • Why is my iPhone 5 sending data over cellular while on wifi using Vodafone Germany?

    Hello,
    I know that this is a common mistake on verizon iphone 5. i have the same problem with my iPhone 5 in Germany. It keeps sending data over cellular while I am on wifi. The wifi connection itself works though, even when I turn off cellular data. So my wifi is not broken.
    Another thing that makes me curious is that my iPhone keeps sending data to somewhere and I don't know what it is sending. This led to the point that I reached my Monthly limit of 200mb within 2 days!!! And almost 95% of that was upstream. So I bought another 300mb and turned off cellular. Now I turned it back on and the megabytes are just running through. I thought it might be diagnosis and iCloud but I turned both off and it's still the Same way. Due to the enormous amount of data that is being sent the battery empties really really fast!! I was on a 20 minute car drive and my battery went down 23%!!! When I turn cellular off and use wifi it behaves completely normal.
    So this is really annoying me and I hope that Apple will fix this or one of you guys can help me.
    Best regards from Germany,
    Sitham

    You may have a problem with your WiFi network if your iPhone can't stay connected to it.
    If you are having WiFi problems it is necessary to isolate whether the problem is with your network or your iPhone. Note: Do NOT consider your network to be blameless if some other devices can connect to it.
    First, test your iPhone on some other networks: a friend's, Starbucks, Barnes & Noble, etc.
    If it works well there then the problem is with your network. Try restarting your router by removing power for 30 seconds. If that does not help check for a firmware update for your router. If none exists which corrects the problem consider replacing the router.
    If your iPhone does not function well on other networks it possibly has a hardware problem. Contact Apple Support or visit an Apple store for evaluation. They can provide a replacement if your iPhone is bad.
    If you need more help please give the make, model, and version of your WiFi router and how you have it configured.

  • How can I allow a sub-vi to run independent of the main program once it has been called while still sending data to the sub-vi

    I have a main program where I call a sub-vi. In this sub-vi, there is a while loop that is used to wait for commands in the sub-vi. While the while loop is running, I cannot continue with normal operation of the main program. I would like get the sub-vi to run independently once it has been called, but not hold up the main program. As well, I need to still be able to send data to the sub-vi

    One way is to use VI Server, which has been mentioned by others. This will allow you to start another VI (by name) and run it entirely independently of the calling VI. This is a good way to start various independent VIs from a main menu, for example. None of the VIs thus called need have any connection to the others.
    Another way it to have the SubVI in a separate while loop on the calling VI's BD. Then, use a local var to start this sub VI from the main loop. The calling VI sets a local START bit and continues running. The sub VI's while loop watches for this START bit to go true, and then runs the Sub VI. The advantage here is that one can more easily pass arguments to the SubVI when it is started, using local vars, which are preferable to globals. Once the Su
    bVI is running, however, you must use a global Stop Bit, set in the calling VI, to stop it when the calling VI exits, or the calling VI will hang up, waiting for the Sub VI to close and exit its while loop.
    If you need an example of this, email me. ([email protected]). I can also recommend Gary W. Johnson's excellent book which discusses this. ("LabVIEW Graphical Programming", 2nd Ed).
    Note: Where possible, I try to call a subvi from within the main VI, wait till it is done, then continue. It avoids the use of locals & globals, and results in cleaner code, with fewer "race" conditions. However, the main VI stops until the subVI is done, hence one should make the subVI modal.

  • Error While Sending Data for Currency Translation

    Hello Experts,
    I am trying to send data via template. Data is getting saved but I am getting following error displayed.
    1.) When I try to enter data for a particular month then, error as FX-200.
    2.) When I try to enter data accross months of more than year then , FX-045 and FX-310 error.
    I had look on various SAP Notes available for the errors.
    As per them, I ran Full optimization, I checked rates are maintained for previous year too, I checked for LC Currency Type Property is maintained as L.
    But nothing Worked.
    Currently only the 3 members are maintained in Rate Dimension, so exceeding the size limit cannot be an issue.
    Kindly Suggest, what could be another possible reason for the errors.
    Regards,
    Apoorva Garg

    Hello,
    1.)  I am getting issues  for example for 2010.Mar, 2010.Dec, 2013.Dec, 2012.Dec
    2.)  Business Rules Maintained
    3.) Business Rule called via Default Script Logic
    // Default base level logic - applies to all base members in all dimensions
    *INCLUDE system_constants.lgl
    //Process_Each_Member = TIME
    *RUN_STORED_PROCEDURE=SPRUNCONVERSION('%APP%','KPI_Working_Act_FX','','GLOBAL','%SCOPETABLE%','%LOGTABLE%')
    *COMMIT
    //*RUN_STORED_PROCEDURE=SPRUNCONVERSION('%APP%','KPI_Working_AOP_FX','','GLOBAL','%SCOPETABLE%','%LOGTABLE%')
    //*COMMIT
    Regards,
    Apoorva

  • JDBC send data to oracle, oracle only accept column name in Upper case

    Hi experts,
    I am doing a scenario File --> XI --> JDBC,  JDBC send data to a Oracle 10g database, I have configured JDBC receiver to use XML-SQL format. in oracle database ,  table "EMPLOYEE" has a column "NAME", but when I send data to oracle using JDBC receiver, the column is "name", then XI complains
    " 'EMPLOYEE' (structure 'insert'): java.sql.SQLException: FATAL ERROR: Column 'name' does not exist in table 'EMPLOYEE'.
    can anyone help me to let oracle accpet column "name". I can't change colum in JDBC receiver from "name" to "NAME".
    Thanks a lot.

    <i>can anyone help me to let oracle accpet column "name"</i>
    Making Oracle case insensitive is not possible (in my opinion). By default all object names are stored in UPPER case in the rdbms dictionary.
    When XI searches for column name in Oracle, this search is case sensitive. So u have to configure accordingly.
    Regards,
    Prateek

  • I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sending data to Message borker.(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to save file in SAP fold

    I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sends data to Message borker(thru JMS channel).(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to create file with same data what ever send to Message broker and put the file in SAP folder without touching mapping. Is it possible? Please advise with the steps. We are using the ICO for this senario. Quick response is appriciated.

    Hi Pratik,
         http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42?quicklink=index&overridelayout=true
    This link might help.
    regards
    Anupam

  • Sender sending data through XML, How to process it in ECC (No PI involve)?

    Hi,
    The sender system sending data through XML tag and that need to be processed in SAP side.
    How it can be done without involving XI or IDoc?
    Is it possible through HTTP post?
    Sample XML Transactions
    1. SAP Availability Transaction (Request)
    <?xml version="1.0" standalone="yes"?>
    <ECCAVAILREQUEST>
    <AVAILTEXT>CHK STATUS</AVAILTEXT>
    </ECCAVAILREQUEST>
    2. SAP Availability Transaction (Response)
    <?xml version="1.0" standalone="yes"?>
    <ECCAVAILRESPONSE>
    <AVAILTEXT>OK</AVAILTEXT>
    </ECCAVAILRESPONSE>
    3. DUMMY_SYSTEM PO Transaction (Request)
    <?xml version="1.0" standalone="yes"?>
    <DUMMY_SYSTEM REQUEST>
    <CREATEPB>1</CREATEPB>
    <POORDERDATA>
    05607015156070151TORDAEHTWW05727500002D0979054+
    </POORDERDATA>
    4. DUMMY_SYSTEM Order/Inquiry Transaction (Response)
    <DUMMY_SYSTEM RESPONSE>
    <C_PO>99999</C_PO>
    <RETURNDATA>
    DAT&#13;&#10;
    </RETURNDATA>
    </DUMMY_SYSTEM RESPONSE>

    Hi,
    check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/21/e9c97ceb1911d6b2ea00508b6b8a93/content.htm
    this is for processing inbound IDOc through XML-HTTP(Inbound) port
    like this there should be an option for reading files placed by HTTP_POST.
    in SICF transaction there should be a service to do that.
    defaulthost -> sap-> xi-> adapter_plain. i know you don't have XI in your landscape but this is the component which be responsble for receving messages over HTTP_POST.
    look for a program which can access messages from there.
    please check with your basis team
    Suresh

  • Errors in sending data - maybe a bug

    Hi, everybody. I was trying o create a program with 2 scokets, lets say socket A and socketB. The principle of this program was whatever socketA receives is beeing send through socketb and vis versa. I had creted a routine for sendind data like that:
    public int SendData(String s){
    try{         
         out.print(s); //this is a printwriter
    out.flush();
    }catch(Exception e){
    System.out.println("Error in sending data"+ e.toString());
    return -1;
    return 0;
    The strange thing was that, using a network sniffer I realised that sometimes my socket was sending characters that weren't in the string s, more precisly it was the character with hex value c2 . When I made the following modification the program worked correctly
    public int SendData(String s){
    try{         
         for(int i=0;i <s.length() ;i++)
              out.write((int)(s.charAt(i))); //now out is an OututSream and not a PrintWriter
    }catch(Exception e){
    System.out.println("Error in sending data"+ e.toString());
    return -1;
    return 0;
    Maybe can anybody explain why was this happening? I am curious to hear your opinion!
    My java -version result is:
    java version "1.5.0-beta"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
    Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)

    I'm not sure what you need to do. If you want to send and receive binary data, read and write bytes (or there are other ways, e.g. DataOutputStream).
    If you want / need to send Unicode text, a PrintWriter / OutputStreamWriter and InputStreamReader will convert Unicode to & from e.g. utf-8. Or you can use String.getBytes() and new String(s, "utf-8") to convert:
    public class t
        public static void main(String args[])
            throws Exception
            String s = "ab\u00a2\03c0";
            System.out.println("string: " + s);
            byte bytes[] = s.getBytes("utf-8");
            System.out.println("bytes: " + toString(bytes));
            String decoded = new String(bytes, "utf-8");
            System.out.println("decoded: " + decoded);
        static String toString(byte b[])
            StringBuffer buf = new StringBuffer();
            for (int n = 0; n < b.length; n++) {
                if (n != 0)
                    buf.append(", ");
                buf.append(Integer.toHexString(b[n] & 0xff));
            return buf.toString();
    }I'd probably use String.getBytes() instead of PrintWriter; that allows mixing text and non-text data.
    Ok, quite possibly Unicode is overkill for you, and you'll be fine with the 8-bit subset. Depends on how "serious" your application is, and how likely it will need to process e.g. Cyrillic, Greek or Chinese text.
    For performance, you may want buffered streams and a StringBuffer instead of string concatenation to create strings.

  • Setting maximum packet size in JDBC driver to send data to database

    Could someone tell me how I can set the JDBC connection property of maximum packet size to send data to database?
    Regards
    Rashed

    Hi thanks....I'm having this strange SQLException while trying to insert BLOB image data to Oracle database. I'm saying this strange because for the same image that has been inserted before it's throwing the exception. My program is run from Oracle form and then some image data are inserted into database through a loop. I can't realize what's the problem inside my code that's causing this problem. In fact, when I run my program independently not from Oracle Form, it runs fine, every image data get inserted into database. Given below is my code snippet:
    public void insertAccDocs(String[] accessions) throws SQLException
        for(int q=0; q<accessions.length; q++)
        final String  docName = accessions[q];
        dbThread = new Thread(new Runnable(){
        public void run()
          try{
          System.out.println("insertDB before connection");
                   getConnected();
                   System.out.println("insertDB after connection");
                   st=con.createStatement();
             //String docName = acc; commented
         // String docName = singleAccession;
                   String text = formatFree;
                   String qry = "INSERT INTO DOCUMENT VALUES
    ('"+docName+"','"+text+"','"+formatted+"','"+uiid+"')";
                   System.out.println("parentqry"+qry);
                   int ok=0;
                   ok=st.executeUpdate(qry);
                   if(ok==1)
                System.out.println("INSERTION SUCCESS= "+ok);
                        System.out.println("Image List Size"+ imgList.size());
                // inserting into child
                        for(int i=0;i<imgList.size(); i++)
                      String imgPath = ""+imgList.get(i);
                                  System.out.println("db"+imgPath);
                                  FileInputStream fin = new FileInputStream(imgPath);
                                  BufferedInputStream bufStr = new BufferedInputStream(fin);
                                  byte[] imgByte = new byte[bufStr.available()];
                                  String img = "" + imgNameList.get(i);
                                  System.out.println("imgid="+i);
                callable = con.prepareCall("{call prc_insert_docimage(?,?,?)}");
                callable.setString(1,docName);
                            callable.setString(2,img);
                callable.setBinaryStream(3, bufStr , (int)imgByte.length);
                callable.execute();
            callable.close();
                     con.commit();
            con.close();
                   else
                        System.out.println("INSERTION NOT SUCCESS");
       //   } //else end of severalAcc
                   }catch(Exception err){ //try
                        System.out.println(err.toString());
        } //run
      }); //runnable
      dbThread.start();     
    }And the exception thrown is :
    java.sql.SQLException: Data size bigger than max size for this type: #####
    Please let me know if possible how I can get around this.
    Regards
    Rashed

  • Error when sending data request

    Hi All,
       i have scheduled info package for different type data sources in bi 7.0, for this i am getting the data from  ecc 6.0 . all of this schedule's showing  the status "error when sending data request" with the following details.
    status
    diagnosis
    the request idoc could not be sent to the source system using rfc
    system response
    there is an idoc in the warehouse outbox that did not arrive in the ale inbox of the source system
      in step by step analysis it is showing
       rfc to source system successful showing with ash status
       data selection successfully stated  and finished ? show with red status
    in that details tab
    request : showing with green status
    everything ok
    extraction :showing with red status
    missing messages
    transfer(idocs and trfc) : missing messeges
    processing(data packet) : no data
        it is showing technical status with red as processing overdue
                           processing step call to source system
       so it is showing error with 0 from 0 records.
    please any body could help me for solving this error.
    regards,
    naveen.

    Hi
    Seems you have connectivity issues between the Source system and Bi system.
    You need to check whether you have data on R/3 side via RSA3 with Full / Delta Update Modes with Target System as your BI system.
    RSA13--Source System -- Right click Connection parameters/check/Restore/Activate again Say Replicate All Data Sources (If Possible , provided if you have time because it consumes lot of time )
    You need to check the tRFC Queue SM58/59 for any Stucks and WE19/20 for IDocs.
    Much of BASIS Issue .
    Hope it helps and clear

  • JMS Adapter: Sending data with WebSphere MQ Client to XI

    Hi,
    I want to send data from the WebSphere MQ Client to the XI. Is this possible and what do I have to do except configuring the JMS queues in Visual admin?
    Thanks in advance
    Dominic

    hi
    xi jms adapter will read/write data frm queue.
    but u want to access the jms queues in XI WAS frm ur MQ client
    ..will hv to access it directly frm ur client
    chk this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/604e2b64-e689-2910-64b3-ffd650f83756
    rgds
    arun

  • How to send data back to publishing stream

    Hi,
    Environment: ActionScript3.0, FMS, Flash Project created in Flash Develop
    How to send data back to publishing stream? I need to send data back to publishing stream.
    Using NetStream.send() we can send data to subscribers but is it possible to send data from subscriber back to publisher using any NetStream method.
    One other solution to this is remoteSharedObject, but if it is possible with NetStream class then let me know.
    Thanks

    There are a number of ways to extract data from CRM On Demand including:
    * Export - manual process, generate CSV file containing CRM On Demand data
    * List/Analytics - manual process, export the contents of a report of list to a CSV
    * Web Services - programmatic, develop an application that queries for data within CRMOD
    * Integration Events - programmatic, use workflow to trigger event creation and then poll for events to know when an operation occurs on a record (i.e. Insert of new Account record)
    As for getting that data into another system, that will depend on the system and the methods available for inserting data that it makes available.
    Hope this helps.
    Thanks,
    Sean

Maybe you are looking for

  • HT4847 can't reduce the size of my iCloud mail

    hi I got an email from I cloud saying that my 25gb free storage becomes 5gb in a few days and did I want to buy more space as I have more than 5gb used I did not think I was using any so had a look and sure enougth I have 5.3 gb of email on it I have

  • Problems with ordering my photobook made in iPhoto

    I made a photobook and now I want to buy it BUT first they said my password from apple ID wasn't correct, I changed it, and now they say my apple ID isn't available? Anyone the same problem? Anyone the solution? Grtz Gwen

  • Is Adobe reader v2.5(202) on E72 FW 54.005 == adob...

    its strange problem i see with upgradation of FW to 54.005 on E72. though adobe reader got updated to v2.5(202) absolutely there is no functional improvement from v1.5 except showing version as 2.5 in about menu and starting screen is this problem th

  • Can't get Finder to open a window

    I can't get Finder to open a window when I click it in the dock when there are no windows already open. Applications will launch from the dock and I can open a window by double-clicking the hard drive icon on the desktop. I also cannot get a window t

  • Can I print from my iPad mini?

    I'm trying to determine if wireless printing is a possibility with my iPad mini. Has anyone tried or been successful with this?