Flat file upload program is not working

Hi Experts,
I am using following code to upload a flat file from my local PC to SAP
The code is NOT inserting records in zassum, /bic/pzassum and /bic/tzassum. zassum is SAP BW infoobject. I have run debugger and found that data is getting populated correctly for ztable_data and ztable_text.
The program is getting compiled / activated successfully. I am even getting message " ZASSUM got updated successfully ". However the issue persists.
I am new for ABAP. I might have committed some mistake any where in the code.
Also  pls let me know whether statement  "PERFORM update_alv_grid_display" is really needed.
Thanks
Smith
FORM upload_batches.
  DATA : wf_title    TYPE string,
          lt_filetab  TYPE filetable,
          l_separator TYPE char01,
          l_action    TYPE i,
          l_count     TYPE i,
          ls_filetab  TYPE file_table,
          wf_delemt TYPE rollname,
          wa_fieldcat TYPE lvc_s_fcat,
          tb_fieldcat TYPE lvc_t_fcat,
          rows_read TYPE i,
          p_error   TYPE char01,
          l_file      TYPE string.
  TYPES : BEGIN OF test_struc,
           /bic/zassum TYPE  /bic/oizassum,
           txtmd   TYPE rstxtmd,
           END OF test_struc.
  DATA : test_upload TYPE STANDARD TABLE OF test_struc.
  DATA : wa_test_upload TYPE test_struc,
         ztable_data TYPE TABLE OF /bic/pzassum,
         ztable_text TYPE TABLE OF /bic/tzassum,
         wa_upld_text TYPE /bic/tzassum,
         wa_upld_data TYPE /bic/pzassum,
         wa_actbatch TYPE /bic/pzassum.
  wf_title = text-026.
  CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
      window_title            = wf_title
      default_extension       = 'txt'
      file_filter             = 'Tab delimited Text Files (*.txt)'
    CHANGING
      file_table              = lt_filetab
      rc                      = l_count
      user_action             = l_action
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      OTHERS                  = 3.                          "#EC NOTEXT
  IF sy-subrc <> 0.
    EXIT.
  ENDIF.
  LOOP AT lt_filetab INTO ls_filetab.
    l_file = ls_filetab.
  ENDLOOP.
  CHECK l_action = 0.
  IF l_file IS INITIAL.
    EXIT.
  ENDIF.
  l_separator = 'X'.
  wa_fieldcat-fieldname = 'test'.
  wa_fieldcat-dd_roll = wf_delemt.
  APPEND wa_fieldcat TO tb_fieldcat.
  CLEAR wa_test_upload.
Upload file from front-end (PC)
File format is tab-delimited ASCII
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = l_file
      has_field_separator     = l_separator
    TABLES
     data_tab                = i_mara
    data_tab                   = test_upload
    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.
    EXIT.
  ELSE.
    LOOP AT test_upload INTO wa_test_upload.
      CLEAR :  p_error.
      DESCRIBE TABLE test_upload LINES rows_read.
      IF wa_test_upload-/bic/zassum IS  INITIAL.
        p_error = 'X'.
        MESSAGE s153 WITH wa_test_upload-/bic/zassum sy-tabix.
        CONTINUE.
      ELSE.
        IF sy-subrc = 0.
        ENDIF.
      ENDIF.
      wa_upld_text-txtmd  = wa_test_upload-txtmd.
      wa_upld_text-txtsh  = wa_test_upload-txtmd.
      wa_upld_text-langu =  sy-langu.
      wa_upld_data-/bic/zassum = '11'.
      wa_upld_data-chrt_accts = 'abc'.
      wa_upld_data-co_area = '1234'.
      wa_upld_data-/bic/zbhpbcsg = 'uv'.
      wa_upld_data-objvers = 'A'.
      wa_upld_data-/bic/zass_mdl = 'pqr'.
      wa_upld_data-/bic/zass_typ = 'I'.
      wa_upld_data-/bic/zdriver = 'defg'.
      MOVE-CORRESPONDING wa_test_upload TO wa_upld_data.
      MOVE-CORRESPONDING wa_test_upload TO wa_upld_text.
      APPEND wa_upld_data TO ztable_data.
      APPEND wa_upld_text TO ztable_text.
    ENDLOOP.
    CALL FUNCTION 'MESSAGES_INITIALIZE'.
    IF ztable_data IS NOT INITIAL.
      CALL FUNCTION 'RSDMD_WRITE_ATTRIBUTES_TEXTS'
        EXPORTING
          i_iobjnm               = 'ZASSUM'
          i_tabclass             = 'M'
        TABLES
          i_t_table              = ztable_data
        EXCEPTIONS
          attribute_name_error   = 1
          iobj_not_found         = 2
          generate_program_error = 3
          OTHERS                 = 4.
      COMMIT WORK.
      IF sy-subrc <> 0.
        CALL FUNCTION 'MESSAGE_STORE'
          EXPORTING
            arbgb  = 'Zmy_prg'
            msgty  = 'E'
            txtnr  = '054'
            msgv1  = text-033
          EXCEPTIONS
            OTHERS = 3.
        CALL FUNCTION 'MESSAGE_STORE'
          EXPORTING
            arbgb  = sy-msgid
            msgty  = sy-msgty
            txtnr  = sy-msgno
            msgv1  = sy-msgv1
            msgv2  = sy-msgv2
            msgv3  = sy-msgv3
            msgv4  = sy-msgv4
          EXCEPTIONS
            OTHERS = 3.
        MESSAGE e054(z_myprg) WITH 'ZASSUM'.
      ELSE.
        CALL FUNCTION 'MESSAGE_STORE'
          EXPORTING
            arbgb  = 'Z_BM_BPS'
            msgty  = 'S'
            txtnr  = '053'
            msgv1  = text-033
          EXCEPTIONS
            OTHERS = 3.
        MESSAGE s053(z_myprg).
        IF ztable_text[] IS NOT INITIAL.
          CALL FUNCTION 'RSDMD_WRITE_ATTRIBUTES_TEXTS'
            EXPORTING
              i_iobjnm               = 'ZASSUM'
              i_tabclass             = 'T'
            TABLES
              i_t_table              = ztable_text
            EXCEPTIONS
              attribute_name_error   = 1
              iobj_not_found         = 2
              generate_program_error = 3
              OTHERS                 = 4.
          IF sy-subrc <> 0.
            CALL FUNCTION 'MESSAGE_STORE'
              EXPORTING
                arbgb  = 'Z_myprg'
                msgty  = 'E'
                txtnr  = '055'
                msgv1  = text-033
              EXCEPTIONS
                OTHERS = 3.
            CALL FUNCTION 'MESSAGE_STORE'
              EXPORTING
                arbgb  = sy-msgid
                msgty  = sy-msgty
                txtnr  = sy-msgno
                msgv1  = sy-msgv1
                msgv2  = sy-msgv2
                msgv3  = sy-msgv3
                msgv4  = sy-msgv4
              EXCEPTIONS
                OTHERS = 3.
          ENDIF.
        ENDIF.
      ENDIF.
      COMMIT WORK.
    ENDIF.
  ENDIF.
  CALL FUNCTION 'RSDG_IOBJ_DEQUEUE'
    EXPORTING
      i_objnm = 'ZASSUM'
      i_scope = '1'.
  PERFORM update_alv_grid_display.
  CALL FUNCTION 'MESSAGES_SHOW'.
ENDFORM. " upload_batches

.

Similar Messages

  • File upload with DAD not working

    Hi all,
    I have an application which uses the file upload function, similar to the sample http://otn.oracle.com/products/database/htmldb/howtos/howto_file_upload.html
    During the development I was not using a DAD and it was working perfectly. Now I have changed the application to use a DAD and now the file upload fails with a HTTP 404 - File not found error
    [DAD_din]
    connect_string = deccasm01os.na.decoma.com:1521:DIN
    ;password =
    ;username =
    ;default_page =
    document_table = wwv_flow_file_objects$
    document_path = docs
    document_proc = wwv_flow_file_mgr.process_download
    ;upload_as_long_raw =
    ;upload_as_blob =
    ;name_prefix =
    ;always_describe =
    ;after_proc =
    ;before_proc =
    reuse = Yes
    ;connmax =
    ;pathalias =
    ;pathaliasproc =
    enablesso = No
    ;sncookiename =
    stateful = STATELESS_RESET
    ;custom_auth =
    response_array_size = 128
    ;exclusion_list =
    ;cgi_env_list =
    bind_bucket_widths = 32,128,1450,2048,4000
    bind_bucket_lengths = 4,20,100,400
    ;error_style =
    ;nls_lang =
    BTW, it is on HTMLDB v1.6 on 9iDB (9.2.0.4)
    thx

    Rob,
    The File Browse item type does not require upload table WWV_FLOW_FILE_OBJECTS$. The POST for the File Browse item type is intercepted by modplsql and is inserted into the Document Table as defined by the Database Access Descriptor.
    You could ultimately create your own DAD with your own Document Table. The Document Table would have to contain the minimum definition as described at:
    http://download-west.oracle.com/docs/cd/B14099_03/web.1012/b14010/concept.htm#i1005880
    This way, users of the application using the Basic Database Authenticated DAD would be uploading directly into your table and not the HTML DB one. A word of caution, though, is that you would never want to use this DAD with HTML DB development itself...you would need to use the DAD that specifies upload into WWV_FLOW_FILE_OBJECTS$ for HTML DB development.
    I hope this helps.
    Joel

  • File upload custom renaming not working with {KT_ext}

    Hi,
    I used many times custom renaming with file upload, and used {KT_ext} for file's extension, but in first ADDT project is not working. I use this:
    $uploadObj->setRenameRule("{GET.id_cd}_{track}.{KT_ext}");
    Does anybody know if {KT_ext} is broken in ADDT?
    Thank you,
    Ruben

    Hi Günter,
    {track} and {id_track} are both table fields, and setRenameRule worked right with both, but it didn't with {KT_ext}.
    I've changed {track} with {id_track} in first page, and it stills fail to put extension.
    But maybe is this, in first page the column for Update Transaction is like this
    $upd_cds_peces->addColumn("mp3", "FILE_TYPE", "POST", "mp3");
    and in the second page (where it works right) is
    $upd_cds_peces->addColumn("mp3", "FILE_TYPE", "FILES", "mp3");
    Althought in both cases the file is uploaded and DDBB field is filled, maybe in first case the TNG doesn't expect a file and cannot find its extension.
    I'll try to change it,
    thanks,
    Ruben
    Edit: Yes, it was this... Now it works. Thank you Günter for your help!

  • Validator for file upload component is not working !!

    This validator method for a file upload component is throwing a java.lang.NullPointerException.
    public void fileUpload1_validate(FacesContext context, UIComponent component, Object value) {
    long size= fileUpload1.getUploadedFile().getSize();
    if (size>65535){
    throw new ValidatorException(new FacesMessage("Your image is too big!"));
    Any help to solve this problem is very much appreciated.
    Thanks.

    Hi i have a fileUpload in a pop-up and the methods are :
    public void fileUpload1_validate(FacesContext context, UIComponent component, Object value) {
    try {
    com.sun.rave.web.ui.model.UploadedFile uploadedFile = ((Upload)component).getUploadedFile();
    long l_filesize = uploadedFile.getSize();
    if ( l_filesize > 1000000)
    throw new ValidatorException(new FacesMessage("File Size should be less than 1000000 bytes! It is" + l_filesize));
    else {
    String tipo = uploadedFile.getContentType();
    if ( tipo.compareTo("application/word") == -1 )
    if ( tipo.compareTo("application/rtf") == -1 )
    if ( tipo.compareTo("application/pdf") == -1 )
    throw new ValidatorException(new FacesMessage("Error : los tipos de archivo aceptados son PDF, WORD y RTF"));
    } catch (Exception ex) {
    this.mauvaisFichier = true;
    error(ex.getMessage());
    public String botonValidar_action() {
    if ( !this.mauvaisFichier )
    if ( this.fileUpload1.getUploadedFile() != null )
    if ( this.fileUpload1.getUploadedFile().getSize() > 0 )
    try {
    this.getSessionBean1().getComunicacion().setArchivo( new javax.sql.rowset.serial.SerialBlob(this.fileUpload1.getUploadedFile().getBytes() ) );
    this.getSessionBean1().getComunicacion().setTipoArchivo( this.fileUpload1.getUploadedFile().getOriginalName().substring(this.fileUpload1.getUploadedFile().getOriginalName().length() - 3 ) );
    } catch(Exception e){
    e.getMessage();
    return null;
    I have to put a boolean value because the first time, validation code doesn't function ( the method botonValidar_action() is called ) correctly. The error message appears but empty.
    If I try next time then it's ok.
    Thx for any issue.

  • File concatenating program does not work

    Hello, im quite new to java therefore it may only be a simple solution.
    The program reads mulitple files off the command line and then should join them up (concatenate) in a new file called "NewFile".
    The problem is it only prints the content of one of the files to the new file.
    Here is my code:
    /*Write an application which concatenates files. The name of
    *each file is supplied on the command line. The output file
    *consists of all the contents of the first file, followed by
    *all the contents of the second file, and so on. One of the
    *slides in the lecture may help.
    import java.util.*;
    import java.io.*;
    public class Concatenate
         public void process (String[] argStrings) throws Exception
              String fileName = argStrings[0];
              String contents = null;
              System.out.println();
              System.out.println("Conatenated contents of files:");
              System.out.println();
              for (int index = 0; index < argStrings.length; index++)
                   Scanner sc = new Scanner(new File(argStrings[index]));
                   contents = sc.nextLine();
                System.out.println(contents);
                   sc.close();
              PrintStream output = new PrintStream("NewFile.txt");
              output.println(contents);
            output.close();
    }Thanks anyone
    John

    // put this before the for loop
    PrintStream output = new PrintStream("NewFile.txt");
    // put this inside the for loop
    output.println(contents);Now, do you understand why you have to do that?

  • Flat file upload in IP: Not finding ZRSPLF_FILE_UPLOAD service.

    After transported and activated the planning function type ZRSPL_FILE_UPLOAD, I tried to activate the service ZRSPLF_FILE_UPLOAD by SICF but unfortunately it was not available under the path.
    To get that service where I have to run HTTP service

    Sridhar,
    please see my comments in the blog.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Upload Excel is not working

    Hi all, Excel upload program is not working in SAP CRM 7.2 Service Pack 10 with IE 11. Same is working fine in SP08. Below is the code.
    The debugger is not coming into Servervent handler method . any notes suggested ? sorry for posting the big code lines.
    <thtmlb:fileUpload id="fileUpDown" />
    <thtmlb:button id = "UPLOAD"
                    iconSrc = "ICON_XLS"
                    tooltip = "Upload Excel file"
                    text = "Upload"
                    onClick =  "upload_file( );" />--%>
      <thtmlb:textArea id  = "Excel_Data"
          text   = " "
          width  = "0"
          height = "0"
          rows   = "0" />
    <%-- Registering server event--%>
    <bsp:htmlbEvent name = "nameUpload"
                      id = "idUpload"
                      onClick = "SERVEREVENT"
    <%--                 serverEvent"--%>
                      p1 = "p1"
                      p2 = "p2"
                       p3 = "p3" />
    <script language="javascript"  type="text/javascript">
    function upload_file( ){
    var iRow="1",
          jCol="1",
          ActiveRows="0",
          fileName="",
          sValue=" ";
    fileName=document.getElementById("<%= controller->component_id %>_fileUpDown").value;
    if ( fileName == "" ) {
    alert("Upload." + "\n" + " " + "\n" + "Please choose an Excel file as source.");
    return;
    if ( fileName != "") {
    <%--alert("Upload." + "\n" + " " + "\n" + "This file is to be uploaded:" + "\n" + fileName);--%>
    var r=confirm("Upload." + "\n" + " " + "\n" + "This file is to be uploaded:" + "\n" + fileName);
    if (r!=true)
    return;
    Excel = new ActiveXObject("Excel.Application");
    Book = Excel.Workbooks.Open( fileName );
    ActiveRows = Book.Worksheets("Input").Range("A1.IV64000").CurrentRegion.Rows.Count;
    <%--ActiveRows = Range("A1.IV64000").CurrentRegion.Rows.Count;--%>
    for (iRow=1; iRow<=ActiveRows; iRow++) {
    for (jCol=1; jCol<=4; jCol++) {
    cData = Book.Worksheets("Input").Cells(iRow,jCol).value;
    <%--cData = Cells(iRow,jCol).value;--%>
    sValue = sValue.concat(cData,"\n");
    sValue = sValue.concat("\n\r");
    document.getElementById("<%= controller->component_id %>_Excel_Data").value = sValue;
    Excel.Workbooks.Close;
    <%--return statement here calls the server event SERVERVENT--%>
      return nameUpload();
    </script>
    regards,rama

    Hello all,
    Excel = new ActiveXObject("Excel.Application");
    the above statement is not working in Service pack 10 CRM 7.2.  any help is appropriated
    thanks,rama

  • File upload program by jsf

    I am doing one file upload program using
    <af:inputFile label="File to Upload" columns="90"
    value="#{FileProcessor.uploadedFile}"/>
    component..
    in Jdeveloper 11g i am getting the correct result,
    but when i'm tryin to run it in Jdeveloper jdevstudio10131 it is giving this error.
    java.io.EOFException: Per-request disk space limits exceeded. at oracle.adfinternal.view.faces.webapp.UploadedFileImpl.loadFile(UploadedFileImpl.java:187) at
    i want this file upload application to run in ecplise..but there it is not working..do i need so some to import some jar files??
    tomat 5.0 i'm using there..
    Or is there any otherway to upload file using jsf component which should work in eclipse-tomcat enviornment also..
    please help
    thanks

    Mr BalusC,
    Yes Iam talking about a custom made upload component. The fileupload tutorials u send are good but my requirement is not meeting them. Among my requirements one is mutilple file uploads in the single view page. This is possible at present with my custom upload componet. Only if the problem gets solved. Any way once again please think on my problem and give your solution on it.
    Here is my problem:
    The problem is I have to access the components from view page which this kind of requirement possible in jsp by request parsing which results the key value pairs of the form components. This same thing/way I should get in backing bean from JSF view page.
    The solution I want may like as follows.
    Note this code is incorrect and wrong but for to understand my requirement.
    someobject.getComponentIdValue("clientID"); which returns a string value as d:\images\Tutle.jpg
    The clientID is upload file component' Id . In the request it may be the key associated with value as file complete path. By this kind of way my upload filter is able to get the orignal file. Ok i need this in my  backing bean to get the orignal filename to insert into the database. Please for this give the solution or reply.many thanx,
    vijaycanaan.

  • Ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    ipad i have load swf file but swf  is not working proper(flex 4.6) but android is fine to work how

    On the MBP, in iTunes, switch to Song view and enable the iCloud Status column by pulling down View > View options and selecting the option for "iCloud Status." Close the small window. Look for any tracks that have a status of "waiting." If you see several of them disable iTunes Match while holding down the Option key. Quit iTunes, wait a few seconds, then open it again and turn iTM back on. Let it compelete the scan. Wait until all tracks that are "waiting" have a status of either "matched" or "uploaded."
    On the iPad, turn off iTunes Match then launch the Music app and let the contents clear out. Power cycle the iPad for good measure, then re-enable the service once all the tracks in iTunes have been processed.

  • JSObject programming was not working when compiled in JSDK1.4.2_06

    JSObject programming was not working when compiled in JSDK1.4.2_06.
    But problem solved when i compiled with JSDK1.3.1_15 and tested with JVM 1.3.1_15.
    Still I could not run the class file generated in JSDK1.3.1_15 in JVM 1.4.2_06.
    What do you think happened across the SDK versions? Shouldn't the JSObject
    and other classes be part of the browser JVM.
    I want to know whether JSObject supports in JSDK1.4.2_06.
    It goes into the loop. It neither say error nor execute.

    Do not spam the site by posting to 4 forums

  • BPS  Flat File Upload Error Messages

    Hi,
    I am using the BPS flat file upload and am getting error messages. These error messages are coming from the user exit in the characteristics relationships. Unfortunately the message does not indicate which line on the upload file the error is for. In the user exit it does not pass the line no of  the flat file that is being processed.
    Does anyone have any ideas how the message could be enhanced to indicate the line in error or if there is another exit I could perform the validation in?
    regards
    Paul Cairncross

    Hi Sai,
    The issue is not the particular message. The message is in fact my message in the user exit in the characteristic relationships. The issue is when using the flat file upload the message does not indicate which line in the file the message apply's to. Looking at the userexit no line number is passed. This is not a problem in the web as the specific line is highlighted when the user is keying in the data.
    Regards,
    Paul Cairncross

  • FLAT FILE UPLOAD INTO BI

    Hi,
    What kind of questions are needed to be asked (from client) for requirements gathering for a flat file upload (from legacy system) to BI? Basically what are all the questions that i need to ask them to make sure I have all information for designing a flat file extractor?
    Thanks

    I would ask them what do they want to report on from the legacy system and is data already in R/3?  I would also ask what kind of data is stored in the legacy system .... inventory, financial data, sales, etc ... Once I knew that, I would ask what do they want to report on .... stock quantities/costs, gl account data, revenue, deliveries, etc....
    Then I would ask, do you want this to be seperated from the R/3 datastream?  More than likely this will be yes, if not, fight to keep it seperated and possible in it's own cube/ODS and combine in a multiprovider (you need to use the same 0material, 0customer, 0vendor, 0gl_account info objects if you want to combine nicely on a multiprovider).
    If the database the legacy system is on is either SQL Server or Informix or Oracle, you may want to consider DBConnect and connect directly to their tables.
    In all cases, I try to avoid bringing everything in "just because we may need it".  If the system is legacy and it's been a legacy for 2 years, see what people keep going back for and grab that data only.  If someone claims to need data, but have not sought it out for 2 years, then the probably don't need it.
    Also, check the granularity of the data.  Do they need individual documents for legal reasons?  Can you summarize the data?  What are they going to use the data for?
    Brian

  • BPC delta flat file upload possible?

    Hi experts,
    Ive been trying to find an answer of whether or not it is possible to retain member data on manual flat file upload into a dimension. We have created a dimension (employee) and have created some dummy nodes member data and would like to determine if it is possible to then keep this manual member data while manually loading further member data through flat file load. Is this sort of manual flatfile delta load possible? If so how? What is best practice here?
    Also, is it possible to load data into a dimension using two methods IE manual upload file and then another form (IE BW load) without overwriting data? Im assuming this is where the merge data option comes in to play.
    Any guidance would be much appreciated.
    Regards,
    Danielle

    Hi Danielle,
    While uploading data, if you have added dimension members manually, then, it never gets deleted untill and unless you specify for it.
    In your scenario, you have created dummy members and want to upload data thru flat file. Then, the data will be uploaded only for those members for which you want to upload data, rest of the members will display the old data.
    As you rightly said earlier, while running data manager package, you need to select MERGE option instead of REPLACE & CLEAR data values. This keeps the old data intact and adds the new ones as well.
    Hope this clarifies further.
    Rgds,
    Poonam

  • .CSV File upload  program in CCM

    HI Gurus,
    Is there any possibility of calling file upload program from another program which should pick the file stored in server and upload as we do it in manually selecting the supplier and upload the .csv file by specifying the path.Kindly advice.
    Thanks and Regards,
    Sathya kumar.

    Hi
    I have not tried this.. But i guess it's possible.
    What's your detailed business requirement ?
    Do let me know.
    Regards
    - Atul

  • Flat file Upload BSP page

    Hi Marc,
    I am following the July version of how-to. When generating the BSP page, I am told checkbrowser.htm and js.htm are not available. When I create a checkbrowser.htm and point the include to js3.htm, which is one of the page fragment available, there are a few other errors coming out. What am I missing?

    Do you already know if the flat file upload is possible from a multi planning area? Because I get the error message that my multi planning area does not exist when executing the function.
    Thnx.

Maybe you are looking for

  • 7970 6gb Vapor video card in Mac Pro 1, 1

    Hello, i recently ordered this card fo rmy Mac Pro (since it works on bootcamp side at least, and support for the Mac side may come soon due to new Mac edition of 7950 being released). My question is, how do i connect the power cables? It comes with

  • Business connector installation error

    Dear community, I am trying to install bc 4.8 x64 on win2008 R2 x64 std ed.server (in vmware). When I run the installer (BCServer48_x64.exe or BCServerXpt48_x64) I get an error: >business connector install could not find a java virtual machine to loa

  • I deleted an item in my purchases, how do i get it back?

    I deleted an item in my purchases, how do i get it back?

  • AE CC 2014 Mercury Transmit Ram Preview with AJA flickers

    Hey Everyone, I have installed the latest AJA drivers and plugins and enabled Mercury Transmit preview in AE but when I render the preview the output flickers. One frame is normal the next is darker, normal, darker etc. Has anyone got this working ye

  • Freeze in Standby......."logic board"

    I have this problem freezes when in standby ... an apple expert in my area .... immediately said it was the logic board did not even watch it! What do you think? thank you very much