How to create a universe on excel sheet

hi,
i am trying to create a universe on four excel sheets.
so in designer i clicked on new .
i gave the universe name  not it is asking for coonection parameters  i selected spreadsheet and odbc connection .
but  i am getting connection failed.
can any tell me how to give connection parameters to excel so that i can access the excel files

Hello Venkat,
I would check this forum thread... how to create universe on excel sheet - I believe it may answer your questions. 
I would also suggest reading the product guide for Universe Designer.  You can find this at http://support.businessobjects.com.  Path.. Documentation > Product Guides > Select 'Universe Designer' as Product and find relevant release.
Regards,
Tanner Spaulding

Similar Messages

  • How to create a Universe with excel?

    I want to create a universe using excel, but I don't know if it is possible.
    If it is possible should I save the excel file in an specific folder? where? 
    Is it possible to create WebI reports using this universe?
    Edited by: PadawanGirl on Jan 31, 2011 7:53 PM

    Hi Padawan,
    Creating a Business Objects Universe from an Excel File
    To create an Example Universe, we will first Extract data in a BusinessObjects report and
    save it to Excel. Letu2019s create a new Document from the Island Resort Marketing
    universe, and include All of the Resort attributes and Revenue.
    Generate a New Report from a Universe
    Generate a Standard Report
    Creating a Business Objects Universe from an Excel File
    Choose Island Resorts Marketing.
    Choose all of the Resort class, and the <Revenue> Measure object.
    Creating a Business Objects Universe from an Excel File
    Depending on your preference here, you can either choose Edit > Copy All or you can
    edit the Data Provider to export the results of this query to Excel.
    I like to use the Data Provider method, since this allows me to specify a path, etc. If you
    have used copy/paste, you will have one extra step that will be described, but not
    demonstrated.
    Export to Local File Format and make sure that the Format is listed as: Microsoft
    Excel 97 Files (*.xls). You may even want to Change the Path, or Rename the file at the
    Name line, or Browseu2026 to a new path.
    Creating a Business Objects Universe from an Excel File
    Once the Export has completed, launch Excel and browse open the file that was just
    created. If you have Copied/Pasted the values, then you should already be at the next
    step.
    If you havenu2019t done this already, browse over the Resorts.xls file and open it. If you
    have used Copy/Paste, just bring Excel to the foreground.
    Creating a Business Objects Universe from an Excel File
    Select all of the data. If you Copy/Pasted, make sure that you delete the Header that
    copied as well. With all of the data selected, make sure the range has a name. You will
    need to enter a name if youu2019ve pasted this, otherwise it should match the Filename minus
    the .xls. Save this if youu2019ve made any changes, or created this from scratch.
    Jump to the BusinessObjects Designer module and create a New Universe. Iu2019ve named
    my Universe: Resort Revenue
    Creating a Business Objects Universe from an Excel File
    Create a new Connection, and choose ODBC Drivers.
    Iu2019ve named my connection: Resorts_xls and chosen Generic ODBC Datasource for my
    Database engine. Click on the ODBC Admin button.
    Add a new System or User DSN. If you want this available for anyone on your machine,
    System DSN is the better bet. Select the appropriate tab and hit Addu2026
    Creating a Business Objects Universe from an Excel File
    Choose the Microsoft Excel Driver (*.xls) from the list of available data source drivers.
    Name the Data Source Name something that is meaningful, as it will be what appears in
    the Drop-Down menu. I named it Resorts.xls File and next weu2019ll choose Select
    Workbooku2026 and browse to the location of our Resorts.xls file.
    Unless youu2019ve changed the location, it should be located under:
    C:/Program Files/Business Objects/Business Objects 5.0/UserDocs/
    Select the XLS file and click u201COKu201D
    Creating a Business Objects Universe from an Excel File
    Verify that the path is set for the Workbook and click u201COKu201D
    You should see the new DSN created with the name of your Choosing. (In my case, itu2019s
    Resorts.xls File.) Go ahead and click u201COKu201D
    Back in the Designer Module, Choose the Resorts.xls File from the Data Source Name:
    drop-down list, and click u201COKu201D
    Creating a Business Objects Universe from an Excel File
    Once the connection has been set, click u201COKu201D and weu2019ll get to Universe Building.
    Double-Click in the Schema area in the designer, or use the Table Browser to add the
    Resorts table (named-range). Once they are added, feel free to move them over to create
    Classes and Objects off this table as well.
    Creating a Business Objects Universe from an Excel File
    Iu2019ve modified the SQL of the Revenue object, to turn this into an aggregate. Set the
    formula to: Sum(Resorts.Revenue) and click OK.
    My Final Universe looks like the above. Once this Universe is created, Save it and
    launch the Business Objects Reporter module.
    Creating a Business Objects Universe from an Excel File
    Select the newly created Resort Revenue universe and choose the objects youu2019d like to
    report on.
    Iu2019ve selected the <Country>, <Resort> and <Revenue> objects.
    Here are my final resultsu2026
    All the best.
    Praveen

  • How to create P.O using excel sheet through BAPI

    Dear All,
    I have to upload and create P.O from an excel file saved locally on the system.
    I want to use BAPI for it.
    Can anyone help me in the procedure?
    Thanks.

    example:-
    data:
    header like BAPIMEPOHEADER,
    headerx like BAPIMEPOHEADERX,
    it_item like standard table of BAPIMEPOITEM,
    it_itemx like standard table of BAPIMEPOITEMX,
    return like standard table of BAPIRET2,
    wa_item like BAPIMEPOITEM,
    wa_itemx like BAPIMEPOITEMX,
    p_int type i,
    p_matnr like mara-matnr,
    p_pono like ekko-ebeln.
    DATA: BEGIN OF BAPIRETURN OCCURS 0.
            INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF BAPIRETURN.
    constants:
    c_x type c value 'X'.
    header-comp_code = '3000'.
    header-doc_type = 'DP25'.
    header-creat_date = sy-datum.
    header-item_intvl = '10'.
    header-vendor = 'ARAMI-00'.
    header-langu = sy-langu.
    header-pmnttrms = '0001'.
    header-purch_org = '3000'.
    header-pur_group = '010'.
    header-currency = 'USD'.
    headerx-comp_code = c_x.
    headerx-doc_type = c_x.
    headerx-creat_date = c_x.
    headerx-item_intvl = c_x .
    headerx-vendor = c_x.
    headerx-langu = c_x.
    headerx-pmnttrms = c_x .
    headerx-purch_org = c_x.
    headerx-pur_group = c_x.
    p_int = p_int + 10.
    wa_item-po_item = p_int.
    p_matnr = 'T-SRM01'.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = p_matnr
    IMPORTING
    output = p_matnr
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    wa_item-material = p_matnr.
    wa_item-plant = '3200'.
    wa_item-quantity = 100.
    wa_item-conf_ctrl = 'Z01'.
    wa_item-ACKN_REQD = 'X'.
    WA_ITEM-ERS = ''.
    APPEND wa_item TO it_item.
    wa_itemx-po_item = p_int.
    wa_itemx-material = c_x.
    wa_itemx-plant = c_x .
    wa_itemx-stge_loc = c_x .
    wa_itemx-quantity = c_x .
    wa_itemx-item_cat = c_x .
    wa_itemx-acctasscat = c_x .
    wa_itemx-conf_ctrl = 'X'.
    wa_itemx-ACKN_REQD = 'X'.
    WA_ITEMX-ERS = 'X'.
    APPEND wa_itemx TO it_itemx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    poheader = header
    poheaderx = headerx
    IMPORTING
    exppurchaseorder = p_pono
    TABLES
    return = return
    poitem = it_item
    poitemx = it_itemx.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
               EXPORTING
                    WAIT   = 'X'
               IMPORTING
                    RETURN = BAPIRETURN.
    write:/ p_pono.

  • When Creating a universe using excel, universe is blank.

    Hi,
    I want to create a universe using excel sheet, my server is 64bit windows, and business objects is 3.1 SP 3 FP 2.6,
    I created an ODBC connection; these are the steps I followed
    1)  I Navigated to C:, windows, syswow64 and ran the application odbcad32
    (Windows server 2008 64 bit) and created a ODBC connection using a Excel sheet 2003.
    2) Then i did the following change
    <Parameter Name="Transactional Available">No</Parameter> is set to Yes under the Generic ODBC Data Source in below location
    ...\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dataAccess\connectionServer\odbc\odbc.sbo
    3) Then went to universe created connection using under database middle ware as microsoft -MS Excel 2003 - Odbc drivers- and selected the data source connection, test the connection server is working fine.
    4) i created a universe using the connection.
    But the problem is i canu2019t see the values, dimensions and measures in my universe it blank.
    Please help me to overcome the issue.
    Regards
    Aflal

    Hi,
    i went to table browser and created the universe, and exported it to the BO server, when i run the report in webi i am getting the following error.
    "Microsoft Odbc driver manager data source not found and no default driver specified"
    Please help.
    Regards
    Aflal

  • Universe created from a Ms Excel sheet --

    Hi Good Morning,
    I created One webi report in BO .Now i want to create a universe from MS Excel File .Please tell me step by step Process .
    Thanks In Advance
    Praveen Kumar Yagnamurthy.

    Please try the following steps to create a universe on excel file
    1. Open the Excel spreadsheet
    2. Select all the data values, make sure the remaining blank cells donu2019t get selected
    3. Click on Insert>>Name>>Define to give a name to the table
    4. Save the Excel
    5. Go to Start>>Control Panel>>Administrative tools>Data Sources(ODBC)
    6. Select System DSN>>Add>>Microsoft excel Driver(*.xls)
    7. Give a new data source name and click on Select workbook and point the saved excel sheet and click on OK
    8. Create a new connection in Universe designer by using the Generic ODBC connection
    9. Create a new universe and insert the table which we have defined in the Excel sheet
    Note:
    1. Make sure the parameter <Parameter Name="Transactional Available">No</Parameter> is set to Yes under the Generic ODBC data source in below location
    C:\Program Files\Business Objects\Business Objects Enterprise 11.5\win32_x86\dataAccess\connectionServer\odbc\odbc.sbo
    2. If you would like to export the excel universe to CMC try these steps on your BO server machine
    3. This workaround only works for windows server machine
    Regards
    Manoj Kumar

  • How to read the data in excel sheet

    Dear sir,
    How to read the data in excel sheet when i recieve a data serial communication... ie i have store a data in excel such that
    Cell A       Cell B
       A           Apple 
       B           Ball
       C           Cat
       D           Doll
    when i recieve A from serial communication i have to display Apple, and when i recieve B i have to display Ball and so on.. 

    Hi, 
    I would recommend you to have a look at the VI attached. It makes use of a VI named 'Read from Spreadsheet' to read the row and column data from the tab delimited excel file. The read data is then searched for the Alphabet specified and finally returns you the corresponding string. The test file used to validate the operation of the VI is also attached. 
    Trust this would help you solve the issue. 
    Regards, 
    Sagar G Yadav | Application Engineer | National Instruments
    Attachments:
    read_from_excel.vi ‏10 KB
    Book1.txt ‏1 KB

  • How to create custom member in excel BPC report?

    Hi Everyone,
    Hope you are doing good!!
    I have bit confusion on custom member and how to create custom member in excel bpc report.
    Can you please explain me on this with example.
    Thanks,
    Amit

    Hi Amit,
    Take look at below thread might be helpful for you.
    Refer page no 206
    https://help.sap.com/businessobject/product_guides/boeo10/en/EPMofc_10_user_en.pdf
    and
    Best Practices For Reporting Against SAP Business Planning and Consolidation (Powered by SAP HANA), utilizing the EPM Ad…
    Hope this will help you

  • How to download internal table to excel sheet

    I have a requirement to download nearly 8 to 10 internal tables to excel sheets(for each internal table one excel sheet) without displaying the diolog box showing open and save buttons.
    scenario :
      I will enter the path name like this -   C:\myfolder\Custom_programs.xls.
                                                            C:\myfolder\Custom_tables.xls.
                                                            (File name does not exit..it has to created inside the    
                                                                specified folder)
      in submit button I populate 2 internal tables say it1 and it2. then I need to move the tables contents to the path I have specified above.
    attach_file_to_response method is not working for the above reqt since it is showing the dialog box.
    Please provide a suitable solution...

    Please ignore all the responders that are stating that you can use GUI_DOWNLOAD from Web Dynpro ABAP.  As you found out, this absolutely will not work, since this function module and other download logic like it depends upon a connection to the SAPGUI. People posting to use the GUI_DOWNLOAD from WDA need to learn a little more about the architecture of WDA before they go posting incorrect repsonses in the forum. I have little tollerance for people posting outright incorrect information in the WDA Forum.
    What you want to do - download silent - is not easily done from WDA.  There are rules about how web applications must behave in a browser.  Normal HTML/JavaScript does not allow silent downloads for security reasons.  Obviously there are many untrustworthy websites on the internet that you wouldn't want to allow to directly access your local machine.  WDA must live within these same browser limitations.
    SAP has done some work using a Java Applet to get around some of these security issues.  This funcitonality comes in NetWeaver 7.01.  It is the AcfUpDownload UI element:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/b9157c878a2d67e10000000a42189c/frameset.htm
    However it is designer for usage with the Content or KPro server - so even it might not meet your needs.

  • How can i download data in excel sheet .

    Hi all
    My Requirement : In a selection screen after giving a VBELN,It will show all the related data from VBRP table through alv  . There are a customize icon ,after clicking the icon it will download all fetched data .
    Can any one help me .how can i download the fetched data through excel ?
    Regards
    Rajesh .

    Hi Rajesh,
    I understood your requirement as from ALV you want to download the data to an Excel sheet.
    In standard ALVs, you need to do this
    In other cases like Z programs etc, often Icon is provided  (as you said) like this
    You need to select Local File option here as shown below
    In both case you will get this pop-up
    Now when you continue you will get SAVE dialog-box, where you can give a name to your excel file and Save.
    Hope this is your query.
    Jogeswara Rao K

  • How can I download to one excel sheet from more than two table?

    Hi.
    as you know
    <SAP_BW_URL CMD='EXPORT' FORMAT='XLS' DATA_PROVIDER='DATAPROVIDER_T1' >
    this script can make download excel sheet which is same cotents of table or chart in web template.
    but if template has more than two tables how can we get excel sheet from tables?
    <SAP_BW_URL CMD='EXPORT' FORMAT='XLS' DATA_PROVIDER_1='DATAPROVIDER_T1' DATA_PROVIDER_2='DATAPROVIDER_T2'>
    I hope this gonna work but result was fail same as I expected.
    is there any way put two tables download one excel sheet?

    Welcome to SDN.
    Post this in Business Explorer forum for quicker resposne.
    SAP Business Explorer (SAP BEx)
    Regards
    Raja

  • How to convert PDF image to excel sheet

    Hi,
        I am trying to convert the PDF image /Text file to Excel sheet then I need to use that data for my reports
    Can you please let me know
    1) How I can convert the PDF into a excel sheet
    2) Which s/w i need to use for that(adobe s/w)
    3) do need to purchse any other 3rd pary s/w to use this
    s/w - software
    PDF Image - scanned document in the image format
    Regards
    Shrinivas

    You need Acrobat Standard or Pro to convert the scanned image to readable text (OCR) and then save it as a Excel file (if Acrobat recognizes that it's a table, which I doubt it will). Maybe there are some 3rd party plugins that can help you further.

  • How to send huge no. of excel sheet attachment to a mail ID

    HI ,
            I have mail functionality program which send mail to a mail id with multiple excel sheet attchment. I have done all these things.  When it sends small number of excel attchment  then it's ok. But when  it sends huge number of excel attchment (ex.- 1000 excel attchment) then it showing error message to the mail  id -
       'This message is larger than the size limit for messages. Please make it smaller and try sending it again.'
    I have used cl_bcs, cl_document_bcs these class. I have seen all related post in sdn but unable to get my requirement.
    i need your suggestion.

    Hi,
    Try this code::
    FORM MAIL_SEND .
      *Mail Body
      MOVE text-004 TO wa_text.  "Space
      APPEND wa_text TO wt_text.
      CLEAR wa_text.
      MOVE TEXT-003 TO wa_text.
      APPEND wa_text TO wt_text.
      CLEAR wa_text.
      MOVE text-005 TO wa_text.
      APPEND wa_text TO wt_text.
      CLEAR wa_text.
      MOVE TEXT-003 TO wa_text.
      APPEND wa_text TO wt_text.
      CLEAR wa_text.
      MOVE text-011 TO wa_text.
      APPEND wa_text TO wt_text.
      CLEAR wa_text.
      tl_contents[] = wt_text.
      TRY.
        TRY.
    **-- Create persistent send request
          l_send_request = cl_bcs=>create_persistent( ).
          CATCH CX_SEND_REQ_BCS.
       ENDTRY.
    *-- Get the length of the Document
          DESCRIBE TABLE tl_contents LINES l_cnt.
          READ TABLE tl_contents INTO wa_contents INDEX l_cnt.
          l_doc_len = ( l_cnt - 1 ) * 255 + STRLEN( wa_contents ).
    *-- Subject of the mail
          l_sub = 'TEST1'.
          I_SUBJECT = 'BP assignment report for Credit analyst and CrSeg'.
    **-- Create Document
          l_document = cl_document_bcs=>create_document(
                 i_type       = c_htm
                 i_text       = tl_contents
                 i_length     = l_doc_len
                 i_subject    = I_SUBJECT "'BP assignment report for Credit analyst and CrSeg
                 i_language   = sy-langu
                 i_importance = '1' ).
        CATCH CX_DOCUMENT_BCS.
    **-- Subject of the mail
          MOVE l_sub TO l_subj.
      ENDTRY.
      TRY.
    *-- Set the Message Subject
          CALL METHOD l_send_request->set_message_subject
            EXPORTING
              ip_subject = l_subj.
        CATCH CX_SEND_REQ_BCS.
      ENDTRY.
    **-- Add document to send request
      try.
          CALL METHOD l_send_request->set_document( l_document ).
        CATCH CX_SEND_REQ_BCS.
      endtry.
      CALL FUNCTION 'SPLIT_FILENAME'
        EXPORTING
          long_filename  = 'C:\BP_DETAILS.XLS'
        IMPORTING
          pure_filename  = p_name
          pure_extension = p_ext.
      TRANSLATE p_ext TO UPPER CASE.
      elpath = 'C:\BP_DETAILS.XLS'.
    *Upload the file
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = elpath
          filetype                = 'BIN'
        TABLES
          data_tab                = t_ann
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      try.
          IF t_ann[] IS NOT INITIAL.
    *-- File name of the Attachment
            l_subject  = p_name.
    *-- Extension of the Attachment
            l_att_type = p_ext.
            TRY.
                w_document = l_document.
    *-- Add Attachment to the Document
                CALL METHOD L_document->add_attachment
                  EXPORTING
                    i_attachment_type    = l_att_type
                    i_attachment_subject = l_subject
                    i_att_content_hex    = t_ann. "t_mailhex.
              CATCH cx_document_bcs.
            ENDTRY.
          ENDIF.
    *-- Do send delivery info for successful mails
          lv_msg = 'E'.
          CALL METHOD l_send_request->set_status_attributes
            EXPORTING
              i_requested_status = lv_msg  "Error status
              i_status_mail      = lv_msg. "Error status
          TRY.
              send_request = l_send_request->send_request.
            CATCH cx_bcs.
          ENDTRY.
    set outbox flag
          TRY.
              CALL METHOD send_request->set_link_to_outbox( 'X' ).
            CATCH cx_bcs.
          ENDTRY.
    request error status
          TRY.
              CALL METHOD send_request->setu_requested_status( req_stat ).
            CATCH cx_bcs INTO l_bcs_exception.
          ENDTRY.
    *-- Set sender
          l_sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD l_send_request->set_sender
            EXPORTING
              i_sender = l_sender.
          gs_mail-e_mail = 'mail ID1'.
          APPEND gs_mail TO gt_mail.
          CLEAR gs_mail.
          gs_mail-e_mail = 'mail ID2'.
          APPEND gs_mail TO gt_mail.
          CLEAR gs_mail.
          gs_mail-e_mail = 'mail ID3'.
          APPEND gs_mail TO gt_mail.
          CLEAR gs_mail.
          loop at gt_mail into gs_mail.
            try.
                l_recipient = cl_cam_address_bcs=>create_internet_address(
                                                                    gs_mail-e_mail ).
              catch cx_address_bcs.
            endtry.
            CALL METHOD l_send_request->add_recipient
              EXPORTING
                i_recipient = l_recipient
               i_express   = 'X'
                i_copy      = 'X'.
          endloop.
    *-- Send Email
          CALL METHOD l_send_request->send(
              EXPORTING
                i_with_error_screen = 'X'
              RECEIVING
                result              = l_result ).
        CATCH cx_bcs INTO l_bcs_exception.
      ENDTRY.
      COMMIT WORK.
    ENDFORM.
    Thanks

  • ODI : how to publish data in an excel sheet

    hello every one!
    need your suggestions.
    On executing a procedure or a package in ODI ,i want to publish the output on an excel sheet .
    how do i do that?
    kindly suggest.

    Dear sutirtha thanks for your fast response .
    i was looking for the method that is to be followed for a job run in ODI through a procedure or may be through a package which can give us the output of that particular job run on an excel sheet.
    for eg:
    suppose i have a package named 'scheduled_1' which run on daily basis @ 5 AM and after its successfull execution it sends an email to a particular email id.
    now it is expected to send the whole of the output of the executed table/job to an excel sheet to an emailid.
    it would be like redirecting the output to an excel sheet .
    the emailing thing is known to me but how do i carry out the capturing of records in an excel sheet & then emailg it to the emailid.
    thanks
    sonia.

  • How to add an image in Excel sheet

    hi,
    I cannot add an image in excel sheet. i have used apache POI for writing data in excel sheet. But i cannot add an image in excel sheet.
    Please help me about this
    Thanks
    Bina

    From
    http://jakarta.apache.org/poi/hssf/quick-guide.html#Images
    Images are part of the drawing support. To add an image just call createPicture() on the drawing patriarch. At the time of writing the following types are supported:
    PNG
    JPG
    DIB
    It is not currently possible to read existing images and it should be noted that any existing drawings may be erased once you add a image to a sheet.
        // Create the drawing patriarch.  This is the top level container for
        // all shapes. This will clear out any existing shapes for that sheet.
        HSSFPatriarch patriarch = sheet5.createDrawingPatriarch();
        HSSFClientAnchor anchor;
        anchor = new HSSFClientAnchor(0,0,0,255,(short)2,2,(short)4,7);
        anchor.setAnchorType( 2 );
        patriarch.createPicture(anchor, loadPicture( "src/resources/logos/logoKarmokar4.png", wb ));

  • How to create a report in excel format having two tab

    Hi All,
    I have Business requirement where customer wants to create a report in excel format having two tab.
    Please let me know if it is possible?
    I am using 10.1.4.3.2 version of BIP.
    Thanks & Regards,
    Edited by: 862749 on May 20, 2013 7:36 PM

    I have Business requirement where customer wants to create a report in excel format having two tab.
    Can anybody suggest if it is possible in BI Publisher or not?yes
    look at excel template
    also you can use xsl-xml or xsl-fo template
    check it for your requirements

Maybe you are looking for

  • Skype hangs when I login with my ID

    Hi I have two skype accounts. One for office and one personal. Till yesterday I was able to use both. Today am able to login to skype using my office ID but when I login using my personal skype ID ([Removed for privacy]) skype stops responding. I am

  • On click at tree component it has to call SWF using XML

    Hi, I have created a flash file with name xmltoflash_tree. Incules a Tree component named "tree01". On my first frame of actions i have included "#include "test.as"". This is about my flash file In my Test.as : import mx.controls.Tree; var xmlLoader:

  • Background sound play goes stop when click the power button on ios.

    On AIR 3.9 the background task execution issue has been solved but when we click the power button on ios devices the background sound play goes stop until we unlock the device. So Dear Adobe Please fix this issue .

  • [solved] Office 2007 bin32-wine-suse Problems

    I installed bin32-wine-suse from the AUR and then installed Office 2007 per the wiki. I can run applications but I cannot move or resize windows. Any ideas? Last edited by rbn14 (2010-03-17 02:22:49)

  • IMac 2011 screen unexpectedly goes black (to sleep), won't wake

    I've been having an intermittent problem. I'm using an iMac (late 2011) with 10.7.3. I'm doing things on the computer or some process is going on when the screen instantly goes black (no dimming first). If a video was playing, I can still hear it pla