Change server in SAP B1 8.8

Hi Experts,
I have installed 2 server at my client place, 1st one is Live server and 2nd one is test server.
I am using client on my laptop and if i want to change the server, could not able to find change server button on change company form, earlier it was available in SAP B1  2007.
Is there any other option to change the server in SAP B1 8.8
Thanks in advance,
Regards
Kamlesh Vagal

>
senthilnathan murugesan wrote:
> Hi ,
>
> You Just Dis Connect Your Test Server from  LAN.
>
> And Open Your SAP Business one  8.8 Client.
>
> This Time It Will asks for License server Name.
>
> Here You can give your Live Server Name!
>
> Hope This one  Would Helps You.
>
>
> Regards,
>
> M.Senthilnathan
It worked thank you
Edited by: Marc Roussel on Aug 4, 2010 2:51 PM

Similar Messages

  • How to change server in SAP B1 8.8

    Dear All,
    I have a problem in using SAP B1 8.8. I have 2 separated server which is one is contain license server and the other server contain database company. My client doesn't want the company database in one server with license server. In SAP B1 2007 that my client used before, this is not a problem. But now, in SAP B1 8.8, it's become a problem because SAP remove "CHANGE SERVER" button in modul change company. I tried to click in the server list but the server that appear is License Server only. I can't find Database Server.
    So, How can i choose the database server ?
    Pls help

    Hi,
    before you can add your <server-name>\SQLEXPRESS you must have your SBO-COMMON database available in SQL Server.
    If you have the original SBO-COMMON.mdf and SBO-COMMON_log.LDF files just place them under you SQL Server DATA folder (e.g. C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQLEXPRESS\MSSQL\DATA) and Attach from MS SQL Server Management Studio.
    Also attach any company databases.
    After that you can add <server-name>\SQLEXPRESS as follows:
    - open SAP B1 Service Manager
    - select License Manager service and click Settings
    - click Configure Security (bottom left)
    - enter password and click OK
    - enter your Connection Settings e.g.
        MSSQL_2008
        <server-name>\SQLEXPRESS
        sa
        <sa-user-password>
    - click OK
    That will take care of the connection settings but not of your Add-ons registration.
    So if you have any add-ons (e.g. Screen Painter, Fixed Assets, etc.) you will have to manually edit the AddOnsLocalRegistration.sbo file (under C:\Program Files\SAP\SAP Business One) and change any
    Name="<server-name>" entries to Name="<server-name>\SQLEXPRESS"
    Save the modified file.
    Now start the SAP client, press Change Company and set you Current Server to <server-name>\SQLEXPRESS
    Done.

  • Fetching of multiple files from Application Server into SAP Program

    Hi All,
    I have a issue related <b>Fetching of multiple files from Application Server into SAP Program</b>.
    Actual issue is as below.
    In the <b>selection screen</b> of <b>my program</b> i will give <b>Application Server Path</b> as :
    <b>/PW/DATA/SAP/D1S/PP/DOWN/eppi0720*</b>
    Then the based on above input it should pick up all the files that are matching <b>eppi0720*</b> criteria.
    Suppose if i am having <b>5</b> files with above scenario, i have to fetch all those <b>5</b> files at a time and place in my SAP Program.
    All those 5 file's data should come into SAP at a time.
    Can anybody tell me how can we solve above issue.
    If any body has come across same issue please provide me with solution.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    If you want to get around the authorization check, you can do something like this.
    report zrich_0001 .
    parameters: p_path type epsf-epsdirnam
                      default '/usr/sap/TST/SYS/global'.
    parameters: p_file type epsf-epsfilnam default 'CO*'.
    start-of-selection.
    perform get_file_list.
    *       FORM get_file_list                                            *
    form get_file_list.
      types: name_of_dir(1024)        type c,
             name_of_file(260)        type c,
             name_of_path(1285)       type c.
      data: begin of file_list occurs 100,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file_list.
      data: begin of file,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file.
      call 'C_DIR_READ_FINISH'             " just to be sure
           id 'ERRNO'  field file_list-errno
           id 'ERRMSG' field file_list-errmsg.
      call 'C_DIR_READ_START' id 'DIR'    field p_path
                              id 'FILE'   field p_file
                              id 'ERRNO'  field file-errno
                              id 'ERRMSG' field file-errmsg.
      if sy-subrc <> 0.
        sy-subrc = 4.
        exit.
      endif.
    * Read the file list and add to internal table.
      do.
        clear file.
        call 'C_DIR_READ_NEXT'
          id 'TYPE'   field file-type
          id 'NAME'   field file-name
          id 'LEN'    field file-len
          id 'OWNER'  field file-owner
          id 'MTIME'  field file-mtime
          id 'MODE'   field file-mode
          id 'ERRNO'  field file-errno
          id 'ERRMSG' field file-errmsg.
        if sy-subrc =  1.
          exit.
        endif.
        append file to file_list.
      enddo.
    * Write out the file list
      loop at file_list.
        write:/ file_list-name.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Change Server Option in 8.8

    Dear Experts,
    I have SAP 8.8 PL05 installed on my laptop.Now I need to connect to the server machine of the client which is also having same version installed. However I do not find any option of 'Change Server' on the client interface as it was in SAP 2007 .
    What is the method to change server in 8.8 ?
    Regards,
    Asap Fan

    Dear Asap Fan,
    You may check this thread:
    Re: XL Reporter and SQLEXPRESS: unable to connect to XL Reporter
    Thanks,
    Gordon

  • Change server name

    hi
    I must change server name (ERP 2005, MS SQL). Could you give me some advices ?
    I know that backup databases will be my first step
    adam

    Hi
    If iam not wrong you what to change the host name of the server then check
    SAP note:8307
    Regards
    Uday

  • Does changing server names in an XI environment  have any impact?

    Hi experts,
    can anyone answer the query below ?
    what is the impact of changing server names in an XI environment ( what exchange profile parameters need to be changed if any ) what are the risks, what may or may not stop working - can you alias to the old name etc....
    regards
    madhu

    Hi,
    I think its possible to change the server names. But ya that would impact on the connected systems and you have to modify the RFC destinations of connected R/3 systems as well as have to update the sender and receiver systems with new XI server information
    Have a look at these help:
    http://help.sap.com/saphelp_nw04/helpdata/en/35/2597d1fee611d184870000e8a57770/frameset.htm
    and
    http://help.sap.com/saphelp_bw30b/helpdata/en/cf/21edff446011d189700000e8322d00/frameset.htm
    thanks
    swarup

  • Server in sap management cosnole does not turn into green

    I installed this trial version from http://www.sdn.sap.com. with the download, there is a tutorial explaining all steps for installation.  In SAP Management Console when I click on NSP "Start" it should change to green but in my case it stays yellow.
    I do not have an access key to the server. When I try to log on to this server it asks me for user and a password so I tried to use nspadm with it's password but it did not accept.
    as far as i know that in order to let the server turns to green all I need to do is to right click on it and choose starts but even after doing this it does not turns into green.
    I  want to create another user in order to user it  instead of SAP*
    The role that I am giving to this user is u201Csystem administratoru201D but after I save it I get this message on screen:  u201CNo update server found for Eu201D
    despite of this previous message it creates it. I get this if I create a new user with the previous name  I wanted to create previously.
    In general I need a way to let me create my own users so I can start developing in ABAP.
    I can access every thing in this workbench but if I want to do some changes on classes and packages I create it tells me that I can not using SAP* and if I want to create other users sing SU01 and then logon again using using these new users I get a problem in accessing the system using them.
    I need to know what is reason for not turning the server in sap management console into green and i why i can not create users.
    Thanks
    Amal

    Dear Vincent;
    this is what i got from "Developer Trace" for "disp+work.EXE"
    trc file: "dev_disp", trc level: 1, release: "720"
    sysno 00
    sid NSP
    systemid 560 (PC with Windows NT)
    relno 7200
    patchlevel 0
    patchno 70
    intno 20020600
    make multithreaded, Unicode, optimized
    profile
    amal-PC\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_amal-PC
    pid 976
    Mon Oct 10 17:01:10 2011
    kernel runs with dp version 129000(ext=118000) (@(#) DPLIB-INT-VERSION-129000-UC)
    length of sys_adm_ext is 588 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 976) [dpxxdisp.c 1268]
    shared lib "dw_xml.dll" version 70 successfully loaded
    shared lib "dw_xtc.dll" version 70 successfully loaded
    shared lib "dw_stl.dll" version 70 successfully loaded
    shared lib "dw_gui.dll" version 70 successfully loaded
    shared lib "dw_mdm.dll" version 70 successfully loaded
    shared lib "dw_rndrt.dll" version 70 successfully loaded
    shared lib "dw_abp.dll" version 70 successfully loaded
    shared lib "dw_sym.dll" version 70 successfully loaded
    shared lib "dw_aci.dll" version 70 successfully loaded
    rdisp/softcancel_sequence : -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Mon Oct 10 17:01:15 2011
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c 6393]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >amal-PC_NSP_00 <
    DpShMCreate: sizeof(wp_adm) 20000 (2000)
    DpShMCreate: sizeof(tm_adm) 4323912 (21512)
    DpShMCreate: sizeof(wp_ca_adm) 32000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 32000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/556056/556064
    DpShMCreate: sizeof(comm_adm) 556064 (1104)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (1792)
    DpShMCreate: sizeof(wall_adm) (40056/34360/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3920
    DpShMCreate: SHM_DP_ADM_KEY (addr: 09620040, size: 5055296)
    DpShMCreate: allocated sys_adm at 09620048
    DpShMCreate: allocated wp_adm_list at 09622F28
    DpShMCreate: allocated wp_adm at 09623020
    DpShMCreate: allocated tm_adm_list at 09627E48
    DpShMCreate: allocated tm_adm at 09627E70
    DpShMCreate: allocated wp_ca_adm at 09A478C0
    DpShMCreate: allocated appc_ca_adm at 09A4F5C8
    DpShMCreate: allocated comm_adm at 09A572D0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 09ADEEF8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 09ADEF50
    DpShMCreate: allocated j2ee_adm at 09ADEF88
    DpShMCreate: allocated ca_info at 09ADFEE0
    DpShMCreate: allocated wall_adm at 09ADFEF8
    DpCommAttachTable: attached comm table (header=09A572D0/ft=09A572D8)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (3 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value : -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    Mon Oct 10 17:01:16 2011
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=159 reserved=47 quota=10%
    Mon Oct 10 17:01:17 2011
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.4 3.4 4.1) [dpxxdisp.c 1654]
    Mon Oct 10 17:01:22 2011
    ERROR => MsIAttachEx: NiBufConnect to amal-PC/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]
    ***LOG Q0L=> DpLoopInit, nomscon () [dpxxdisp.c 1755]
    CCMS: alert/MONI_SEGM_SIZE = 0 monitoring and alerting switched off.
    DpAppcBlksLow: max appc blocks in queue is 250 (50 %)
    DpWpBlksLow: max wp blocks in queue is 400 (80 %)
    Mon Oct 10 17:02:07 2011
    ERROR => MsIAttachEx: NiBufConnect to amal-PC/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]
    Mon Oct 10 17:02:27 2011
    ERROR => MsIAttachEx: NiBufConnect to amal-PC/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]
    this process "disp+work.EXE" is still yellow

  • Change server  B1 Share

    Hi,
    i  want  to change  server  where  is   now  B1  SHARE.
    what  is  the  best  procedure  to  migrate  it  to  new  server.
    Thanks a  lot

    Hello.
    As the B1_SHR folder cointains all the SAP Business One additional files, such as Microsoft Word and Excel documents, attachments, pictures, scanned documents, etc., you should update the right path in General Settings.
    To move the folder location try this:
    1. Copy the folder B1_SHR to target server and share it grantting access for all SB1 users.
    2. Restore a copy of the Data Base as *** TEST ***, and do the folowing steps on TEST DB.
    3. Change the settings under the Tab "Path" in "General Settings", changing all paths to the new folder and subfolder.
    4. Save settings and restart the SB1 session.
    5. Verify the functionality: Create some PDF's, export to Excel and Word, attach files to activities an messages. The files should be in the new server folder. Check this through some SB1 user accounts.
    If all work fine, you could change the folder path in productive DB.
    I hope this helps..

  • Put some data form the databse of SQL Server into SAP and auto general PR?

    Dear all,
            Can you tell me how I can put some data from the databse of SQL Server into SAP and auto general PR?
    Best regards,
    Merryzhang
    Edited by: merry zhang on Feb 4, 2009 9:10 AM

    Hi Zhang,
    If i have understood your question properly, I guess you wanted to create Purchase Requistion automatically right?
    Then you have lots of option simpilest one would be create a couple of Z table with all the fields that you require for header and Item.
    create a Program and use BAPI function module to create the PR by reading the values from those Z tables. after creation delete the contents from the table. Schedule this program in Background periodically like everyday or weekly once however you would like it to be. So once the table has contents in it and when the program runs it will create the PR's (Purchase Requisition).
    You can also use a workflow with the Z table. Once the Z table is filled you can trigger a workflow based on the Table change. I'm not sure like how to do it but I nkow that this process can also be used.
    Hope this might have thrown some light upon.
    Thanks,
    Prashanth

  • Copy file from FTP server to sap application server

    Hi,
    I am able to copy a particular file from FTP server to sap application server using FTP_CONNECT, FTP_COMMAND and FTP_DISCONNECT. But here my problem is, it copies into default application server path(DIR_HIOME). I want to copy into specified folder in the application server. How can I specify the required destination path.
    Can you please suggest how to achieve this.
    Thanks,
    Shiva Kankanala

    try something like this:
    data: user(30) type c value 'ftpuser', "ftp username
                  pwd(30) type c value 'ftppass', "ftp password
                  host(64) type c value '255.255.255.255', "ftp server IP
                  cmd1(80) type c value 'lcd /dump', "location on app server where you want to copy the file
                  cmd2(80) type c value 'get', "specifies you are going to get the file from ftp server
                  dest like rfcdes-rfcdest value 'SAPFTPA',
                  file(15) type c value 'file.txt'. "specifies file that you want to get from ftp server
    data: hdl type i,
            key type i value 26101957,
            slen type i.
    slen = strlen( pwd ).
    call function 'HTTP_SCRAMBLE'
        EXPORTING
          source      = pwd
          sourcelen   = slen
          key         = key
        IMPORTING
          destination = pwd.
    call function 'FTP_CONNECT'
        EXPORTING
          user            = user
          password        = pwd
          host            = host
          rfc_destination = dest
        IMPORTING
          handle          = hdl.
    call function 'FTP_COMMAND'
        EXPORTING
          handle        = hdl
          command       = cmd1
        TABLES
          data          = result
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      loop at result.
        write at / result-line.
      endloop.
    CONCATENATE cmd2 file INTO cmd2 SEPARATED BY SPACE.
    call function 'FTP_COMMAND'
          EXPORTING
            handle        = hdl
            command       = cmd2
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        loop at result.
          write at / result-line.
        endloop.
        refresh result.

  • Reading of File from legacy system into SAP Application Server using SAP XI

    Hi All,
      I have a file in <b>Legacy System with Exchange rates information data</b> i have to read that file using SAP XI process and put that file in SAP Application Server in SAP Specific Format and latter i have to use program RFTBFF00 to upload the file in the Application Server into SAP Tables.
      Can anybody tell me how can i do this with some example of same scenario.
      It would be better if anybody provides code example as i am new to SAP XI.
    Thanks in advance.
    Warm Regards,
    Rayeez.

    Hi Shaik,
    You need the access to the file system of ur legacy application and then you can follow this link for the required ifnormation
    File & Header
    Regards
    Vishnu

  • Query on integrating windows file server into SAP KM using WEBDAV

    hi
    I have sucessfully integrated windows file server into SAP KM using WEBDAV. I have query in it regarding the possible validation against the portal Database user. Can we configure such that the user comparison happens for LDAP as well as database user. Have anyone configured such a scenario?
    Regards,
    Ganesh N

    Hi Ganesh,
    this should work in principle.
    However you would need a user in Active Directory for each user in the portal database that should connect to the file server if you are using the SSO22KerbMap Module as I assume.
    In my whitepaper I have mentioned this for the internal user index_service that does only exist in the portal database.
    Best regards,
    André

  • Reg: If changes done in SAP BO Analysis office, then Changes can be done in SAP BW in respective targets. But, is it possible to do the same changes in SAP ECC? How?

    Hello Everyone,
    If any changes are done in SAP BO Analysis office, then the change can be done in the SAP BW in the respective Targets.
    But how can we do the changes in the SAP ECC ? Is it possible to do the changes in the tables ?
    Any answer is appreciable
    Regards,
    Karteek

    We are using the "Input ready Bex query", in order to modify the values in "BO Analysis office".
    ECC               BI               BO Analysis office
    1  ------------->   1   ---------->         1   ------
                                                                            |
                                                                            | (Now Data is changed in Analysis office from 1 to 2)
                                                                            |
    (?) <--------------   2 <----------         2 <-----
    (Will it be updated in ECC)
    (Diagram Explanation)
    From ECC we can load the data (Consider Value-1) to SAP BI and from SAP BI we can load the data to BO analysis office.
    So, now if we change the data in BO Analysis office (Value-1 changed to Value-2)..
    Now the data is changed in SAP BI to Value-2.
    So what about the data in ECC ? Whether it is changed or not?
    Please provide us a real time business Scenario..
    Thanks,
    Karteek

  • How do I change my default "SAP Working Directory" to the one I wish ?

    Hello Gurus,
    How do I change my default "SAP Working Directory" to the one I wish ?
    At the moment default SAP Working Directory to set to the following directory.
    "C:\Documents and Settings\T51273\SapWorkDir"
    So, when ever I try to download a Report/Table Contents/Spool Request, SAP prompts me to save in the above SAP Working Directory, which is "C:\Documents and Settings\T51273\SapWorkDir". Ofcourse I can change the folder in the dialogue box, but I don't want to change the folder each and every time I download a report from SAP.
    I wish to change my default "SAP Working Directory" to "My Documents" Folder. So that from next time,
    if ever I try to download a Report/Table Contents/Spool Request, SAP should prompt "My Documents" Folder. That way I don't have to change the folder at the time of saving.
    Full Points are assigned for an answer that works...
    Thank You,
    Nag.

    Hello,
    A short question about transaction SO21:
    Is this a local setting, per GUI?
    Or does this affect all users?
    I have a problem opening an attachment (Mandates).
    SAP wants to save it to C:\Windows\System32\
    I see that is stated at SO21.
    If I change that to another (accessable) location, does that affect the opening of the attachment?
    Thanks!

  • Need help On Triggers/Change pointers in SAP

    Hi Experts,
    I Need help On Triggers/Change pointers in SAP.
    I have a requirement  as soon as an entry is created in one of the  Standard SAP  table it should check against my Ztable and update and create the corresponding entry in another Ztable.
    Can some one help me out on this with the syntax and how to do it

    Hi,
    Check whether you have any enhancement option (BADI, user exit, Customer enhancement etc) in the program which is used to save the data in the SAP standard table. If so, then try to write your code in that appropriate enhancement.

Maybe you are looking for

  • Access to Entity Service from Portal Application

    Hi Experts, I have a hybrid application which will be making use of both Web Dynpro and Portal Applications. I decided to use Entity Services to store my back-end data and can access it fine from the Web Dynpro project. I have included the public par

  • URGENT!!! - Applying existing credit memo to existing invoice

    Hi All, I have found a package (not a public API) which can be used to applying existing CM to existing INV, package is 'ARP_PROCESS_APPLICATION.CM_APPLICATION'. There are many input parameters that need to go in but I am just listing out the ones id

  • Error while testing Customizations in Integrated Weblogic server

    Hi, I did a customization to a seeded jsff and am trying to run the associated JSPX file from Jdev. But I am getting the below error when I try to run the associated JSPX file from Jdev. [12:34:37 AM] Deploying Application... <Apr 24, 2013 12:34:38 A

  • Role upload into BI portal pointing to 3.x version

    Hi, sap BI Bakend menu roles uploaded into BI Portal, But When I check iview property BWVersion its pointing to 2.x/3.x instead of Netweaver BI 7.0 And I assumed queries developed in 3.x pointing to 2.x/3.x. to avoid that I opened query in 7.x tool a

  • How to transfer photos from itouch to macbook pro

    Hello, long story short, my iphoto library got deleted before the transfer was complete to aperture.......i now have 2000 corrupted photos. i only have one back up. ther are all still on my itouch (4th gen with 4.3.5). i need a way to transfer them t