SAP R/3 and DSXI tool   (Data Services)

Can we find any documentation in sap help or service.sap on how to integrate SAP R/3 and DSXI. Basically our requirement is when ever a customer master is created with out GEOCODE value (ZIP+4 value), that customer record need to be picked by DSXI and update it with the geo code value. For this we want to know any standard interfaces/programs exist to link up SAP R/3 and DSXI.
Thanks,
Srini

Here is the documentation link...
[http://wiki.sdn.sap.com/wiki/display/SAPMDM/IntegratingSAPNetWeaverMDMwithSAPBusinessObjectsDataServices]
Cheers,
Rc

Similar Messages

  • SAP R/3 and DSXI tool

    Hi All,
    Before posting this thread i have googled on how SAP DSXI tool can be used to ensure proper address data maintanance in SAP and couldnt succeed in finding any good info.
      Our requirement is we use external tax system(Sabrix) for calculating taxes for R/3 transactions. As we know in U.S and Canada the one important parameter for calculating taxes is the Jurisdiction code of the customer. This will be determined by the third party system when ever any address data is maintained in SAP system either it is customer master, plant/shipping point etc...
    The thing is to return a unique jurisdiction the third party system expects that SAP sends the complete address like country,state,district, postal code , Postal code +4 geocode value.  When creating the customer master data manually or during mass upload our user will have only  5 digit Postal code/zip code, they dont have the information of +4 geocode value of the zip code (which becomes 9 digits in total). Since the geocode value is not maitained in SAP, the tax system wont be able to determine the jurisdiction and it errors out the transaction.
      We thought of making it mandatory to enter the geo code value when the cusotmer master data is maintained, but this will not solve our purpose as most of the time at the time of customer master creation the users wont be having the +4 geocode value.
    I heard about SAP tool "DSXI" which can be used to get the geo code value.  Does any one have an idea on what is this tool and how it can be used / integrated with SAP and what features the DSXI tool is capable to do. Any inputs/documentation in this regard is highly appriciated.
    Thanks & Regards,
    Srinivas

    Hi Lakshmipathi,
             Thanq so much for your inputs. Can we find any documentation in sap help or service.sap on how to integrate SAP and DSXI. Basically our requirement is when ever a customer master is created with out GEOCODE value (ZIP+4 value), that customer record need to be picked by DSXI and update it with the geo code value. For this we want to know any standard interfaces/programs exist to link up SAP R/3 and DSXI.
    Thanks,
    Srini

  • Why is the signal at my home so much weaker than when I moved here in February 2013?  I only get one or two bars and very poor data service if any at all.

    Why is the signal at my home so much weaker than it was when I moved here in February 2013?  I get only one or two bars and very poor data service if any at all.  Calling to ask the question results in a vortex of questions that have little to do with the problem and no  resolution or answer.

    I have a Droid Ultra phone.  The signal reduction seems to only be in the general area of my home.  If I go downtown, the signal improves to what it once was at home.  Everything at my home is as it was when the signal was good, including cable TV service.  There has been no new construction in the area that I know of.
    Thanks for trying to resolve the issue.  Just this morning while trying to view web pages, I found that I could not load any.
    Ron

  • ADF BC and the Active Data Service

    hi
    The OFM Fusion Developer's Guide for Oracle ADF 11g Release 1 (B31974-05) has a section "42 Using the Active Data Service"
    at http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/adv_ads.htm
    that says "... If you want your components to update based on events passed into ADF Business Components, then you need to use the Active Data Proxy. ..."
    but it does not seem to explain how to use ADF BC and the Active Data Service.
    I have been able to create this example application ...
    http://www.consideringred.com/files/oracle/2010/ActiveDataServiceADFBCApp-v0.01.zip
    ... that does not have a af:poll component (but has moved polling into a managed bean).
      <managed-bean>
        <managed-bean-name>sumSalBean</managed-bean-name>
        <managed-bean-class>activedataserviceadfbcapp.view.SumSalBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
        <managed-property>
          <property-name>empSumSalVO</property-name>
          <value>#{data.activedataserviceadfbcapp_view_sumSalPagePageDef.SumSal.viewObject}</value>
        </managed-property>
      </managed-bean>This is some code in the SumSalBean class:
    package activedataserviceadfbcapp.view;
    // also based on code found in "ADF’s Active Data Service and scalar data (like activeOutputText)" by Matthias Wessendorf
    // at http://matthiaswessendorf.wordpress.com/2010/01/07/adf%E2%80%99s-active-data-service-and-scalar-data-like-activeoutputtext/
    public class SumSalBean
         extends BaseActiveDataModel
         protected static final String SUM_SAL_NAME = "sumSal";
         protected final AtomicInteger fCurrentChangeCount = new AtomicInteger(0);
         protected long fActiveDataUpdateEventTime;
         protected EmpSumSalVO fEmpSumSalVO = null;
         @PostConstruct
         public void setupActiveData()
              ActiveModelContext vActiveModelContext =
                   ActiveModelContext.getActiveModelContext();
              Object[] vKeyPath = new String[0];
              vActiveModelContext.addActiveModelInfo(this, vKeyPath, SUM_SAL_NAME);
              ScheduledExecutorService vSEService = Executors.newScheduledThreadPool(1);
              vSEService.scheduleAtFixedRate(new Runnable()
                        public void run()
                             if (hasDataChanged())
                                  triggerActiveDataUpdateEvent();
                   3, // let's wait some seconds
                   2, // period between the updates
                   TimeUnit.SECONDS);
         public void triggerActiveDataUpdateEvent()
              setActiveDataUpdateEventTime(System.currentTimeMillis());
              incrementCurrentChangeCount();
              ActiveDataUpdateEvent vEvent =
                   ActiveDataEventUtil.buildActiveDataUpdateEvent(
                        ActiveDataEntry.ChangeType.UPDATE,
                        getCurrentChangeCount(), new String[0], null,
                        new String[] { SUM_SAL_NAME },
                        new Object[] { getSumSal() });
              fireActiveDataUpdate(vEvent);
         public String getSumSal()
              EmpSumSalVO vEmpSumSalVO = getEmpSumSalVO();
              return "" + vEmpSumSalVO.getFirstSumSal();
         protected void startActiveData(Collection<Object> rowKeys,
              int startChangeCount)
         protected void stopActiveData(Collection<Object> rowKeys)
         public int getCurrentChangeCount()
              return fCurrentChangeCount.get();
         protected boolean hasDataChanged()
              EmpSumSalVO vEmpSumSalVO = getEmpSumSalVO();
              return vEmpSumSalVO.hasDataChanged(getActiveDataUpdateEventTime());
         public void setEmpSumSalVO(EmpSumSalVO pEmpSumSalVO)
              fEmpSumSalVO = pEmpSumSalVO;
    }How all this behaves a runtime can be seen in this screencast
    at http://www.screentoaster.com/watch/stUEpQSkxIR19aSV9YW1NRVF9W/activedataserviceadfbcapp_v0_01_zip_demo
    I would welcome comments on how the example application in ActiveDataServiceADFBCApp-v0.01.zip can be improved, or references to information on how this should be done properly.
    question
    (q1) Where can I find some example code that does use ADF BC and the Active Data Service?
    many thanks
    Jan Vervecken

    Jan,
    ADF BC does not natively support ADF yet. Its planned for a next release. The only Data Control that out of the box support ADS is BAM. To use ADF BC with e.g. databae change notifications you
    - create a shared AM
    - Configure the VO to respond to database changes (check box)
    - Configure the database to broadcast changes
    - Use an af:poll component for the refresh because the update would be on the model layer only
    So what is in the documentation is a doc bug. In the current releae you can use ADS best with a POJO model (that you use directly for dashboard use cases). You can though use a POJO data control, but this at the current stage would just act as a pass through for the data access.
    See example 156 on http://blogs.oracle.com/smuenchadf/examples/ for how to do it with ADF BC
    Frank
    Ps.: Of course, the plan is to make everything working out of the box with no developer action required.
    Edited by: Frank Nimphius on Feb 12, 2010 6:56 AM
    Re-read your post. Maybe I need to revise my comment. Are you accessing AM directly or via the ADF layer. If the latter - I did not yet look at your sample - then this may work if you don't release the AM module you access directly (may not scale well)

  • SAP UI Table and escaped JSON data

    Hi,
    There is table which is bound to a JSON data.
    I'm getting the JSON data via ajax call. Some of the data in the JSON is escaped.
    But, i'm loading the table data via Table.bindRows() API. This shows the data in the escaped format. I want to show it in the unescaped format
    ===========================  Representative code =================================
    oControl = new sap.ui.commons.TextField().bindProperty("value","Token").setEditable(false);
    oMasterTbl.addColumn(new sap.ui.table.Column({
    label : new sap.ui.commons.Label({
    text : "MYDATA"
    template : oControl,
    sortProperty : "mydata",
    filterProperty : "mydata",
    width : "50%"
              function onBody() {
              var aUrl = '../services/MyCustom.xsjs;
              jQuery.ajax({
              url: aUrl,
              method: 'GET',
              dataType: 'json',
              success: this.onCompleteBody
              function onCompleteBody(myTxt){
                  oModel.setData({ businessData : myTxt });
                  oMasterTbl.bindRows("/businessData/MyData");
                  oMasterTbl.setModel(oModel);
                  oMasterTbl.invalidate();
    ===========================  End Representative code ==============================
    Tried oModel.setData({ businessData : unescape(myTxt) });
    This invalidates the JSON and the table data is empty.
    How and where do i unescape the relevant data ?
    I know that the value in the field may be escaped. How do i unescape the data from the model ?
    regards,
    sreeram

    Hello,
    The below code snipped worked
              function onCompleteBody(myTxt){
                  oModel.setData({ businessData : myTxt });
                  oMasterTbl.bindRows("/businessData/MyData");
                  oMasterTbl.setModel(oModel);
                  var nrows = oModel.getProperty("/businessData/MyData");
                  var cntxt, len, i;
                  len = nrows.length;
                  for (i=0; i<len; i++) {
                  cntxt = oMasterTbl.getContextByIndex(i);
                  tkn = cntxt.getProperty("mydata");
                  tkn = unescape(tkn);
                  oModel.setProperty("mydata", tkn, cntxt);
                  oMasterTbl.setModel(oModel);
                  oMasterTbl.invalidate();

  • SAP R/3 and JAVA based data base

    hi,
    I have two data base one is SAp r/3 and another is JAVA based.
    i need to link one table from Sap r/3 and one from JAVA based data base.
    using crystal reports how can i do this????
    thanks

    hi,
    in Crystal reports go to data base expert in the pop up link JAVA based data base using JDBC and connect SAp r/3 using SAP.
    You will be able to get SAp menue only if you are using crystal reports version 2008 or version 12.
    Once the connection is established select the tables you require and rest remains same.
    Thanks.

  • OSC4.0 and HA-LDOM data service

    Hi,
    Can anyone point me to the appropriate documentation for the HA-LDOM data service in Solaris Cluster 4.0?

    http://docs.oracle.com/cd/E23623_01/html/E25230/index.html
    Regards
    Hartmut

  • SAP J2EE installation and MySQL tool

    Hi folks,
    I successfully installed the SAP WEB AS J2EE preview ( full version ) and allready managed to create some tables using a java dictionary project.
    I also downloaded SAP MaxDB SQL studio ( from www.mysql.org ) but this tool is driving me crazy ...
    It simply refuses me to log on ... I used the user and password as described in the installation manual ... didn't work ...  I created my own user and gave the user a password in upper case ( yeah I found the remark in the manual about defaulting upper case ) ... doesn't work ...
    I downloaded both versions of the studio ( 7.5 and 7.6 )... nothing ... dead ... frustrated ....
    I just want to enter some data in my table .... boohooobooe ...
    Anybody knows a better tool for data entry ? ( without having to write my own EJB CMP beans and web application ) or a solution for my problem ?
    Steven

    Hi,
    One question? Are you able to log on to the MAXDB Database
    administrator?
    If yes, it should also possible to log on to SQL Studio with this user.
    Also try to use User CONTROL (PW: CONTROL).
    Regards daniel

  • Va01:whay sap say pricing and condition missing data?

    I want use the T-CODE VA01 to create a sale order.When I input one material 001 and it's quantity 250 and save the sale order,the sap show some error message like below.I thought it mean that the item of material 001 in the sale order miss some data about the pricing and condition.I check the item->Conditions and can not found any matter.I use the standard pricing procedure and the CnTy like PR00,K007,KP02,SKTO was exist.So my question was how could I found what the missing data was?Is there any one who have meet such problem can give me some reference or advice?Thank you.
    error message:
    Missing data: Pricing
    Message no. VU019
    Diagnosis
    The system checked the document for completion and found some missing data.
    System Response
    You cannot continue processing.
    Procedure
    Enter the missing data.

    hi mello
    u can check it  in document level item details.... conditions....u can see a icon called <b>Analysis</b> click on that u can find  all the details of  the condition types in the procedure
    kiran

  • I lost all data from cell and sd card suddenly even I paused updates and on mobile data service.

    I hv lost my all data from my BlackBerry suddenly it's totally washed out,i shared my device code and pins wid frend living afar,mostly I got his screen msgs remotly,i just can't understand where my data gone n how can I get back it,its not coming wid restore settings

    @sonaprachi
    Welcome to the forum!
    If you mean PC Suite and not Ovi Suite you might like to look at NbuExplorer here:http://sourceforge.net/projects/nbuexplorer/
    In hindsight it is unfortunate that you did not go to Menu > Office > File mgr. > Memory card > Options > Backup phone memory (to memory card) prior to reset and after format of memory card!
    Happy to have helped forum with a Support Ratio = 42.5

  • SAP R3 Connection in Data Services - Configuration is

    Dear all,
    We are having an error when going through the steps in the configuration of BusinessObjects Data Services 3.2 with R3. The error is in the SAP R3 server.
    Herewith the steps in regular font (based on the SAP BusinessObjects guide) and our output results in bold. If you can take a look on it, it will be great for us.
    To install provided functions using the CTS system:
    1.     Copy the provided transport files to the appropriate directories on the SAP server.
    Installing Functions on the SAP Server Installing the functions using CTS
    Note:
    In these steps, 900XXX.SXX is a variable. To substitute the correct file name for the current release, see the readme.txt file in the ...\DataServices\admin\R3_Functions\transport directory.
    -     Copy R900XXX.SXX to the /usr/sap/trans/data directory.
    -     Copy K900XXX.SXX to the /usr/sap/trans/cofiles directory.
    As we have R3 connection we have moved the R63 file. Complete name of the files are:
    -     R900086.R63
    -     K900086.R63
    2.     Log on to the SAP server and run the transaction /nSE37 to determine if function group ZAW0 already exists. The CTS system will install the Data Services functions into a single function group ZAW0 that it automatically creates on the SAP server if it does not already exist.
    -     If function group ZAW0 exists and contains previously installed Data Services functions, add an unconditional mode 2 option (parameter U2) to the tp import command described in step 4 below (tpimport S<xx>K900<xxx> <SID> U2).
    -     If function group ZAW0 exists and is used for another purpose, modify the transport file to use a different function group (such as ZAW1) to install the Data Services functions. Make sure the function group you use does not already exist in your system.
    -     If you are installing the transport files on a Unicode-enabled SAP server, manually create the function group ZAW0 with the Unicode attribute set.
    In our case we have found there is already a ZAW0 created -> nothing to do in this step
    3.     From a command window, run the following transport command:
    -     tp addtobuffer S<xx>K900<xxx> <SID>
    (where SID is the SAP system ID)
    You receive the response:
    This is tp version <SAP TP and SAP versions> for <database type> database.
    Addtobuffer successful for S<xx>K900<xxx> tp finished with a return code: 0 meaning:
    Everything OK
    This is the command we have run and the error retrieve
    The SID is NDV.
    C:\tp addtobuffer R63k900086 NDV
    This is tp version 372.04.57 (release 700, unicode enabled)
    E-TPSETTINGS could not be opened.
    EXIT
    Error in TPSETTINGS: transdir not set.
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0208
    tp finished with return code: 208
    meaning:
    error in transportprofil (param missing, unknown, ....)
    We have modified the statement with different names for the R63 file, but we didnu2019t success. We are retrieving same error.
    We also have applied the command in the following link:
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/etpsettings-could-not-be-opened-875506
    and retrieve another error. The following step would be doing the u201CSAPEVTPATHu201D downloading, but, we are not sure if this would fix the issue or if the issue is related to something else.
    4.     Run the next transport command:
    tp import S<xx>K900<xxx> <SID>
    (where SID is the SAP System ID)
    We couldnu2019t reach this point, as we are having an error in the command below.
    Thanks for your help on this!
    Beatriz Minguez

    There is a problem in the transport file supplied with BODS installation folder. Pls refer to the SAP Note :
    1616269 - Problems when installing Data Services 4.0 SAP transport files (900155.R63)
    We have used the new transport files but we are still getting the below warnings in the log files and it returned with return code 4 :
    Maximum length ("255") for "CHAR" in transparent tables exceeded
    The SAP Note 1446648 - Warning Messages installing SAP R3 transports for Data Services sayou can ignore those warnings but we are still not able to see the ZAW0 Function group in SE37.
    Let me know if you are able to do it successfully.

  • Data Services and Data Quality Recommnded Install process

    Hi Experts,
    I have a few questions. We have some groups that have requested Data Quality be implemented along with another request for Data Services to be implemented. I've seen the requested for Data Services to be installed on the desktop, but from what I've read, it appears to be best to install this on the server side to allow for more of a central benefit to all.
    My questions are:
    1. Can Data Services (Server) install X.1 3.2 be installed on the same server as X.I 3.1 SP3 Enterprise?
    2. Is the Data Services (CLIENT) Version dependent on if the Data Services (Server) install is completed? Basically can the u201CData Services Designeru201D be used without the Server install?
    3. Do we require a new License key for this or can I use the Enterprise Server license key?
    4. At this time we are not using this to move data in and out of SAP, just using this to read data that is coming from SAP.
    From what I read, DATA Services comes with the SAP BusinessObjects Data Integrator or SAP BusinessObjects Data Quality Management solutions. Right now it's seems we dont have a need for the SAP Connection supplement, but definetly something we would implement in the near future. What would be the recommended architecture? A new Server with tomcat and cmc (seperate from our current BOBJ Enterprise servers)? or can DataServices be installed on the same?
    Thank you,
    Teresa

    Hi Teresa.
    Hope you are referring to BOE 3.1 (Business Objects Enterprise) and BODS (Business Objects Data Services) installation on the same server machine.
    Am not an expert on BODS installation.
    But this is my observation :
    We had recently tested on a test machine BOE BOXI 3.1 SP3 (full build) installation before upgrade of our BOE system.
    We also have BODS in our environment.
    Which we also wanted to check whether we could keep on the same server.
    So on this test machine, which already has BOXI 3.1 SP3 build, when i installed BODS server installation,
    what we observed was that,
    all the menus of BOE went away
    and only menus of BODS were seen.
    May be BODS installation overwrites/ or uninstalls BOE, if it already exists ?
    I dont know.  Though i could not fine any documentation, saying that we cannot have BODS and BOE on the same server machine. But this is what we observed.
    So we have kept BODS and BOE on 2 different machines running independently and we do not see any problem.
    Cheers
    indu

  • Edge 3.1 Data Services connection to SAP ECC 5.0 on AIX server

    I've got a client who is trying to create a Data Services extract from an SAP ECC 5.0 system on an AIX server.  The Data Services is installed on a Windows box and is the Edge 3.1 version. He is able to connect to the SAP datastore, is able to import the metadata for a table and browse the data, but the data transport in the R/3 Data Flow fails due to a permissions problem on the file generated in the working directory on the SAP server (as indicated by the Data Services error message).
    We have confirmed that the file can be opened and modified by the same user that the Data Integration service is running under. I have also duplicated his environment and settings in a sandbox virtual machine, except that our SAP ECC 6.0 system is running on MS Windows Server 2003, and the transfer works fine in that environment.
    Does anyone know how to resolve this issue? Is there a permissions setting we're missing?
    -Kurtis Carter
    Solution Engineer
    Bramasol, Inc.

    Simply means that in the case you have more than one instance you need to shutdown down the instance you are working on and all the other ones too.
    Regards
    Juan

  • Exposure of BI Content/Generic DataSources in Data Services XI 3.x

    We were told by SAP Business Objects personnel back in May 2009 that SAP DataSources (standard content and generic) would be exposed in SAP Business Objects Data Services XI 3.2. We have recently upgraded Data Services, in a sandbox environment, to XI 3.2 and found that this isn't there.
    After pinging some others that we know at SAP, we're now hearing that this won't be available until SP4. Is this correct? Right now, the unrestricted shipment version is SP0 and we're wondering if it truly is SP4 or SP0 FP4 when then is scheduled to be in unrestricted shipment and when these are scheduled to be released for general customer consumption. Can anyone from SAP monitoring this forum comment?

    Hi Dennis:
    BW uses the business content extractors. In 4.0 Data Services will also use the Business Content extractors.
    This does not mean BW customers have to start using Data Services; SAP is not replacing the connectivity between ECC and BW.  Data Services is added as an option to the landscape and adds the option of accessing other 3rd party sources u2013 one single tool to extract data.
    With Data Services, you have the possibility to consolidate extraction rules into one platform. You can also make sure you can load correct and clean data into target application with the data quality components of Data Services.
    You just need to know the name of the extractor and connect. No ABAP programs are generated, making it easier to deploy and maintain.
    Since you originally posted your question almost two years ago you might be aware of this     but I think people visiting this forum in the future may find very useful information on the blog by Tammy Powlas.
    SAP BusinessObjects Data Services - What is new in 4.0?
    /people/tammy.powlas3/blog/2011/04/18/sap-businessobjects-data-services--what-is-new-in-40
    Regards,
    Francisco Milán.
    Edited by: Francisco Milan on May 24, 2011 4:12 PM

  • Data Services - Open hub read - No Open Hub DTP error

    Hi,
    I have created a open hub destination in BW (7.0 SP21), created transformation, DTP and process chain. In Data Services (3.2) I have created flow, job etc. and every thing seems to be as expected. However when I start the job in DS it terminates with an error:
    1136     5624     BIW-230334     13-11-2009 12:28:22     Process Chain <ZTEST2> of Open Hub destination <ZTEST> at SAP system <.......> no more contains Open Hub DTP. Please reimport the Open Hub destination to execute the appropriate Process Chain.
    I've tried re-activating everything in BW and also re-importing the OHD in BW, but nothing works. I've even tried to re-create everything from scratch. The process chain I've created do indeed contain an Open Hub DTP.
    One addtional question: I've activated the process chain, but do I also need to schedule it in BW (like you do with e.g. process chains for time points to be used in Broadcasting)? Note, I've tried both scheduling/no scheduling and does not work either way.
    Any ideas/suggestions?
    Thanks in advance,
    Jacob

    You must implement following SAP Notes in SAP systems in order to make Data Services Open Hub functionality work correctly:
    SAP Note  1270828 : (Open Hub Process chain is not imported into Data Services repository).
    SAP Note  1294774:  (Open Hub import failed - when you call the module RSB_API_OHS_DEST_SETPARAMS, th system tries to open a GUI)
    SAP Note 1330568 version 3: (This note has fixed "Process Chain <ZTEST2> of Open Hub destination <ZTEST> at SAP system <.......> no more contains Open Hub DTP. Please reimport the Open Hub destination to execute the appropriate Process Chain").
    SAP Note 1079698 - 70SP16 (Enable check box "Automatically Repeat Red Requests in Process Chain" in the DTP Execute)
    SAP Note 1346049:  (Error 028(OSOH): Request <n> cannot be locked.)
    SAP Note 1338465 #with 1293589 as pre-requisite: (The ABAP/4 Open SQL array insert results in duplicate database records.)
    SAP Note 1342955: (0 data records transferred)
    Edited by: Ajit Dash on Nov 13, 2009 10:37 PM
    Edited by: Ajit Dash on Nov 13, 2009 10:39 PM
    Edited by: Ajit Dash on Nov 13, 2009 10:39 PM

Maybe you are looking for

  • How to auto-restore Smart Folders on the dock after reboot?

    So I've created a smart folder that basically gathers all the applications that I use with the Adobe Creative Suite (i.e. Photoshop, Illustrator, InDesign, etc.). For quick access, I drag the smart folder to the dock and I change the sort method to N

  • Https sites not displaying correctly

    Here's an interesting problem thats cropped up on a couple of machines here. Hopefully someone else has found the cause! The problem is that some HTTPS sites are not displaying correctly. We have seen this with vimeo, and with wetransfer. I have incl

  • Emails are not delete from the handheld/server

    Hello, Our client has Blackberry 8330. Emails are not deleted nor from the server nor from the phone. Maybe there any other setting set? Or are these settings set wrong? Thanks you He has these settings: under Messages - Options - General Options, th

  • IPhone 3G 2.1 the whole OS crashed

    So here's a story: I've opened Maps and tried to make a simple search, but suddenly it crashed... OK, I've seen this before, but my touch screen stopped to respond, lock key and Home key is not working either (double click). I can only adjust volume,

  • Imac not detecting garmin--how do i fix

    Garmin hooked up but is not being detected--restart no help---how do i fix