Problem to update UDO-recordsets using a matrix with DBDataSource

Hello,
I've got a problem with updating recordsets in an UDO-Table using DBDataSource.SetValue().
Special szenario: I use a matrix bounded with DBDataSources. Adding new records and loading them via DBDataSource.Query() with conditions works fine. The UDO object type is "Document" without lines.
In the simple way now I load just one record and after this I was trying to set an "message" to an simple, editable edittext-column via calling:
oDBDataSource.SetValue("U_Message", 0, "Hello world");
oMatrix.LoadFromDataSource();
Now it's visible in the matrix.
But when I call update via clicking the update-button, B1 do say, everything was ok (green status-message). Reloading this recordset you can see: it was not stored in the database
Even not after:
oMatrix.FlushToDataSource();
As a workaround I do write the "message" via using Cell.Specific.
Can anybody help me?
I'am using SBO 2005 A SP 01 PL 39
Edited by: Christian Bührig on Mar 18, 2008 4:48 PM

look at
New Row in Matrix is a Duplicate and Cannot update Object with new Row
the next way is do it with recordset and directly insert to table.
hope it helps
Petr

Similar Messages

  • Problem while updating Item category using Bapi_salesorder_change

    Hi,
    Iam facing a probelm while updating item category using bapi Bapi_salesorder_change
    In the Return table iam getting the folowing mesages.
    Inforation mesage : Field 'PSTYV' cannot be changed, VBAPKOM 000010  ready for input
    Error Message : Item 000010 cannot be processed.
    Please find the code below
    CLEAR wa_bapisdh1x.
      wa_bapisdh1x-updateflag = 'U'.
      CLEAR wa_order_item_inx.
      wa_order_item_inx-itm_number = wa_vbap-posnr.
      wa_order_item_inx-item_categ = 'X'.
      wa_order_item_inx-UPDATEFLAG = 'U'.
      APPEND  wa_order_item_inx TO it_order_item_inx.
      CLEAR wa_order_item_inx.
      CLEAR wa_order_item_in.
      wa_order_item_in-itm_number = wa_vbap-posnr.
      wa_order_item_in-item_categ = 'ABC'.
      APPEND wa_order_item_in TO it_order_item_in.
      CLEAR wa_order_item_in.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = w_vbeln
          order_header_inx = wa_bapisdh1x
        TABLES
          return           = it_return
          order_item_in    = it_order_item_in
          order_item_inx   = it_order_item_inx
    How can i correct it..
    Regards
    Kumar

    Actually iam facing a strange problem here.
    When i copy the program into another sample program and execute it iam able to change both the item catgegory and delivery block for particular sales order and item number.
    But in my main program i have BDC for MB1B transaction to create the material document.
    Once the material document is created succesfully iam using BAPI Sales_order_change to change the item category and delivery block..
    In my main program iam not to change the item catgeory getting an error field PSTYV cannot be changed.
    But the same code is running percfectly in the copied one..
    How can i correct that..
    Regards
    Kumar

  • Problems Creating a Java Class using a webservice with certificate

    hi,
    i'm developing a java class that call's a webservice that needs a certificate, i'm not used to work with java, last time was 10 years ago, so i'm having some troubles because of the certificate.
    I already add the certificate using java control panel > Security > Certificates. When testing i get the following error: IOException (java.io.IOException: subject key, Unknown key spec)
    I think I need to define the certificate in my class, but i'm having a lots of trouble with the samples that i found over the internet, nothing works and i'm running out of time.
    This is my Class
    create or replace and compile java source named "FishInfoAt" as
    import java.net.*;
    import java.io.*;
    import java.security.*;
    public class FishInfoAt
         public FishInfoAt()
         public static String send(String urlfishinfoat, String mensagem, String mensagem1, String mensagem2, String mensagem3)
              // Init
              String response = "";
              String msgtotal = mensagem+mensagem1+mensagem2+mensagem3;
              String a = "";
              HttpURLConnection conn = null;
              try{
                   URL url = new URL(urlfishinfoat);
                   conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestMethod("POST");
                   conn.setRequestProperty("Content-type", "text/xml; charset=utf-8");
                   conn.setRequestProperty("SOAPAction", "https://servicos.portaldasfinancas.gov.pt:401/sgdtws/documentosTransporte/");
                   conn.setRequestProperty("Content-Length","" + msgtotal.length());
                   conn.setDoOutput(true);
                   conn.setDoInput(true);
                   conn.connect();
                   OutputStream out = conn.getOutputStream();
                   out.write(msgtotal.getBytes());
                   out.flush();
                   InputStream in = conn.getInputStream();
                   int value;
                   while( (value = in.read()) != -1)
                        response+=(char)value;
              catch(Exception e)
    response = ("*** ERROR - IOException (" + e.getMessage() + a + ")");
    return response;
    /

    Hi Deepak,
    Could you please let us know upto which line your code is going safe. Try printing the value in the structure before you send that to the method GetUGEntity().
    I am not too sure that would be a problem. But I have faced a problem like this, wherein I tried to access a structure for which I have not allocated memory and hence got exception because of that.
    Since your JNI code seems to be error free, I got doubt on your C part. Sorry.
    Dhamo.

  • Problem when updating delivery quantity using 'BAPI_OUTB_DELIVERY_CHANGE'

    Hi experts,
    I have a requirement in which i need to update the material's delivery quantity in VL03N transaction.   For this im trying the BAPI
    'BAPI_OUTB_DELIVERY_CHANGE' and im passing the following values.
    HEADER_DATA : Delivery no.
    DELIVER : Delivery no.
    ITEM_DATA : Delivery no,
    item no,
    DLV_QTY quantity(changed),
    FACT_UNIT_NOM ( default to value '1')
    FACT_UNIT_DENOM ( default to value '1')
    ITEM_CONTROL : Delivey no,
    item no,
    CHG_DELQTY ( value "X")
    Then i use 'BAPI_TRANSACTION_COMMIT' for updating the changes. 
    Here the problem is, the BAPI is working fine for some quantity , say if i enter the DLV_QTY as 2 in ITEM_DATA, it is gettting updated.  But if i pass some other quantity , say 12, it is returning the folowing error.
    T ID                   NUM MESSAGE
    E VL                   363
    Pls tell why this error comes. and how to successfully update the delivery quantity for a set of material?
    Regards,
    Shanthi

    not answered

  • Problem in updating material master using  FM 'MD_MRP_LEVEL_CHANGE_DATA'

    hi experts,
    i m using this FM 'MD_MRP_LEVEL_CHANGE_DATA' to update the material master for MRP Area related data. i m passing the fields in the FM according to the requirement. when i execute the program it gives a msg
    000I : 000, i m not able to track this msg that what can be the error..........
    and also the changes are not reflected in MM03 transaction.
    and if i m trying to pass the same data directly from SE37 and executing the FM , its running perfectly and changes are reflected in MM03.
    please help me out to get out of this problem.
    points will be rewarded for the correct answer.
    thanks in advance..........
    Manisha

    Manisha,
    Can you please provide the code where u r having problems?
    Thanks
    Ganesh.S

  • Problem in update statment when using where condtion

    Hi ,
          Iam using update statment to update field in Z-Table .My statment is not working fine as per my requirement.The statment is as below,
    UPDATE ZFINAL_DATA  SET ZDATE_FLAG = SPACE where ZGLOBAL_CODE ( SELECT LIFNR FROM LFA1 WHERE KTOKK = 'ZLIE' ).
    But this statment is doing my purpose .
    My requirement is , I need to update ZDATE_FLAG = SPACE in ZFINAL_DATA table when LFA1 -LIFNR = ZFINAL_DATA-ZGLOBAL_CODE and LFA1-KTOKK = 'ZLIE'.
    Can any correct the update statment which will be helpfull to proceed further .
    Regards,
    Sriram

    Hi Sriram,
    Have a look into the logic of the below query. Maybe this will fulfil the requirement.
    TYPES:     BEGIN OF lt_lifnr,
             lifnr TYPE lifnr,
         END OF lt_lifnr.
    DATA:      la_lifnr TYPE TABLE OF lt_lifnr,
           wa_zfinal_data TYPE zfinal_data,
           la_zfinal_data TYPE TABLE OF zfinal_data.
    TABLES: zfinal_data.
    SELECT lifnr
    FROM lfa1
    INTO TABLE la_lifnr
    WHERE ktokk = 'ZLIE'.
    SORT la_lifnr BY lifnr.
    SELECT *
    FROM zfinal_data
    INTO TABLE la_zfinal_data.
    LOOP AT la_zfinal_data INTO wa_zfinal_data.
      READ TABLE la_lifnr WITH KEY lifnr = wa_zfinal_data-zglobal_code
                          BINARY SEARCH TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        wa_zfinal_data-zdate_flag = space.
        MODIFY la_zfinal_data
        FROM wa_zfinal_data
        INDEX sy-tabix
        TRANSPORTING zdate_flag.
      ENDIF.
    ENDLOOP.
    MODIFY zfinal_data FROM TABLE la_zfinal_data.
    COMMIT WORK.

  • Problem in updating Pick Qty using SD_DELIVERY_UPDATE_PICKING_1

    Hi,
        I am updating the picking quantity in a delivery document using function module SD_DELIVERY_UPDATE_PICKING_1.
         However the document flow shows the picking request is still Open and not Completed. This does not happen when I do this online. Am I missing something in the parameters.
          Please advise as the documentation of this function module is not very clear.
    Thanks and Regards,
    Aditya

    Hi Ranjith,
             Thanks for all your input. I also posted a message to SAP and they recommended SAP Notes 457925 and 491875.
         I might go in for BDC as a last resort on VL02N since time is quite a constraint.
         I really appreciate the inputs you have given.
         Actually my customer system is running on mySAP ERP ECC 5.0 so it would certainly have all the note corrections mentioned in the several notes
    Thanks and Regards,
    Aditya

  • Problem in Updating UDO in SAP B1 2007

    hi,
    i have created a UDO of document type. The add functionality is working fine, but when trying to update the Document the error pops up saying that "The entry already exists...." in that particular lines table.
    any suggesting regarding this...??
    regards,
    Vasu Natari

    Hi Vasu,
    When you updating that document,that mode is change is automatically??
    That means ADD Mode - > UPDATE Mode.
    Other wise you have to set AutoManaged=1
    Reward Points,
    Regards,
    G.Suresh

  • OBPM - Problem exporting to CSV (for use in Excel) with special characters?

    Hi All,
    I am wondering if anyone has found a good solution to a problem I am experiencing with OBPM's OTB export function.
    Our application is required to be bilingual for English and French, however we've noticed that when the user is in French-display-mode, and exports their worklist to CSV, the french characters are garbled when viewed in Excel.
    We've tracked the problem down to be that OBPM encodes the CSV file as UTF-8, and Excel default is ANSI. This mismatch causes the garble.
    Has anyone out there found a way to set the encoding type, or otherwise overcome this issue? We are using OBPM version 10.3.2
    Thanks!
    Steps to recreate:
    1. Open the OBPM workspace
    2. Click "Settings" in the top right corner
    3. Select the "Display" tab, and change the language to French, click save.
    4. Notice your column names now appear in French. Export your worklist to CSV using the "Output options" icon
    5. open the resulting file in Excel, notice that any specail characters (accented e's for example) are not garbled.

    Hi Sharma,
    We seem to be the only two people on the forum using multiple languages!
    I have contacted Oracle support about the issue and am awaiting their reply as we speak.. We have a workaround that we can use, but our users are not fans of it, and would like to see a better solution.
    Our workaround is simply to open the CSV file in notepad++ and re-save the file with ANSI encoding.
    You mentioned Oracle support had provided you with 3 fixes, were these code-fixes or workarounds? I am wondering if perhaps one of those would work for us..

  • Problem to calculate the coherence (using NetworkFunction-VI) with only 1 row of data for each, the stimulus and response input

    Hello,
    I am trying to calculate the coherence of a stimulus and response
    signal using the Network Functions (avg) VI's. The problem is that I
    always get a coherence of "1" at all frequencies. This problem is
    already known (see KnowledgeBase document: Why is the Network Functions (avg) VI's Coherence Function Output "1"?).
    My trouble is that the described solution (-> the stimulus and response input matrices need to have at least two rows to get non-unity coherence values) doesn't help me much, because I only have one array of stimulus data and one array of response values.
    Thus, how can I fullfil the 'coherence-criteria' to input at least two rows of data each when I just have one row of data each?
    Any hint or idea is very much appreciated. Thanks!
    Horst

    With this weird board layout, I'm not sure whether you were asking me, but, on the assumption that you were, here goes:
    I found no need to use the cross-power spectrum and power spectrum blocks
    1... I was looking for speed.
    2... I already had the component spectral data there, for other purposes. From that, it's nothing but addition and multiplication.
    3... The "easy" VIs, assume a time wave input, as I recall. Which means they would take the same spectrum of the same timewave several times, where I only do it once.
    I have attached PNGs of my code.
    The PROCESS CHANNEL vi accepts the time wave and:
    1... Removes DC value.
    2... Integrates (optional, used for certain sensors).
    3... Windows (Hanning, etc. - optional)
    4... Finds spectrum.
    5... Removes spectral mirrors.
    6... Scales into Eng. units.
    7... From there, you COULD use COMPLEX-TO-POLAR, but I don't care about the phase data, and I need the MAG^2 data anyway, so I rolled my own COMPLEX-TO-MAG code.
    The above is done on each channel. The PROCESS DATA vi calls the above with data for each channel. The 1st channel in the list is required to be the reference (stimulus) channel.
    After looping over each channel, we have the Sxx, Syy, and Sxy terms. This code contains some averaging and peak-picking stuff that's not relevant.
    From there, it's straightforward to ger XFER = Sxy/Sxx and COHERENCE = |Sxy|^2 / (Sxx * Syy)
    Note that it uses the MAGNITUDE SQUARED of Sxy. Again, if you use the "easy" stuff, it will do a square-root operation that you just have to reverse - it is obtained faster by the sum of the squares of the real and imag parts.
    Hope this helps.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    ProcessChannel.png ‏25 KB

  • Problem in binding matrix with DBDataSource

    Hi
    I  bind the matix using DBDataSource,but when i again bind the matrix under the existing records it works.
    But when i delete a row from the delete menu and again bind the matrix then it adds an extra row in the matrix.
    when i delete two rows then it adds extra two rows and so on...
    please help..........

    This is for Menu delete before action
    SAPbouiCOM.Matrix oMatrix;
                        oMatrix=(SAPbouiCOM.Matrix)oPCForm.Items.Item(ClsConstant.strPC_matrixPC).Specific;
                        if(iRowNumber > 1)
                             oMatrix.FlushToDataSource();
                             oDbMatrixDataSrcPC.RemoveRecord(iRowNumber-1);
                             oMatrix.LoadFromDataSource();          
    for after action
    oMatrix.FlushToDataSource();
    for(int i=oMatrix.VisualRowCount;i > 0 ;i--)
    stsPO =  ((SAPbouiCOM.EditText)oMatrix.Columns.Item(ClsConstant.strPC_mtxPONo).Cells.Item(i).Specific).Value.ToString();
    if(sPONO == stsPO)
    oMatrix.DeleteRow(Convert.ToInt32(i));
    //oDbMatrixDataSrcPC.RemoveRecord(Convert.ToInt32(iRowNumber)-1);
    oDbMatrixDataSrcPC.RemoveRecord(i-1);
    oMatrix.LoadFromDataSource();     

  • RAM Problems after update and Restart. 3 beeps with led. Memories and Slots work alone, but together the problem continues.

    I make some updates and restart my Macbook Pro, and the screen became Grey with 3 beeps with Led.
    I read it could be the RAM memory. So I opened it and tried to reconected them.. but the problem continues.. So I asume it was one of the memories or one of the Slots... But when I tried them separetly all the Slots and memories worked... But togheter the problems continues.
    Any suggestion?
    The Mac worked perfect! There where just some updates...and before the restart, a pop up appeared saying that the updates could not be done because of an error... after that... the restart, the grey screen, and the 3 beeps with 3 leds.
    Thanks and sorry for the bad english!
    PS: Its 2008 so no warranty.
    Hernan.

    Have you tried putting back the original memory and seeing if that works?
    Also if you could tell us the mode of the MBP, how much memory was in it and what you are upgrading to it would help.

  • How to fill matrix with the output of recordset query?

    Hi all,
    I want a user matrix to load data when I hit a button and the data to be filled is the output of an sql query. binding the matrix columns with table columns and then load the matrix with DBDatasource attached to that table will not do in this case as the columns in the sql query are from several different tables or views. 
    writing following line to do this takes several minutes to load the data:
    For j = 0 To Reordset.RecordCount - 1
    Matrix.AddRow()
    Matrix.Columns.Item("col1").Cells.Item(i).Specific.value =  Recordset.Fields.Item("cardcode").Value
    Recordset.movenext()
    next
    Is there any other way to fill the matrix in this case, which loads the data faster?
    Regards,

    Hello Binita,
    I've tested the CFL for DataTable-Matrixes in my test-AddOn. But there's still one problem left. Maybe you find it out (I will need this in the future too...).
    The ChooseFromList must be added behind the DataTable-Bind, which is done on every MTX-Load (it's not from the sample above, so the UIDs are new ones):
                oDt = oDts.Item("dt_test")
                query = "SELECT  * FROM [@T_CONVTOOLS01]"
                oDt.ExecuteQuery(query)
                oMtx.Columns.Item("0").DataBind.Bind("dt_test", "Code")
                oMtx.Columns.Item("1").DataBind.Bind("dt_test", "U_Alpha01")
                oMtx.Columns.Item("2").DataBind.Bind("dt_test", "U_Price01")
                oMtx.Columns.Item("3").DataBind.Bind("dt_test", "U_Quant01")
                oMtx.Columns.Item("4").DataBind.Bind("dt_test", "U_Date01")
                AddChooseFromLists()
                oMtx.LoadFromDataSource()
    ...where AddChooseFromLists() is...
      Private Shared Sub AddChooseFromLists()
            Try
                Dim oCfls As SAPbouiCOM.ChooseFromListCollection
                Dim oCons As SAPbouiCOM.Conditions
                Dim oCon As SAPbouiCOM.Condition
                Dim oCfl As SAPbouiCOM.ChooseFromList
                Dim oCflCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                Dim oBtn As SAPbouiCOM.Button
                Dim oMtx As SAPbouiCOM.Matrix
                Dim oCol As SAPbouiCOM.Column
                Dim oEtx As SAPbouiCOM.EditText
                oMtx = oForm.Items.Item("MTX_TEST02").Specific
                oCfls = oForm.ChooseFromLists
                oCflCreationParams = SboCon.SboUI.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                oCflCreationParams.MultiSelection = False
                oCflCreationParams.ObjectType = SAPbouiCOM.BoLinkedObject.lf_BusinessPartner
                oCflCreationParams.UniqueID = "CFL_C1"
                oCfl = oCfls.Add(oCflCreationParams)
                '### OPTION:
                '# Shown ChooseFromList restricted by Conditions
                oCons = oCfl.GetConditions()
                oCon = oCons.Add()
                oCon.Alias = "CardType"
                oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                oCon.CondVal = "C"
                oCfl.SetConditions(oCons)
                oCol = oMtx.Columns.Item("1")
                oCol.ChooseFromListUID = "CFL_C1"
                oCol.ChooseFromListAlias = "CardCode"
            Catch e As Exception
                Microsoft.VisualBasic.MsgBox(className & ".AddChooseFromLists()" & vbCrLf & "Exception:" & vbCrLf & e.Message.ToString)
            End Try
        End Sub
    But I'm running into problems when trying to set the MTX-Cell via DataTable at the CFL-Event (see comment):
                If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
                    Dim oMtx As SAPbouiCOM.Matrix
                    Dim oCFLEvent As SAPbouiCOM.IChooseFromListEvent
                    Dim oCFL As SAPbouiCOM.ChooseFromList
                    Dim oDataTable As SAPbouiCOM.DataTable
                    Dim cflID As String
                    Dim oDt As SAPbouiCOM.DataTable = oForm.DataSources.DataTables.Item("dt_test")
                    oCFLEvent = pVal
                    cflID = oCFLEvent.ChooseFromListUID
                    'Dim oForm As SAPbouiCOM.Form
                    'oForm = SboConnection.SboUI.Forms.Item(FormUID)
                    oCFL = oForm.ChooseFromLists.Item(cflID)
                    If Not oCFLEvent.BeforeAction Then
                        oDataTable = oCFLEvent.SelectedObjects
                        If oDataTable Is Nothing Then Exit Sub
                        '############## Matrix Test #######################################################################
                        If (oCFLEvent.ItemUID = "MTX_TEST02") Then
                            oMtx = oForm.Items.Item("MTX_TEST02").Specific
                            '### CFL Results to UserForm
                            oDt.Rows.Offset = oCFLEvent.Row - 1
                            MsgBox(oDt.GetValue("U_Alpha01", oCFLEvent.Row - 1))
                            MsgBox(oDataTable.GetValue("CardCode", 0))
                            ' PROBLEM - can't get this working - don't know at the moment:
                            ' on other forms SetValue works....
                            oDt.SetValue("U_Alpha01", oCFLEvent.Row - 1, oDataTable.GetValue("CardCode", 0))
                            ' this also gives me problems...:
                            'oMtx.Columns.Item("1").Cells.Item(oCFLEvent.Row).Specific.value = oDataTable.GetValue("CardCode", 0)
                            oForm.Update()
                        End If
                    End If
                End If
    The CFL-Form opens and returns the choosen value(s) at the CFL-event. But writing to MTX still not works with this code...
    Maybe you find the last piece. If so: please write here.
    Cheers,
    Roland
    p.s.:
    David Nussböck wrote
    LOL - ROLAND WAS FASTER ))
    ...just one minute...

  • I've started updating Flare for use with Flex/Spark

    Hi,
    Flare is a pretty cool actionscript library which allows you to make some pretty great interactive visualisations (or visualizations if you're American) of data. A couple of problems with it though:
    It has pretty awful documentation. There's a tutorial that gets too in depth, too quickly and doesn't outline how to get up and running quickly at all, or what form of data is expected. &
    It doesn't play all that well with the Spark architecture, making you 'hand draw' things on the nodes of a chart rather than just applying skins.
    I'm trying to rectify this by:
    Writing a quick start guide to getting up and running with Flare quickly. &
    Starting to recode the library to be Flex friendly.
    The quickstart guide should get anyone up and running with Flare using the downloadable version there is from them.
    The second post has a partially recoded version of Flare to be friendly with Flex. I've worked on it more since then, and will continue to post updates as I get more and more working and cleaned up.
    I hope this will be helpful, as Flare has some pretty cool things going for it (and some baffling choices also!).

    Yes,you will lose all the music files when updating the firmware. What firmware is on the device now? You will need to do the update on XP SP2 with Windows Media Player 0 & no WMP components.
    nikkic wrote:
    Hello,I've just bought a new laptop with Vista Home Premium. It is recognising my player but is requesting I download drivers and the installation cd does not work. I have been searching for a solution to this and believe there is a way of updating my player using a computer with XP.Could someone please tell me how to do this?Will I lose all stored music if I do update the firmware?
    Thank you!

  • I can't use the webcam with iChat

    Hi all,
    The problem is:
    I can speak using the video with a person who is in Barcelona but I can't speak with another who's in London. My other partner, whos's in Barcelona, can't speak with him (I'm in Spain too). So the problem it's not from our system, it's from him. What could be the problem?
    He's using a broadband Internet conexion and a router. Could be a problem with the ports?
    That person who's in London can't speak with other people who's from his country.

    Hi Oleguer,
    I need this sort of info
    http://discussions.apple.com/thread.jspa?threadID=506836
    This list are some of the "normal" devices out there
    http://portforward.com/routers.htm
    I was wondering if you had a Thomson Alcatel Speedtouch modem/router combined device as theses are fairly popular on the Continent. They are also popular in Australia.
    The main problem when one person can not contact anybody is that they have not set up their Mac or their connection devices to alow iChat access to the internet.
    The second most common problem is that people use Port Forwrding or other NAT based port openings like DMZ or Port Triggering and there is conflict with the way their Buddies device is doing NAT.
    http://www.ralphjohnsuk.dsl.pipex.com/page15.html#CertainBuddy
    For this reason we suggest using UPnP where possible.
    The latest issue is that some newer modem and wireless routers that do MIMO or are called Pre-N devices are not liked by iChat
    MIMO stands for Multi In - Multi Out. The device my have more than one ariel to produce better wireless cover
    Pre- N are wireless devices attempting to predict the next stage in Wireless protocols. Currently we have 802.11b and 802.11g
    He should start here http://discussions.apple.com/thread.jspa?threadID=406147
    And here http://www.ralphjohnsuk.dsl.pipex.com/page16.html to see if he has set things up and eliminate possible problems (particularly updating from Panther.
    11:08 AM Wednesday; June 14, 2006

Maybe you are looking for

  • I have lost all my purchased movies and tv shows on my iTunes

    Please help as i have lost all my purchases on my apple tv how do i recover these?

  • CS4 won't display images

    I just finished installing photoshop, and tried to open an image to edit. The image seems to load as there is a tab for it and it is visible in the layers panel, but the area where you edit the photo itself remains grey. any tips? I have updated my v

  • Update Aperture 3.0.2

    Hi! I tried to update my Aperture with the 3.0.2 but I have everytime de same message: Aperture 3.0 or later is required to install the Update! But I'm already using Aperture 3! Thanks for your Help!

  • Close an applet window

    I have an application which is based inside a JFrame (app creates and displays JFrame). It works fine. I made this into an applet which opens up the JFrame instead and can't seem to close the window. When I tell it to close with client.exit(0) it wor

  • How do I activate the "last played" function on my Touch 4G

    How do I Activate the "last played" function on my ipod touch 4G?