File transfer to XI sever

Hi Experts ,
I have all the data in my internal table , now i have to place that data in the form of TEXT file and plcae it to the XI server.
Please let me know whta needs to be done to place the file in XI server.
thanks in advance..

Hi Sweethu,
You need to use Proxy to File here. In this case it is an Outbound Proxy.
1. First of all in IR of XI, you need to create Data Type, Message Type and Interface Type
for Sender Stucture.
For example, Data Type is 'DT_empdetails_OB', Message Type is 'MT_empdetails_OB' and
Interface Type is 'MI_empdetails_asyn_OB'.
2. Now go to transaction 'SPROXY' in XI Server and right click on Interface Type you have
created and select 'Create'. Provide details like Prefix and save.
Proxy class gets generated with name 'zpi_co_mi_empdetails_asyn_ob'.
You can also find Proxy Stucture, Table Type and Message Type in the Class for Proxy. First please go through those for better understanding.
3. Now go to transaction 'SE38' in ABAP and develop a report that sends data from proxy to
XI.
Find the code below.
After placing data in Internal Table, add the following code to the report.
DATA:
Proxy Structure
    lw_empdetials_dt     TYPE          zpi_dt_empdetails_ob,
Proxy Table Type
    li_empdetials_tab    TYPE          zpi_dt_empdetails_ob_tab,
Message Type
    lw_empdetials_mt     TYPE          zpi_mt_empdetails_ob,
Proxy Class
    l_empdetials       TYPE REF TO   zpi_co_mi_empdetials_asyn_ob,
Object instance for system exception
    l_sys_exception TYPE REF TO   cx_ai_system_fault.
Create instance of proxy class
  TRY.
      CREATE OBJECT l_swrdata.
    CATCH cx_ai_system_fault INTO l_sys_exception.
      MESSAGE S001 WITH l_sys_exception->errortext.
  ENDTRY.
Refreshing Proxy Table
  REFRESH li_empdetials_tab.
Refresing Proxy Structure and Message Type.
  CLEAR : lw_empdetials_mt,
          lw_empdetials_dt,
          w_final.
Looping at Final Output internal Table i_final
  LOOP AT i_final INTO w_final.
     lw_empdetials_dt-empno = w_final-empno.
     lw_empdetials_dt-empname = w_final-empname.
     lw_empdetials_dt-dept = w_final-empdept.          
Appending Proxy Structure to Proxy Table
    APPEND lw_empdetials_dt TO li_empdetails_tab.
Assigning Proxy table data to Message Type
    lw_empdetials_mt-mt_empdetails-records = li_empdetials_tab.
  ENDLOOP.
If Message Type is Not Blank
  IF lw_empdetials_mt IS NOT INITIAL.
    TRY.
Calling METHOD mi_empdetials_asyn_ob for CLASS ZPI_CO_MI_empdetials_asyn_OB
        CALL METHOD l_empdetials->mi_empdetials_asyn_ob
          EXPORTING
Exporting Message Type to Class to Process Data to PI
            output = lw_empdetials_mt.
Catching any Error Messages of Type cx_ai_system_fault.
      CATCH cx_ai_system_fault INTO l_sys_exception.
        MESSAGE S002 WITH l_sys_exception->errortext.
    ENDTRY.
Committing Work
    COMMIT WORK.
  ENDIF.
Clearing Proxy Structure.
  CLEAR lw_empdetails_dt.
Clearing Message Type
  CLEAR lw_empdetails_mt.
Clearing Proxy Table
  REFRESH li_empdetials_tab.
4. Now Create Message Mapping and Interface Mapping in IR.
5. Create Business Scenario in ID, import the Sender and Receiver Systems, create Receiver
Determination, Interface Determination and Receiver Agreement.
We don't have Sender Agreement. As we are using Proxy and Proxy directly communicates with
XI, no need of Communucation Channel and so no need of Sender Agreement.
Any clarifications, please let me know.
Regards,
Ravi Varma.

Similar Messages

  • Urgent: File transfer to sever

    Dear Guru,
    I have some question.  I am writing a program to upload excel file from PC to SAP.  I use abap function to get excel file from PC and store data in an internal table.  I am then use function file transfer (open dataset and close dataset) to transfer that internal table to server as a text file.  However, everything is going smoothly from a begining until the end.  The message is displayed to me as file xxx has been transfered to sever xx.  Unfortunately, when I access to sever, I cannot find that text file.  Anything wrong with my coding?  Please help me!!  I will reward you.  thank you very much.
    Best Regard
    This is my code.
    OPEN DATASET FILENAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT MESSAGE MSG_TEXT.
      IF SY-SUBRC NE 0.
          WRITE: 'FILE CANNOT BE OPENED FOR REASON:', MSG_TEXT.
      ELSE.
          LOOP AT ITAB.
                  TRANSFER ITAB-COL1 TO FILENAME.
                  TRANSFER ITAB-COL2 TO FILENAME.
                  TRANSFER ITAB-COL3 TO FILENAME.
                  TRANSFER ITAB-COL4 TO FILENAME.
                  TRANSFER ITAB-COL5 TO FILENAME.
                  TRANSFER ITAB-COL6 TO FILENAME.
                  TRANSFER ITAB-COL7 TO FILENAME.
                  TRANSFER ITAB-COL8 TO FILENAME.
                  TRANSFER ITAB-COL9 TO FILENAME.
                  TRANSFER ITAB-COL10 TO FILENAME.
                  TRANSFER ITAB-COL11 TO FILENAME.
                  TRANSFER ITAB-COL12 TO FILENAME.
                  TRANSFER ITAB-COL13 TO FILENAME.
                  TRANSFER ITAB-COL14 TO FILENAME.
          ENDLOOP.
          MESSAGE I000(38) WITH FILENAME ':TRANSFERRED SUCCESSFULLY'.
          CLOSE DATASET FILENAME.
      ENDIF.

    Hi ,
      Coule you check whether data is there in your internal table or not , because i created a sample program and it worked file.
    Also check whether you have access to modify the file ,i.e. check if the file is read only , try writing to a new file .
    Do revert back with the observations.
    Regards
    Arun
    <u>Code which i used for testing is as below</u>
    data : filename(20) value '/usr/arun.txt'.
    data : begin of it_1 occurs 0 ,
             matnr type matnr ,
             labst type labst ,
           end of it_1.
    select matnr labst
    into table it_1
    up to 10 rows
    from mard.
    data : begin of it_2 occurs 0 ,
            matnr type string ,
            labst type string ,
           end of it_2.
    OPEN DATASET FILENAME FOR OUTPUT IN TEXT MODE .
    loop at it_1.
    it_2-matnr =  it_1-matnr.
    it_2-labst = it_1-labst.
      TRANSFER IT_2-matnr TO FILENAME.
      TRANSFER IT_2-labst TO FILENAME.
    endloop.

  • Multi-IM client with file transfer

    I've been trying to find the ultimate multi-IM client which supports file transfers on all protocols... Quite ambitious, I know. I haven't found one, so I'll share my experience and ask for other suggestions. I'm mainly interested in Yahoo! Messenger, GTalk and Facebook Chat.
    - Messages/iChat : great, except that the Facebook Chat account doesn't support file transfers. I only get a text: <contact name> sent you an image/file if I receive and an error if I try to send.
    - Adium - no file transfers whatsoever. I know they have included this in "Known Issues", that it's actually a matter of luck whether file transfer works or not...
    - Trillian - no file transfers on Facebook Chat.
    - Nimbuzz - no file transfers on Facebook Chat.
    - Psi - no file transfers on Facebook Chat.
    I have yet to try the newly launched Flamingo, but I really wouldn't like to spend $10 for it...
    Is there any way I could make Messages support file transfers on Facebook Chat? It would be my first choice, as it's deeply integrated into OS X and its iMessages support. I asked this on the Facebook Community, but still no answer. I have set up the Facebook Chat account as they say on the Facebook website.
    Does it have anything to do with Mavericks?

    Hi,
    The Login should be the 5222 item out of those.
    If you open the App in the Applications folder you will see listings for Messages and also IMAgent.
    And
    I do have several AIM valid IDs logging in.
    Several are now using port 443 as is the Google Login I have running.
    The two UDP ports ar much more likely to be the File Transfer ones.
    The "report" page of Little Snitch may give details in the right hand column  about the IP address of the server used and this may also list a name of the sever that can be helpful.
    The port 80 listed is probably to verify your ID against the regular Facebook server.
    That said the two UDP ports are nothing like any I have seen Messages use.
    9:14 pm      Thursday; November 21, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Payment DME file ditectly to SAP SEVER

    hi!
       I need to download the vendor payment DME file ditectly to SAP SEVER (Transction : F110) and I would not like to drop in the user micro or cd.
       May you help-me?
    thanks.

    Hi,
    The internal table data can be stored in the SAP directories which you can see in transaction AL11.
    For example
    DATA: file TYPE string VALUE `flights.dat`,
          wa   TYPE spfli.
    FIELD-SYMBOLS TYPE x.
    OPEN DATASET file FOR OUTPUT IN BINARY MODE.
    SELECT *
           FROM spfli
           INTO wa.
      ASSIGN wa TO CASTING.
      TRANSFER TO file.
    ENDSELECT.
    CLOSE DATASET file.
    Hope it helps you.
    Regards
    Manjari.

  • File transfer errors between WP8.1 and W8.1

    This is probably in the wrong forum. But I cannot find anything which this falls under.
    Also please forgive my lack of competence in filing an issue like this.
    I own a Lumia 1020 and was trying to move photos off my phone to laptop. More specifically was trying to move the DNGs. I had already moved the jpegs. When it came to cutting or copying the DNGs I keep getting an unknown error saying that the operation would
    not work. (sorry I don't have a screenshot of the prompt)
    Now, I decided to restart my phone and lo and behold that batch of DNGs are now lost. Which I must say is quite a bad thing given that those photos were rather important.
    Since that cannot be undone, I decided to move the other DNGs which to my surprise actually did start the transfer process without any hiccup. But, when my phone went to sleep it seemed to sever the connection between my laptop and phone thus killing the
    file transfer process and generally 'unplugging' itself from my laptop until I unlocked it again.
    Again I'm not sure how to submit this or under what category it falls. But this is an issue which shouldn't be happening with the finalised version of WP8.1

    Hello,
    You could also ask in the
    Windows 8.1 forum on Microsoft Community.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • "Windows - No Disk" error message on file transfer

    Hello!
    I updated our ZDM7 server from plain old ZDM7 with no updates to ZDM7 SP1
    IR1. Now, when initiating File Transfer operation with any workstation, up
    comes this error message:
    "Windows - No Disk"
    "Exception Processing Message c0000013 Parameters 75b6bf9c 4 75b6bf9c 75b6bf9c"
    [Cancel] [Try Again] [Continue]
    If I click "Continue" 4 times, file transfer starts up successfully.
    Any ideas about how to get rid of this annoying message?
    Toomas Aas

    Toomas,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • UCMA 4 and back to backing a file transfer request

    OK, I know that file transfer isn't technically supported on UCMA 4.0, but I wanted to take another look at it and see whether there was a way to b2b a file transfer request. After all, there's no reason that it shouldn't work if the messaging is correct,
    right? The scenario I have is A <-b2b-> app <-b2b->B.  I have an IM conversation going on between A and B, so now I'm trying to set it up so that A can send a file to B. 
    So far I've extended the platform to accept file transfer requests by creating my own call and factory classes, and then registering them using RegisterPlatformExtension.  This means that when A sends a file, the INVITE gets delivered to my application. 
    Now I'm taking that INVITE and creating a new b2b call.  A file transfer request looks something like this:
    TL_INFO(TF_PROTOCOL) [0]16A8.4B28::02/10/2015-19:53:05.007.001d492f (SIPStack,SIPAdminLog::ProtocolRecord::Flush:ProtocolRecord.cpp(265))[3939761282] $$begin_record
    Trace-Correlation-Id: 3939761282
    Instance-Id: FDB3
    Direction: incoming
    Peer: 10.0.154.20:49282
    Message-Type: request
    Start-Line: INVITE sip:[email protected] SIP/2.0
    From: <sip:[email protected]>;tag=eafd3e699d;epid=ccd5657cac
    To: <sip:[email protected]>
    Call-ID: 0acf0330423241258576d7c5cc42aa01
    CSeq: 1 INVITE
    Contact: <sip:[email protected];opaque=user:epid:d2lIs-103l2YSpDwCSajtAAA;gruu>
    Via: SIP/2.0/TLS 10.0.154.20:49282
    Max-Forwards: 70
    Content-Length: 1920
    Content-Type: multipart/mixed;boundary="----=_NextPart_000_0026_01D04541.4641C2D0"
    Message-Body:
    ------=_NextPart_000_0026_01D04541.4641C2D0
    Content-Type: application/sdp
    Content-Transfer-Encoding: 7bit
    Content-ID: <[email protected]>
    Content-Dis; handling=optional; ms-proxy-2007fallback
    v=0
    o=- 0 0 IN IP4 192.168.200.71
    s=session
    c=IN IP4 192.168.200.71
    b=CT:99980
    t=0 0
    m=data 21300 TCP/RTP/SAVP 127
    a=ice-ufrag:lYAu
    a=ice-pwd:y0gkW4r9zGSW6E2VdtMprlEh
    a=candidate:1 1 TCP-PASS 2120613887 192.168.200.71 10856 typ host
    a=candidate:1 2 TCP-PASS 2120613374 192.168.200.71 10856 typ host
    a=candidate:2 1 TCP-ACT 2121006591 192.168.200.71 21300 typ host
    a=candidate:2 2 TCP-ACT 2121006078 192.168.200.71 21300 typ host
    a=candidate:3 1 TCP-PASS 2120612863 10.0.154.20 31624 typ host
    a=candidate:3 2 TCP-PASS 2120612350 10.0.154.20 31624 typ host
    a=candidate:4 1 TCP-ACT 2121005567 10.0.154.20 3921 typ host
    a=candidate:4 2 TCP-ACT 2121005054 10.0.154.20 3921 typ host
    a=cryptoscale:1 client AES_CM_128_HMAC_SHA1_80 inline:4CZbzYM/GYDbygj8JwMTodKo85C4Xx7TMzeMIuBU|2^31|1:1
    a=crypto:2 AES_CM_128_HMAC_SHA1_80 inline:Ohlo65gDsUvxCF39A382Rl4vGL+SG9R/lUEYU/br|2^31|1:1
    a=crypto:3 AES_CM_128_HMAC_SHA1_80 inline:EZ7Zm3K0H/WW5K49LAk9/C0T8x8nhkumJOycSek7|2^31
    a=setup:active
    a=connection:new
    a=rtcp:21300
    a=mid:1
    a=sendonly
    a=rtpmap:127 x-data/90000
    ------=_NextPart_000_0026_01D04541.4641C2D0
    Content-Type: application/ms-filetransfer+xml
    Content-Transfer-Encoding: quoted-printable
    Content-ID: <[email protected]>
    Content-Dis; handling=optional
    <request xmlns=3D"http://schemas.microsoft.com/rtc/2009/05/filetransfer" =
    requestId=3D"13">
    <publishFile>
    <fileInfo embedded=3D"true">
    <id>{67190A30-C59F-480D-96DD-5F3941C39C49}</id>
    <name>dbchange.log</name>
    <size>3609</size>
    </fileInfo>
    </publishFile>
    </request>
    ------=_NextPart_000_0026_01D04541.4641C2D0--
    $$end_record
    I've got my b2bed invite looking almost identical to the original invite by creating a custom MIME type on the CallEstablishOptions for the back to back call using something like this:
    Regex r = new Regex(@"^((.|\n)*)(\<request)((.|\n)*)(request\>)((.|\n)*)$");
    Match m=r.Match(args.RequestData.GetMessageBodyString());
    content=string.Format("Content-Transfer-Encoding: quoted-printable\r\n{0}{1}{2}",m.Groups[3],m.Groups[4],m.Groups[6]);
    opt.CustomMimeParts.Add(new MimePartContentDescription(new ContentType("application/ms-filetransfer+xml"),System.Text.ASCIIEncoding.UTF8.GetBytes(content)));
    opt.CustomMimeParts[0].ContentDispositionHeader = new SignalingHeader("Content-Disposition", "render; handling=optional");
    So far the only differences I can see in my outbound message vs the original SDP are that the Content-Transfer-Encoding might not be seen as a header (since the SignalingHeaders property on the MimePartContentDescription is read only), and the Content-Transfer-Encoding
    on the first MIME part (created by the BackToBackCall) is missing (even though I specified it on the PassThroughHeaders).  Even with all of this though, I still get a 488 on client B when I attempt the transfer (even though the invite goes through). 
    What I'm wondering though, is whether there's any way at all to get this working the way I'd expect, where a file gets transferred directly between A and B, without my bot having to receive it first.  The other approach I've looked at is binding my
    own media provider class to customize the SDP, but if this MIME part approach isn't going to work, then I have a feeling the media provider won't work either. 
    Any suggestions on where to look next? 
    Thanks!
    Chris

    Chris,
    I am trying to do something similar to this and from what I have read and in talking to MS is that you need to extend the Call and Flow class which it looks like you have been able to do. Could I bother you to share what you have written? Maybe we can help
    each other out on this. I am basically trying to create an application that will be able to capture a file transfer and save it, then send the original request on to the intended recipient.
    Thanks in advance,
    Anthony

  • I have an old ipod i just got the new iphone 4s but the songs that are on my ipod are not on my itunes how can i transfer them from my old ipod to my itunes. reason they are not on my itunes becasue i've change computer also and didn't a file transfer bef

    i just purchase the new iphone 4s. I also have an old ipod with a lot on songs which are not on my itunes becasue i didn't do a file transfer when i got my new computer a ew months ago. How can i add my songs from the old ipod to my itunes.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • MBP (mid-2009) freezing, slow installations and file transfer

    I bought the latest MacBook Pro model and installed Snow Leopard on a cleanly formatted hard drive. I have tried migrating via ethernet and FireWire from my iMac, but the migrations failed either due to freezing (via FireWire after roughly 24 hours of file transfer) or by an error message (ethernet with Migration Assistant).
    Only through a Time Machine backup was I able to transfer my account files to the MBP, which again totaled at over 20 hours of transferring. The system was a mess, clogged constantly by freezing and spinning beach balls of death for durations lasting around 10-20 seconds during which music would clip after 5-10 seconds of everything not responding, this being accentuated especially during installations. I decided to format and try anew.
    Now I've formatted the hard drive, installed Snow Leopard and will transfer my files manually onto a clean account. Installations take a long time although SL installation is within 30 minutes, iLife took 1.5 hours to install 5 GB. During the installation Safari stopped responding, as did the entire system, and the spinning beach ball would keep spinning. Watching a 480p trailer in Quicktime made the entire computer freeze up (no video/audio) for 10 seconds halfway. Transferring 136 GB (my Music folder) will take around 15 hours according to the estimate after 10 minutes of transferring.
    I've sold my iMac now and all I have are the files on my external hard drive. I want to get them onto my MBP ASAP but the slowness is preventing me from doing what needs to be done and it's very frustrating. When I try to boot into Hardware Testing by holding D down the computer doesn't do it no matter what (Application DVD in or not, plugged into power or not). I've tried resetting PRAM but I get the same inaction.
    Any ideas?
    Edit: I've done Disk Utility to no avail, it finds nothing wrong.

    Installed, still getting freezes with spinning beach balls. Transfer says it would take 1 hour opposed to that 15 hours, but it stops transferring after X amount of gigabytes (from 0.5 to 5), not do anything for a while and then continue, stretching the estimate to over 2 hours after some time. I don't know if this is just with the hard drive.
    The freeze-ups are frustrating as **** and make for a very poor experience. Any ideas to get to the bottom of this? I still haven't been able to boot into the Hardware Test no matter how much I try.

  • File transfer: AFP vs FTP

    Setup:
    Cable modem to Linksys WRT54g broadcasting only in G only mode for PBG4.
    AEBSn#1 in bridge mode via Ethernet from Linksys, N only mode, broadcasting wirelessly.
    AEBSn#2 is wirelessly extending N-only from AEBSn#1, and is connected to a mini with external hard drive.
    Using PBG4, if I mount a volume from the mini and transfer a file, transfer time is very slow: approx. 20 minutes for a 200MB file. If I FTP from PBG4 into the mini, transfer time is 2 minutes.
    (I think the same happens if I use a Macbook Pro connected to the N-only network, but it's in for repairs right now, so I can't be sure.)
    Any idea why the transfer times are so different b/w AFP and FTP and, more importantly, what I can do to remedy this? Thanks.

    Same problem here. I have two AEBS Gigabit in bridge mode. Transfering a file via FTP or with Apple Remote Access (ARD) brings up to 3 MB/sec. Same file and same configuration connected via AFP only brings 60 kB/sec.
    I hope somebody has an idea how to fix this.
    Thanks in advance

  • How to achieve the maximum file transfer rate from PXI to local host?

    I will have to copy a huge amount of data (as big as 50 GB) from a PXI-8106 unit on site to a laptop. Currently it would take several hours. It is critical to max out the data transfer rate.
    The standard method we've been using is just drag and drop using Windows Explorer via FTP. I tried to use FTP VIs with Filezilla Server as well but the transfer rate is only like 1.5 MB/s. Is this normal? Once I saw it was 3.0 MB/s but for some reason, that isn't happening now.
    For another option, I tried to transfer data to a USB flash drive but it's even slower. As far as I know, USB 2.0 transfer rate is supposed to be around 60 MB/s but why would it be slower than 1.5 MB/s? What could be the speed limiting factor in my file transfer setup?
    Any tips on improving file transfer rate would be appreciated!

    Sustained 40 MB/s? That is my dream speed! The maximum speed I've ever seen here was about 25 MB/s, which is still very good, and that happened only after copying back and forth, which I explained above. Let me go through what I did with screencaps first.
    These are the test tdms files to transfer in the PXI: an original file witten in the PXI and its copy file. I copied the original file from PXI to laptop and renamed it (added '_copy') and then copied it back to PXI.
    FTP module is transferring the original file to the Filezilla server on laptop. Note the low speed.
    FTP module is transferring the copy file to the Filezilla server on laptop. Note the higher speed.
    This is the FTP sub VI I'm using. It transfers files in sub-folders (one level lower), too. The data connection is set to 'passive' on the FTP Put Multiple Files VI but it doesn't seem to make any difference. I attach the sub VI.
    You tried the file transfer with a 500 MB text file. Would there be any difference if the file type was tdms? Would the RAM size matter? It is 2GB here.
    And the LED is orange, which means Gigabit.
    Another question: Is there any way to programmatically stop file transfer in progress? Currently, I just have to restart the PXI.
    Thank you!
    Attachments:
    FTP.vi ‏40 KB

  • How do you install CS5 onto a new computer without Time Machine/file transfer

    I'm not getting a new computer, but my current one is getting a little old (Macbook Pro V. 10.6.8) and I'm afraid it might crash if I download the newest Maverick system, which is why I want to make absolutely sure I'm able to save and transfer all my old files and CS5 Creative Suite programs if this indeed happens. I don't trust Time Machine to do it; my boss had this happen and Time Machine did not transfer the Adobe programs. I also don't want to rely on Time Machine and any other file transfer (which all new Macs offer) because I've had brand new computers crash because of old corrupt files from my old computer converting over, and the Apple people said it's a bad idea (which would have been nice to know BEFORE the computer crashed and everything. . .) I've been told you can only use the CD to install CS5 onto your computer twice, which I've already done (thanks to my brand new computer crashing once already). So I would like to know how it's possible to install the program onto a new computer should this one crash, without the use of file transfer or Time Machine. I have no interest in upgrading to CC.
    Thanks!

    Avoid using Time Machine for re-installing Adobe software. It rarely works and usually breaks the activation mechanism.
    I've been told you can only use the CD to install CS5 onto your computer twice,
    Not quite.
    You can install the software as many times as you like but you can only activate the software for use on a maximum of two computers at the same time.
    To re-install you will need your CS5 serial number.
    Download the installer from Download CS5 products
    Install then enter your serial number when prompted.

  • When upgrading to OSX Yosemite do all my programs and files transfer over such as Office for mac, saved documents from word,excel,pics,pdf files,etc.etc...

    Will all my files transfer over (or stay) automatically right after upgrading to Yosemite or do I have to backup every single desired program or document? Question is do I HAVE to please if you can answer if its mandatory or not. Not looking for recommendations that I SHOULD back up or anything like that just want to know if it is mandatory to perform a backup to be able to keep or transfer all my current programs and apps and documents currently on my MB Pro Retina.

    Yes, upgrading to Yosemite will not touch your 3rd party apps or files in the Home folder.
    Although not mandatory you should have a a backup of your hard drive regardless if you upgrade to Yosemite or not.  To not have a backup is just playing  Russian roulette as there are only two types of hard drives;  those that have failed and those that will.

  • Remote Execute and File Transfer Error

    Whenever we try to do a Remote Execute of File Transfer, we get an 1899
    error. Here's the strange thing, we can RE and FT to desktops that are
    still running the ZfD 4.x client. Seems to be only happening on the latest
    (ZfD 6.5sp2). Any ideas? Also, remote control and remote view still work
    w/o problem.

    Blewis,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Creative Zen USB and File transfer probl

    Am the unhappy owner of a brand new Creative Zen touch 20gb mp3 player which apparently works with usb 2.0. After installing the software which came on the cd (file transfer software and nomad explorer) the Zen appears to get recognised by the pc with no problems when i connect via the usb cable. The Zen also displays 'docked' which is all very well. However if i select say 0 tracks to download to the player the xp progress bar seems to halt at around 60-70% and eventually the program (nomad) complains that the operation cannot be completed. I noticed that the small hard dri've in the player feels as though it is 'spinning down' around a similar time to the message being displayed. If at this stage i refresh the players view in nomad explorer it can be found with no problem....its just i cant write to it until i unplug the usb from the zen and reconnect. I spoke to creative who told me that because my pc (in system devices) reports that my usb is an 'open host' adapter...this means it cannot supply adequate power to the player....but surely USB2.0 is USB2.0 and if something claims to be USB2.0 compliant that would be the end of the story? The usb card im using is a usb 2.0 pci card and is also pretty new. Any help/ideas would be greatly appreciated.
    I have tried various usb ports, usb and2 conections ( I have both), various cables and combinations and the same happens. I have also tried win xp and win98, and other disks I have with the same result. I have managed to transfer 20 os so mp3s (a small proportion of those I have been trying to transfer)after 3-4 hours hard labour but never the contents of a full folder. After a proportion of the files are transferred then Zen touch becomes 'busy' or 'not connected'. Obviously there is no way I can continue like this and it will have to go back.
    I have tried the slightly newer driver but this did not work at all and I had to roll back to the one that came on the CD. I feel that I have given it a fair shot trying all the workarounds.
    Is is a USB power problem? Should a powered usb hub cure it's If so why?
    But is this surely is Creative's problem. It is obviously a known issue but what are they doing about it's Putting out Zens which are prone to this problem is not good practice. Any solutions out there?

    Hey,
    If you tried it on a friend's computer and you're still having problems then it may be a problem with the Zen. Before you call or e-mail tech support, here is what they will tell you do to first before they really get in depth with helping you. Go into Rescue Mode (there is an explanation on how to do this at the top of the forum) and do a disk clean up. After that, try it. If that doesn't work then click the reload OS option which will take the firmware (like windows to your PC) off the Zen. Don't worry you can easily put it back on. Go to Support>Downloads>select Zen Touch, etc, etc. and download the latest firmware and run it. Hopefully that will fix it....
    I had some connection problems myself with my ZT as soon as I got it as well. and simply reflashing the firmware fixed and now I love my Zen. I hope everything works out for you.
    Wilco

Maybe you are looking for

  • Should i install mac osx or keep os 9.2.2?

    Ok when i got my powerbook it had 10.2 on it but it only had 64 megs of ram. It ran sluggish but i did like having osx finally and the never crashing was pretty cool bit it was too slow and i am sure memory played a big part of that. My question is,

  • Statvfs returns wrong values

    Hi, I am developing a program the will check for disk space (used,blocks, available ...) and i am using the statvfs.h file. When tested with small capacity disks (~5G) it works fine (compared to df -k). When tested with large capacity disks (~400G) i

  • Inputs on Currency Conversion

    Hi Experts, I need some help in the Currency conversion variable that I am using in my report. I have few caluculated key figures that are caluculated on the basis of difference between current date and the Net Due date. Currency conversion is used i

  • A skype account lost - how do I regain it?

    Hello, all I used to have a skype account that I quit using a long time ago (about a year). Now, I tried to revive it but it turned out that I sadly haven't saved neither the password nor the e-mail tied to it. Could anyone tell me please what to do

  • Logical File creation

    Hi Experts, I need to craete a Logical file for BOM conversion. Could someone help me what it is with necessary steps exactly? Your help Appreciated with points Thanks Dan