How to test MSON through blackberry

Hi,
We have implemented MSON on our existing landscape .below method i have followed
1. Installed .sca files in EP system
2.SAPlogon ticket configured from EP7.0 to CRM5 and BI7.0
3.SLD,business systems maintained in portal system
4.JCO rfc configured from EP to CRM and BI
5.Connection tested sucessfully
As per the inst doc i have made all the settings , now how to test the MSON conenction from blackberry?
Do i need to do any additional settings in blackberry and CRM/EP.
Please suggest.
Thanks
Shaik

Hi Shaik
You should be able to connect directly to the URL that come from MSON with your BlackBerry.  Alternatively, you can download a BlackBerry Simulator and MDS Services Simulator, run them on a PC and point them at your instance of MSON.
There is more info here:
http://service.sap.com/mobileui
and BlackBerry simulators here:
http://na.blackberry.com/eng/developers/downloads/simulators.jsp
cheers
ed

Similar Messages

  • How to test server proxy in ECC 6.0 ?

    Hi,
    Please tell me how to test server proxy created in SPROXY of ECC 6.0  .
    I am following this blog XI: Debug your inbound ABAP Proxy implementation .
    When i am executing the test service provider i am getting an error with " program terminated " message  creating a dump .
    How to test it through this method ? Is there any other way to test in ECC6.0
    Thanks,
    Laawanya D

    Hi,
    I have put a breakpoint in my proxy code and when i am trying to execute only, i am getting the error "Program terminated" .
    I am using ECC6.0 , so when i am clicking on Test Interface, i am not  getting  "Application Data Entry" parameters  as given in  Stefan's blog , but I am getting something like:
    Input:
    1.Generate template Data
    2.Enforce Stylesheet generation
    (I have checked both 1 & 2 .)
    Error Handling:
    1.Don't catch Application faults
    if i check this and execute , my program gets terminated , leaving a dump and if i dont set it also My program gets terminated .
    So what to do now ?

  • How to setup PO approval through Blackberry

    Dear SAP Guru and Experts,
    Would like to check with you guys out there that can the standard SAP ECC6.0 be configured to approve the PO through Blackberry?
    Is there any other module that need to be installed in order to have the PO being approved through Blackberry?
    Normally how long (days) will it takes to configure the PO being approved through Blackberry?
    Thank you
    Regards
    Leonard Tan

    Hi, Refer below forums it may help,
    SAP Workflow approval using Mobile
    Offline approval on blackberry device in SRM
    http://ecohub.sap.com/api/resource/4dbffe10d2a8cbf8cec86272

  • How  to genearte Unit Test reports  through  ANT/Command  line ?

    Hi,
    I am using sql developer unit test feature to test my database code. I am planning to execute and generate reports by running ant script.
    Is it possible to get the unit test results in any format (text,XML,HTML) after running the tests.
    How to integrate report generation tasks as part of Automated builds?
    Is there any command line utility do through can invoke through ant task?
    Thanks,
    Fernando

    Fernando,
    I, too, am looking to run our PL/SQL unit test suites through our automated ant build scripts. Currently, I've only been able to determine that there is a "UtUtil.bat" and "UtUtil.sh" command line utility for win and linux in /sqldeveloper/sqldeveloper/bin. However, it only take three switches:
    UtUtil -run ?
    UtUtil -imp ?
    and
    UtUtil -exp ?
    While this does provide some limited value to us through automating the importing of our exported test suites and then running them as part of our builds, it doesn't help in running reports on the test runs and exporting the reports to something our build processes can consume (i.e. xml).
    Also, we want to be able to run our full db build on (almost) any of our development machines and we don't want to have to have a unit test repository already preconfigured on each development db. I haven't found a utility to automate the creation of the unit test repository user and the repository, and then whena all the test suite runs have finished and the reports run, delete the repository and repository user.
    We have used Quest's Code Tester product in the past and it had all of these great features that I am really hoping Oracle can either implement or expose to us.
    Regards and best of luck,
    Mike Sanchez

  • How to read and input Chinese through Blackberry wireless cell phone

    The way to read and input Chinese through Blackberry wireless cell phone
    My phone model  is Blackberry 8520.
    My Blackberry can read and input Chinese after these steps. 
    1. Go to the weblink http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    2. Click "China Mobile Peoples Telephone" included in "Asia Pacific".
    3.Select a product from the drop down menu, for example, mine is BlackBerry 8520, and I select it.
    4.Click "next"
    5.Then select the "Download Software" on thebottom of the same webpage.
    6.Fill in all the information required on the following page, then "Next"
    7. Start download the software to you PC, computer or laptop.
    8.Install this downloaded software to your PC. The software is called "8520wifijEastAsia_PBr4.6.1_rel424_PL4.2.0.122_A4.6.1.286_China_Mobile_Hong_Kong_Co._Ltd"
    9.Link your wireless cell phone to your PC
    10.Then go to C:\Program Files\Common Files\Research In Motion\AppLoader
    11. Double click "Loader"
    12. Select all the languages you want to update to your cell, and then follow the information to the left steps.
    It will take about 20 minutes after Step 12 to finish the upload to the cell.
    Done.
    Now I am happy I can read and input both English and Chinese through my BlackBerry.
    If you have any questions, please leave message to me on this web.
    Good luck.
    Grace

    Hi Grace,
    I'd faced the same issue as KU.
    After all the installation.. it does not have any options for me to choose for the language.. can kindly assist me on this???
    it only showed those applications that i had in my mobile...
    Thanks
    -fei-

  • How to test a simple PL SQL function from another PL SQL script

    Hi,
    I have created a function. Now i need to test that whether it is returning the correct values or not.
    For that, i have written anothe pl sql script and trying to call this function. Im passing all the IN parameters in that function. I assume here that OUT parameters will provide me the result. Im trying to display the OUT parameter one by one to see my result.
    I'm using toad as sql client here connected with oracle.
    pl sql script:-
    DECLARE
    BEGIN
         DBMS_OUTPUT.PUT_LINE('$$$$$$$ VINOD KUMAR NAIR $$$$$$$');
         FETCH_ORDER_PRODUCT_DATA(320171302, 1006, 6999,
    ODNumber OUT VARCHAR2, Line_Number OUT VARCHAR2,
    ServiceID OUT VARCHAR2, BilltoNumber OUT VARCHAR2,
    AnnualPrice OUT NUMBER, CoverageCode OUT VARCHAR2)
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | ODNumber );
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | Line_Number );
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | ServiceID );
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | BilltoNumber );
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | AnnualPrice );
    DBMS_OUTPUT.PUT_LINE('HERE IS THE RESULT ' | CoverageCode );
    END;
    Function:-
    Program Name : SPOT_Order_Product_Data_For_CFS.sql
    Description : Function to Validate parameters from CFS
    By : Vinod Kumar
    Date : 08/19/2011
    Modification History
    By When TAR Description
    CREATE OR REPLACE FUNCTION FETCH_ORDER_PRODUCT_DATA(orderNumber IN VARCHAR2, customerNumber IN VARCHAR2,
    productLine IN VARCHAR2, ODNumber OUT VARCHAR2,
    Line_Number OUT VARCHAR2, ServiceID OUT VARCHAR2,
    BilltoNumber OUT VARCHAR2, AnnualPrice OUT NUMBER,
    CoverageCode OUT VARCHAR2)
    RETURN VARCHAR2 IS
    lv_err_msg VARCHAR2(100) := '';
    lv_bucket_id VARCHAR2(14);
    lv_bill_number VARCHAR2(30);
    lv_anual_price NUMBER;
    lv_coverage_code VARCHAR2(8);
    lv_quote_num NUMBER(10) := NULL;
    lv_line_num NUMBER(5) := 0;
    lv_customer_number VARCHAR2(30) := customerNumber;
    lv_product_id VARCHAR2(14) := productLine;
    lv_count_quote NUMBER := 0;
    lv_quote_status VARCHAR2(5);
    lv_quote_version NUMBER(2):=0;
    BEGIN
    IF INSTR(orderNumber, '-') = 0 THEN
    lv_quote_num := orderNumber;
    ELSE
    lv_quote_num := SPT_Delimiter(orderNumber, 1, '-');
    lv_line_num := SPT_Delimiter(orderNumber, 2, '-');
    END IF;
    --Check status of the quote COM, APP
    SELECT COUNT(*) INTO lv_count_quote FROM sot_order_header WHERE ORDER_NUMBER=lv_quote_num
    AND ORDER_STATUS IN ('APP', 'COM') AND CUSTOMER_NUMBER = lv_customer_number;
    IF lv_count_quote = 0 THEN
    lv_err_msg := 'Invalid Order number';
    RETURN lv_err_msg;
    END IF;
    -- Fetch the latest version on SPOT quote
    SELECT MAX(VERSION_NUMBER) INTO lv_quote_version FROM SPT_QUOTE_HEADER WHERE QUOTE_NUMBER = lv_quote_num
    AND CUSTOMER_NUMBER = lv_customer_number;
    -- If quote is valid fetch the data in OUT parameters
    IF lv_line_num = 0 THEN
    BEGIN
    SELECT a.CUSTOMER_BILLTO_NUMBER,
    b.LINE_NUMBER, b.BUCKET_ID,
    b.ANNUAL_REF_RATE_USD, b.COVERAGE_CODE
    INTO lv_bill_number,lv_line_num,lv_bucket_id,lv_anual_price,lv_coverage_code
    FROM SPT_QUOTE_HEADER a, SPT_QUOTE_LINE b
    WHERE a.QUOTE_NUMBER = lv_quote_num
    AND a.CUSTOMER_NUMBER = lv_customer_number
    AND a.VERSION_NUMBER = lv_quote_version
    AND a.QUOTE_NUMBER = b.QUOTE_NUMBER
    AND a.VERSION_NUMBER = b.VERSION_NUMBER
    AND b.PRODUCT_ID = lv_product_id;
    ODNumber := lv_quote_num;
    BilltoNumber := lv_bill_number;
    Line_Number := lv_line_num;
    ServiceID := lv_bucket_id;
    AnnualPrice := lv_anual_price;
    CoverageCode := lv_coverage_code;
    RETURN '';
    EXCEPTION WHEN OTHERS THEN
    lv_err_msg := 'Multiple PIDs existing in the SPOT order, please provide the SPOT order + line number as input data';
    RETURN lv_err_msg;
    END;
    ELSE
    BEGIN
    SELECT a.CUSTOMER_BILLTO_NUMBER,
    b.BUCKET_ID, b.ANNUAL_REF_RATE_USD,
    b.COVERAGE_CODE
    INTO lv_bill_number,lv_bucket_id,lv_anual_price,lv_coverage_code
    FROM SPT_QUOTE_HEADER a, SPT_QUOTE_LINE b
    WHERE a.QUOTE_NUMBER = lv_quote_num
    AND a.CUSTOMER_NUMBER = lv_customer_number
    AND a.VERSION_NUMBER = lv_quote_version
    AND a.QUOTE_NUMBER = b.QUOTE_NUMBER
    AND a.VERSION_NUMBER = b.VERSION_NUMBER
    AND b.PRODUCT_ID = lv_product_id
    AND b.LINE_NUMBER = lv_line_num;
    ODNumber := lv_quote_num;
    BilltoNumber := lv_bill_number;
    Line_Number := lv_line_num;
    ServiceID := lv_bucket_id;
    AnnualPrice := lv_anual_price;
    CoverageCode := lv_coverage_code;
    RETURN '';
    EXCEPTION WHEN OTHERS THEN
              lv_err_msg := 'Multiple SPOT lines exist with same parameter';
              RETURN lv_err_msg;
    END;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    lv_err_msg := '@@@ EXCEPTION THROWN @@@ '|| SUBSTR(SQLERRM,1,120);
    RETURN lv_err_msg ;
    END;
    Don't look at the function, it might have errors but my primary concern is how to test this function. Once I start doing its testing then only i can understand any bugs(if any).
    My pl sql is not so good. Im still learning. I don't understand IN and OUT parameters are.
    I just know that IN parameters r those whick we pass in to the function wen we call it and OUT parameters are those through which we get the result.
    Thanks in advance
    Vinod Kumar Nair

    20100511 wrote:
    I wondered how I could test the output of the function from within TOAD?I usually create the following function in my developer schema:
    create or replace function BoolToChar( b boolean ) return varchar2 is
    begin
      if b then
        return( 'TRUE' );
      else
        return( 'FALSE' );
      end if;
    end;To test a function like yours, the following will do in SQL*Plus/TOAD/etc:
    begin
      DBMS_OUTPUT.put_line(
        BoolToChar( XCCC_PO_APPROVALLIST_S1.does_cpa_exist(1017934)  )
    end;
    I'm probably doing 101 things wrong here, but thought I'd ask anyway and risk being shouted at.Shout at? You reckon? I thought people risked being beaten with a lead pipe, or pelted with beer cans and stale pretzels - which makes being shouted at a really safe and viable alternative. {noformat};-){noformat}

  • How to test the select statement.

    Hi All,
    How to test the select statement.
    Is there any Oracle sqlplus  or toad kind of tool to  test the query.
    thanks
    siva

    Use SQL Trace (ST05) and choose 'Explain one SQL Request'. Enter your SQL command as it should be executed in the underlying database. e.g. if the db is Oracle, the statement should be entered as:
    SELECT matnr,werks,lvorm,dispo
    FROM marc
    WHERE mandt = :a AND
                 matnr = :b AND
                 werks = :c
    In the above :a, :b and :c are place holders for the actual comparison values. You dont have to enter those values. When you choose 'Explain' button, you will find the 'Execution Plan'. The important parameter which denotes the efficiency of the SQL statement is the 'Cost'. The cost should be as low as possible. The table access should be through INDEX UNIQUE SCAN. If you get a FULL TABLE SCAN and higher cost, you need to fine-tune your statement by modifying the where clause.
    If you dont know Oracle SQL statements, execute the program in trace mode and go to the trace and you will find the underlying SQL statements issued to the database.
    Regards
    Suresh Radhakrishnan

  • HOw to test the jms connection?

    HI all,
    how to test the jms connection in xi?
    regards
    kish

    HI,
    We can see the JMS sender or reciver side .. in RWB .. see  communicaiton channel mononitoring,., also..
    We can access it through browser.. it depends upon the proocol type .. like sonic or webspeare MQ..or ...
    see below links
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/886a3c3a860657e10000000a114084/frameset.htm
    /people/alessandro.guarneri/blog/2006/01/04/jms-sender-adapter-handling-too-short-lines
    /people/william.li/blog/2006/11/13/how-to-use-saps-webas-j2ees-jms-queue-in-exchange-infrastructure
    content conversion https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f02d12a7-0201-0010-5780-8bfc7d12f891
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/97171dd3-0401-0010-5195-b43f556e6ce9
    Chilla

  • How to test XI project..

    1.How to test xi projects?
    2.then how to test our scenario? Is there any testing tool is available to test the scenario?
    3. What is CCMS? how it is useful in XI ?
    Thanks in advance
    Rakesh

    Hi Rakesh,
    +1.How to test xi projects?
    2.then how to test our scenario? Is there any testing tool is available to test the scenario?+
    XI is about messaging. So the way to test an XI implementation would be to test the messaging. Two options for doing that...
    1. Test the implementation without the Application systems. The plain J2SE adapter really comes in handy here. You can use it to send an XML file to the Integration Server, check whether it is getting through the pipeline as intended (which means the routing, the mappings, etc), and let it pop out to a file somewhere. You can check all the steps the message has gone through from the XML monitor (sxmb_moni).
    2. Test the actual implementation with the application systems. For this you would use the testing tools of the application itself.
    I do not know of any automated tools for testing XI configuration, or any way of testing it without actually sending a message across.
    What is CCMS? how it is useful in XI ?</b> 
    I can give you some info regarding CCMS, but the rest will try finding out and let you know soon. Mean while pls go through this info on CCMS.
    When CCMS is not configured you can only do individual monitoring.
    To configure the same you must decide which system is to be the central system for the SCR.
    To know what SCR is and to know more about it please go through this link.
    https://help.sap.com/saphelp_nw04s/helpdata/en/1e/ec9e38f0d92936e10000009b38f8cf/content.htm
    After doing the same please follow these steps.
    Log on to the system that is to contain the central repository.
    - Choose CCMS ® Configuration ® Alert Monitor, or call transaction RZ21.
    - Choose Technical Infrastructure ® System Repository ® Set Repository Role.
    - The system displays the Set Repository Role in Central System Administration screen. Choose Central Repository.
    And also go through the following links. This I guess will help you solve your problem and I guess it answers your question.
    https://help.sap.com/saphelp_nw04s/helpdata/en/e5/15a0380d134f6fe10000009b38f8cf/content.htm
    /people/sap.india5/blog/2005/12/06/xi-ccms-alert-monitoring-overview-and-features
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i
    Regards,
    Abhy
    Message was edited by: Abhy Thomas

  • How to test the extended controller and AM Object

    I added a button in a OAF page and extended the CO and AM. When we click this button, an XML Publisher concurrent program should be called and the PO will be displayed in PDF format.
    What is the best way to test this. Should I copy all the libraries from oracle/apps/... to my pc and attach or can I test without doing this. If so, what is the best approach.
    I am new to this.
    Thanks for your Help.
    HP

    I got the code ready for with extended Co java file. How can test this. How to generate the class file. Once I gerenarate the class file, if I ftp the file to cust/oracle/apps/pos/changeorder/webui and in the personalization if I attach this CO and run the page and click the button will this call the new CO? Yes after FTP the Contorller class file to appropriate path and attach the extended controller through personalization New Controller will get called.
    But DO REMEMBER TO BOUNCE THE APPACHE SERVER then only the extended Controller file get called.
    here is the link having steps to bounce it for Apps 11i.
    http://oracleanil.blogspot.com/2009/04/ncrimmessageproc.html
    Please let me know if these steps are correct..
    1. New OAWorkSpace
    2. New Project
    3. right click on project and click New class to generate the extended CO Class.Yes, It is right..
    Thanks
    --Anil
    http://oracleanil.blogspot.com

  • How to test if a number is prime?

    Hi, I'm doing an exercise. I'm iterating through numbers from 2 to 100 (since 1 is not a prime number) and I need to test if the current number is a prime, if it is print it out. But I can't figure out the condition, how to test if a number is prime? So far I got this, but it prints all subsequent numbers, which is now obvious to me, but how to test for primes?
    public class Main {
        public static void main(String[] args) {
            for (int i = 2; i <= 100; i++) {
                //Test if a number is a prime, if it is print it
                // The (i + 1) is because I want to divide i by any other number, so I thought i + 1
                if (((i % i) == 0) && ((i % 1) == 0) && ((i % (i + 1)) > 0)) {
                    System.out.println(i);
    }

    Aardenon wrote:
    I understand your point. But it seems unsafe to assume a number from which the checks are unnecessary. That could lead to an error. I'm sure it is mathematically provable somehow, but I'm not that good in Math. I mean to write a safe (and optimized) version of the code, I would still have to go through all uneven numbers and 2.Nope. In fact, for an optimized version, definitely not; however, I wouldn't worry too much about optimization at the moment.
    One little tip I remember from school, back in the dark ages, is that all prime numbers other than 2 and 3 have the form 6k &plusmn; 1. That is NOT to say that all such numbers are prime, but it does eliminate a lot of the ones you need to check.
    You might also want to check out the [url http://en.wikipedia.org/wiki/Prime_number#Verifying_primality]Wikipedia page on prime numbers; it's very good.
    Winston

  • How to test my ADF mobile browser application on Android emulator?

    Hi
    I have created a Mobile Browser Application. Could anyone please tell me how to test it on Android emulator?
    I read the information about downloading and configuring simulators(Blackberry) and emulators(Microsoft Windows) for ADF Mobile browser in "Running Mobile Device Simulators with ADF Mobile and JDeveloper". However they didn't mention details about downloading and configuring "*Android Emulators*". Could anyone please help me in this.
    Regards
    Raja

    Hi,
    thought you want to test a mobile BROWSER application on android emulator you have to use android JDK like mentioned by codigoadf.
    I guess also that the configuration (create virtual android device, ...) will be the same.
    You have to use the same URL for your application than on your PC but replace 127.0.0.1 by 10.0.2.2 (In case your WLS runs on the same machine as the android emulator)
    regards
    Peter

  • How do you iterate through a string?

    Hi! How do I loop through a string of characters. My program needs to iterate through a string in order to do some calculations. Here is an example:
    <item>1</item>
    <description>This is an example.</description>
    How I iterate through description one character at a time.
    Thanks for your help!

    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
    <xsl:template name="add-X">
    <xsl:param name="string" select="." />
    <xsl:if test="$string">
    <xsl:text>X</xsl:text>
    <xsl:value-of select="substring($string, 1,1)"/>
    <xsl:call-template name="add-X">
    <xsl:with-param name="string"
    select="substring($string, 2)" />
    </xsl:call-template>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>
    Create an file named TEST.xsl with the above code.
    <aaaa>ABCDE</aaaa>
    Create an file named TEST.XML with the above code.
    Create an RTF template with form field valus as
    <?import: file:///C:\Desktop\Sample RTF\TEST.xsl?>
    Note : here you have to point the xsl path where your TEST.xsl is located.
    Then create another form field with value
    <xsl:call-template name="add-X"> <xsl:value-of select="." /> </xsl:call-template>
    When you merge the xml and RTF , you will find the no of "X" equivalent to length of the string in <aaaa> tag in xml

  • About how to send ALV through email

    Hi  everyone ,
          I have a problem about how to send ALV through email  in background . if someone knows , pls tell me .
    thanks in advance
    Best Regard
    Nick

    I write a test program , but it doesn't work , use any exists ALV program in the system , and use the "sendlist " program to send the email.  what I want is when I restrict some conditons in the selection-screen , then it send ALV to Email .
    Thanks
    Nick

  • How to test the replicatioin when we are upgrading to latest version

    Hi,
    We have 3 different servers for Australia, EMEA and North America in which oracle 8i(8.1.7.4) has been installed on all the servers.
    Replication process has been set up on all the servers.
    If we do any transactional operation on any of the servers that will get replicated in the remaining servers.
    replication has been setup for few tables in the database.
    Now I need to upgrade the database to 10g.
    How the replication will get affected? Please advise me.
    Regards,
    RB

    Are you planning to upgrade the databases 1 at a time? or do you plan to shut them all down and upgrade them all at the sametime?
    if you do all at the sametime then you should be ok. If all databases are a 10g the replication should be fine and go on as it did in your 8.1.7.4 database.
    If you do 1 at a time I would recommend testing, testing, testing. The reason is you are jumping from 8 to 10 in version. while the 10g client should be ok with this the 8i client might be an issue. Been a long time since I did anything with 8i but I am not sure I would trust the 8i client with a database link to 10g with replication until I tested it throughly just to be safe before I made any definate upgrade plans.

Maybe you are looking for

  • Hp laserjet pro 200 color mfp m276nw no print preview

    Hello Folks, I have windows 7 64 bit HP laserjet pro 200 color mfp m276nw and do not see a print preview option. Is there a way to get this? In Linux I use print to ps file and ghostscript to view. Our oldink jet had a print preview option. I did see

  • Deletion of Object Dependency in BOM

    Hi All, I am trying to delete the Object dependency from a BOM using the Function Module "CUKD_API_ALLOCATIONS_MAINTAIN". After executing it, the Object is getting deleted but the Bulb like symbol for Obj(Object Dependency) in Transaction CEWB is not

  • N:1 Mapping Possible using Java Mapping?

    All, Is it possible to do a N:1 mapping using Java Mapping? If yes , how? Reason for this question is that the execute() of the Java Mapping is going to take the source / request message as the InputStream . In the case of N:1 mapping , as we have mu

  • Do Not Import Duplicates (former PC /user/)

    I about to set down and go through the Aperture Tutes. However, can anyone advise as to whether it is a good idea to check the box to not import duplicates from my iPhoto Library or whether there may be a better way to manually delete these once they

  • Transfer games and games scores to a new ipad

    I have an Ipad 2. My husband plays games on it and his Angry Bird score is very good. He wants to put Angry Birds on his Ipad but doesn't want to lose his scores/ranking etc. I don't play the game. Is there a way to do this so he can use his own mach