File Transfer Mechanism issue from AL11 server to Shared drive

Hi,
we are doing upgrade from BW3.5 to BI 7 .i am facing an issue in BI 7 where i need to transfer files from AL11 to shared drive.
but  BI 7.0 supports the fixed format of file ,while i want to add timestamp at the file name but this is not possible in BI 7 while it was possible in BW 3.5
let me know any work around to add the timestamp in file name. we are using TRFC mechanism to transfer file from AL11 to Shared
regards
atul

Hi,
If the destination folder is shared and can be accessed via SAP, then you can use FM EPS_FTP_PUT.
call function 'EPS_FTP_PUT'
  exporting
    rfc_destination          =
    local_file               =
    local_directory          =
    remote_file              =
    remote_directory         =
    overwrite_mode           =
    text_mode                =
    transmission_monitor     =
    records_per_transfer     =
    requested_file_size      =
    monitor_title            =
    monitor_text1            =
    monitor_text2            =
    progress_text            =
    object_name              =
  importing
    local_directory          =
    local_path               =
    remote_file              =
    remote_directory         =
    remote_path              =
    file_size                =
    local_system_info        =
    remote_system_info       =
  exceptions
    open_input_file_failed   = 1
    open_output_file_failed  = 2
    read_block_failed        = 3
    write_block_failed       = 4
    close_output_file_failed = 5
    invalid_file_size        = 6
    stopped_by_user          = 7
    invalid_input_file_size  = 8
    restart_failed           = 9
    connection_failed        = 10
    invalid_version          = 11
    others                   = 12.
if sy-subrc <> 0.
  message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
Regards,
  Mário Espinheira

Similar Messages

  • FILE TRANSFER RATE SLOW FROM WIN SERVER 2012.

    Dear Team
    The File Transfer problem From my Windows Server 2012R2 (File server) showing 200KB transer rate in 1g network. Please help

    Hi,
    What's the operation system are you using, Windows XP/2003 or Windows 7/8/2008/2012?
    You can test to disable SMB2/3 and see if issue is related:
    Set-SmbServerConfiguration -EnableSMB2Protocol $false
    See:
    http://support.microsoft.com/kb/2696547/en-us
    Note: This is just for testing and you can enable it after testing.
    If it is SMB related, try to disable the TCP Chimney Offload, Receive Side Scaling and Network Direct Memory Access features.
    Information about the TCP Chimney Offload, Receive Side Scaling, and Network Direct Memory Access features in Windows Server 2008
    http://support.microsoft.com/kb/951037
    Here are the steps to disable RSS, TCP Chimney Offload and NetDMA:
    netsh int tcp set global rss=disabled
    netsh int tcp set global chimney=disabled
    In HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters, double-click the EnableTCPA registry entry.
    Note: If this registry entry does not exist, right-click Parameters, point to New, click DWORD Value, type EnableTCPA, and then press ENTER.
    To disable NetDMA, type 0 in the Value data box, and then click OK.
    Let us know if issue still exists.
    Meanwhile we have an Forum FAQ article which provided some suggestions and quick-fixes for network slowness issue. Please see if it could help:
    [Forum FAQ] Troubleshooting Network File Copy Slowness
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/7bd9978c-69b4-42bf-90cd-fc7541ccb663/forum-faq-troubleshooting-network-file-copy-slowness?forum=winserverPN
    If you have any feedback on our support, please send to [email protected]

  • File Upload and Download From Presentation server

    I have a requirement to provide a selection option to user to upload a big file from presentation server.
    Not sure whther we can a upload the entire file at one short from presentation server. PLease provide some sample code to upload a huge file from presentation server and downlaod a file to presentation server.

    Hi,
    Try this code for download----
    TABLES:
      kna1.                                " General Data in Customer Master
    TYPES:
      BEGIN OF type_s_kna1,
        kunnr TYPE kna1-kunnr,             " Customer Number
        adrnr TYPE kna1-adrnr,             " Address
        anred TYPE kna1-anred,             " Title
        erdat TYPE kna1-erdat,             " Date on which record created
        ernam TYPE kna1-ernam,             " Name of Person who Created the
                                           " Object
    END OF type_s_kna1.
    DATA:
      fs_kna1 TYPE type_s_kna1.
    DATA:
        t_kna1 LIKE
      STANDARD TABLE
            OF fs_kna1.
    " Select-options----
    SELECT-OPTIONS:
      s_kunnr FOR kna1-kunnr.              " Customer Number
    AT SELECTION-SCREEN ON s_kunnr.
      SELECT kunnr                         " Customer number
        FROM kna1
        INTO s_kunnr UP TO 1 ROWS.
      ENDSELECT.
      IF sy-subrc NE 0.
        MESSAGE 'No such customer exists' TYPE 'S'.
      ENDIF.                               " IF SY-SUBRC NE 0
    START-OF-SELECTION.
      PERFORM customer_selection.
    FORM customer_selection .
      SELECT kunnr                         " Customer Number
             adrnr                         " Address
             anred                         " Title
             erdat                         " Date of record creation
             ernam                         " Person who created object
        FROM kna1
        INTO TABLE t_kna1
       WHERE kunnr IN s_kunnr.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
        BIN_FILESIZE                  =
          filename                      = 'C:\TEMP\CUSTOMER.TXT'
        FILETYPE                      = 'ASC'
         write_field_separator         = 'X'
        HEADER                        = '00'
        WRITE_LF                      = 'X'
         col_select                    = 'X'
         col_select_mask               = 'XXXXX'
        IGNORE_CERR                   = ABAP_TRUE
        REPLACEMENT                   = '#'
      IMPORTING
        FILELENGTH                    =
        TABLES
          data_tab                      = t_kna1
       EXCEPTIONS
               dataprovider_exception        = 20
         control_flush_error           = 21
         OTHERS                        = 22
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.                               " IF SY-SUBRC NE 0
    ENDFORM.                               " FORM CUSTOMER_SELECTION.
    for upload----
    " Table declarations----
    TABLES:
      bkpf.                                " Accounting Document Header
    TYPES:
      BEGIN OF type_s_bkpf,
        bukrs TYPE bkpf-bukrs,             " Company code
        belnr TYPE bkpf-belnr,             " Accounting Document Number
        gjahr TYPE bkpf-gjahr,             " Fiscal Year
        blart TYPE bkpf-blart,             " Document type
        bldat TYPE bkpf-bldat,             " Document Date in Document
      END OF type_s_bkpf.
    DATA:
      fs_bkpf TYPE type_s_bkpf.
    DATA:
      fname(10) TYPE c VALUE 'ACCOUNTING'  .
    DATA:
        t_bkpf LIKE
      STANDARD TABLE
            OF fs_bkpf.
    *" Select-options----
    SELECT-OPTIONS:
      s_bukrs FOR bkpf-bukrs,              " Company code
      s_gjahr FOR bkpf-gjahr.              " Fiscal year
    OPEN DATASET fname FOR OUTPUT IN BINARY MODE .
    PERFORM account_selection.
    LOOP AT t_bkpf INTO fs_bkpf.
      TRANSFER fs_bkpf TO fname.
    ENDLOOP.                               " LOOP T_BKPF
    CLOSE DATASET fname.
    FORM account_selection .
      SELECT bukrs                         " Company code
             belnr                         " Accounting document number
             gjahr                         " Fiscal year
             blart                         " Document year
             bldat                         " Document date
        FROM bkpf
        INTO TABLE t_bkpf
       WHERE bukrs IN s_bukrs
         AND gjahr IN s_gjahr.
    ENDFORM.                               " FORM ACCOUNT_SELECTION
    also try
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = 'C:\TEMP\CUSTOMER.TXT'
      FILETYPE                      = 'ASC'
       has_field_separator           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      TABLES
        data_tab                      = t_kna1
    EXCEPTIONS
          disk_full                     = 15
       dp_timeout                    = 16
       OTHERS                        = 17
    IF sy-subrc EQ 0.
      PERFORM customer_display.
    ELSE.
      MESSAGE 'No customer file exists'(006) TYPE 'S'.
    ENDIF.                                 " IF SU-SUBRC EQ 0
    Regards,
    jaya
    Edited by: Jayapradha Neeli on May 28, 2009 11:38 AM

  • Is it possible to transfer a database from SQL Server 2012 to SQL Server Express 2012?

    Is it possible to transfer a database from SQL Server 2012 to
    SQL Server Express 2012? Ideally I would like to backup the database from SQL Server 2012 and restore it on SQL Server Express 2012. Is that possible?

    Is it possible to transfer a database from SQL Server 2012 to
    SQL Server Express 2012? Ideally I would like to backup the database from SQL Server 2012 and restore it on SQL Server Express 2012. Is that possible?
    Yes it is possible but database size should not be greater than 10 G as max databse size supported for Express 2012 is 10 G
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Transfer executable report from one server to another

    hi all,
           How to transfer executable report from one server to another?
    please reply fast
    its urgent
    thnx in advance

    Kush,
    To transfer a object from one server to another server it should be assigned to a package ie Dev Class so that a transport request can be created.Once the request is created we will release it using SE09 and then ask the basis consultant to move the request from Dev to Quality and then Dev to Production.
    $TMP objects are called as local objects and can't  be transported.
    K.Kiran.

  • If i transfer some records from one server to another server,

    hi to all......
    5........If i transfer some records from one server to another server, will that save in change request or work bench request?
    thanks and regards,
    k.swaminath

    Hi friend my suugession is , if u r transfering records from one client to another or changing anything in the active pgm, it will save under  change request...
    But if u r transfering records from one server to server it will save under work bench request...

  • How do I transfer events (photos) from Iphoto to a flash drive?

    How do I transfer events (photos) from Iphoto to a flash drive?

    In iLife iPhoto on your mac you select the  the events in the source list and use "File > Export" to export the photos to your flash drive. Just select the flash drive in the file chooser dialogue that will open.
    See Terence Devlin's user tip on exporting from iPhoto:
                     Exporting From iPhoto

  • Migrating from  Dedicated Server to Shared server

    Hi,
    Please let me know how to configure from Dedicated server to Shared server in oracle 10g.
    Any advises would be appreciated.
    Regards,
    - sridhar

    It is not that hard, you only need to configure four parameters and check the listener to verify this has already been configured and registered. On the other hand, you should configure your tnsnames.ora file so you have the alternative to connect by means of a shared or a dedicated oracle server, otherwise the default, once the dispatchers and the shared server processes are configured will be shared server.
    The four parameters to configure at the initialization parameter file are:
    dispatchers
    max_dispatchers
    shared_servers
    max_shared_servers
    and you should create an entry at the tnsnames.ora file that declares a (server=dedicated) that will be used to connect by means of a dedicated server.
    Further details on Howto configure the shared server can be found here --> Configuring Oracle Database for Shared Server.
    One side note I'd like to add, shared server is suitable for scaleability in OLTP environments, if your kind of job is either batch or DDS you should open a connection by means of a dedicated server, otherwise you'll create a severe bottleneck.
    ~ Madrid

  • How do I transfer all data from my old internal hard drive to a new internal hard drive

    How do I transfer all data from my old internal hard drive to a new internal hard drive? I have an iMac with a 320gb internal HD that is full and I am replacing it with a 2tb internal drive. I have several external drives; 1 tb, 2tb and 3 tb. The 2 tb is being used for Time Machine. Do I have to buy an enclosure? If so, where would I get an inexpensive one?
    I also want to partition the new internal drive for Windows, and I'm not sure how much space to use for that. I plan to use Windows to check my work in PowerPoint created on my Mac for clients on PCs.

    Do you already have Time Machine making backups onto the 2TB drive? If so, after you get the internal drive replaced, boot up into the recovery partition (hold down ⌘R) and restore the latest Time Machine backup that you have onto the new internal drive.
    I recommend always having two backups. I'd use SuperDuper to make a complete clone of your internal drive onto an external drive in addition to having the Time Machine backup.
    Boot Camp is what is used to make partitions for Windows. How much space to allocate depends on how much space you expect Windows to use up based on how you plan to use it.

  • Need to transfer home movies from iPhone to external hard drive.

    Need to transfer home movies from iPhone to external hard drive.  The movies were created with Flip Video, not iPhone.  I can see and watch them via iTunes but have not figured out how to move them from iPhone to hard drive. iPhone is broken (screen) and locked, but is still connecting to iTunes.  I have backed up all photos/videos created with the iPhone, just need to figure out how to get these last videos off the phone.  They are very important.  I am working off a Windows XP machine.  No, the camera wizard will not work for this as these videos are not stored in that area of the phone.
    Thanks,
    E

    This is what I have done so far and stuck again.
    I opened Image capture plugged in IPhone.  Device brought up camera roll pics only.
    I was able to send them to the external hard drive.  Now they have green checks marks.  I cannot seem to remove them. Don't want to delete them yet to put into folder for having prints made..
      Devices showed IPhone but would only show  camera roll I have two other folders and cannot seem to go to them to show up on the device  one is Photo library has 300+ pics and
    last import folder.   I would like to take the 300 also from the Photo library and also copy them or move them to the external hard drive.
    What step am i missing , please help.
    thank you
    jz

  • TRANSFER OF DATA FROM APPLICATION SERVER TO REPORT

    I have a file on application serverin T-code AL11(sap directories).I want to bring the data from this file to my report.
    Please explain me procedure with example.
    I approached below method:
    I approached with OPEN DATASET,But i got short dump.
    syntax:
    open dataset c_dset(file in app.svr.) for output in text mode
    encoding default.
    transfer c_dset to i_transfer(itab).
    close dataset.
    short dump:
    unable to open file "".
    Kindly solve my problem.

    Hi Saritha,
    If I am not wrong u r trying to read the data from the file which is on  the apps server rite?
    Use open data set with input for reading the file from application server ..........  output is to write the file onto the application server
    check the below sample code.......
    DATA:
    len TYPE i,
    text(30) type c,
    dir(30) TYPE c VALUE '/tmp/test.txt'.
    DATA: begin of data OCCURS 0,
    matnr type matnr,
    werks type werks_d,
    end of data.
    START-OF-SELECTION.
    CLEAR: text.
    OPEN DATASET dir FOR INPUT IN TEXT MODE.
    DO.
    READ DATASET dir INTO text.
    IF SY-SUBRC 0.
    EXIT.
    ENDIF.
    close dataset.

  • IChat File Transfer port issue (can't listen to port 5190 and 7777)

    Greentings ladies and gentlemen,
    I need help opening port 5190 and 7777 for ichat server file transfers. As for now, my situation can be described as below:
    (1)I have a ichat server in a mac mini(2010, newest model as for today) running a fully updated version of MACOSX SERVER 10.6 inside a lab in my university.
    (2)As for the ichat server itself, text, voice, video between 2 or more persons are all working great. As for clients the latest version of ichat and pidgin(text only) are being used. The only problem is the lack of file transfer between ichat clients.
    (3)The server is behind a router (YAMAHA RTX 1200). I am 100% sure that the router is correctly configured to allow packets in and out of the port 5190 and 7777, among the other necessary ports. All the other ports are open and working correctly. I also manually disabled the firewall of a windows7 laptop and tested packet transfers on both ports and both worked fine.
    (4)As I said before, the server is inside my university lab. I made sure that all ports between 1023~65535 are open in the univesity gateway/backbone network.
    Bellow are firewall(IPFW) settings before flushing (tried configuring using both GUI and CUI, and both returned the same results)
    sudo ipfw l
    Password:
    00001 allow udp from any 626 to any dst-port 626
    01000 allow ip from any to any via lo0
    01010 allow udp from any to any dst-port 5190
    01030 allow tcp from any to any dst-port 5190
    12300 allow tcp from any to any established
    12301 allow tcp from any to any out
    12302 allow tcp from any to any dst-port 22
    12302 allow udp from any to any dst-port 22
    12303 allow udp from any to any out keep-state
    12304 allow tcp from any to any dst-port 53 out keep-state
    12304 allow udp from any to any dst-port 53 out keep-state
    12305 allow udp from any to any in frag
    12306 allow tcp from any to any dst-port 311
    12307 allow tcp from any to any dst-port 625
    12308 allow icmp from any to any icmptypes 8
    12309 allow icmp from any to any icmptypes 0
    12310 allow igmp from any to any
    12311 allow tcp from any to any dst-port 5190
    12311 allow udp from any to any dst-port 5190
    12312 allow tcp from any to any dst-port 5222
    12313 allow tcp from any to any dst-port 5223
    12314 allow tcp from any to any dst-port 5269
    12315 allow udp from any to any dst-port 5297,5678
    12316 allow tcp from any to any dst-port 5298
    12316 allow udp from any to any dst-port 5298
    12317 allow udp from any to any dst-port 16384-16403
    12318 allow udp from any to any dst-port 5060
    12319 allow tcp from any to any dst-port 7777
    12320 allow tcp from any to any dst-port 8008
    12321 allow tcp from any to any dst-port 8443
    65535 allow ip from any to any
    And after flushing
    sudo ipfw l
    Password:
    65535 allow ip from any to any
    In either case ports that are being listened are listed below.
    netstat -na | grep LIST
    tcp46 0 0 *.5269 . LISTEN
    tcp46 0 0 *.5223 . LISTEN
    tcp46 0 0 *.5222 . LISTEN
    tcp4 0 0 127.0.0.1.5347 . LISTEN
    tcp46 0 0 *.5900 . LISTEN
    tcp4 0 0 *.88 . LISTEN
    tcp6 0 0 *.88 . LISTEN
    tcp4 0 0 *.311 . LISTEN
    tcp4 0 0 192.168.2.96.53 . LISTEN
    tcp4 0 0 *.3659 . LISTEN
    tcp4 0 0 *.106 . LISTEN
    tcp4 0 0 *.3659 . LISTEN
    tcp4 0 0 *.106 . LISTEN
    tcp4 0 0 127.0.0.1.54 . LISTEN
    tcp4 0 0 127.0.0.1.53 . LISTEN
    tcp4 0 0 *.749 . LISTEN
    tcp4 0 0 *.389 . LISTEN
    tcp6 0 0 *.389 . LISTEN
    tcp4 0 0 *.22 . LISTEN
    tcp6 0 0 *.22 . LISTEN
    tcp4 0 0 *.548 . LISTEN
    tcp6 0 0 *.548 . LISTEN
    tcp4 0 0 *.625 . LISTEN
    tcp4 0 0 127.0.0.1.631 . LISTEN
    tcp6 0 0 ::1.631 . LISTEN
    As you can see my firewall settings are not being reflected on the actual server firewall.
    Is there any way I could just force the server into listening the port?
    If necessary I can post screenshots of every ichat server/firewall configuration tab from the Server Admin GUI.
    Thanks in advance for any help/support.

    First off, realize there is no association between your firewall rules and netstat.
    Just because your firewall is letting traffic in that does not mean it will appear in your netstat.
    netstat -a will show you a list of ports that are in use - i.e. there is some process listening to (or writing to) that port. That is independent of whether the firewall permits the traffic (e.g. the firewall could well allow traffic in on 5190, but unless there's a process listening to 5190 you won't see it in the netstat).
    Secondly, IIRC iChat file transfers are client-to-client therefore it might not be your server, or your server's firewall or your server's network that's the issue - the client will need to have a firewall configured to allow incoming traffic from other iChat clients.
    Does that help shed some light on things? (it isn't clear whether your post is referring to the server or the client side of things).

  • Junk arabic details while transfer arabic data from sql server 2000 to orac

    We are facing problems to view arabic details in oracle which is transfered from sql server 2000 .
    In oracle database we are using charecterset is UTF8.
    NLS_CHARACTERSET :UTF8 and NLS_NCHAR_CHARACTERSET:UTF8
    Sqlr server collation is SQL_Latin1_General_CP1256_CI_AS.
    we are using stored procedure for transfering data from sql server 2000 to oracle.
    And i am able to view some arbic details which is not transfered from sql server 2000.
    I thing some configuration i need to change in sql server.
    Can any one help me out from this issue?

    I know that this is not the correct forum to ask this question.
    If someone knows this issue please help me.
    We were using to import from another intermediate sqlserver and it was successfull.
    And more over i cannot change anything in oracle database which is live.
    The issue is we are using one intermediate sqlserver for transfering the data to oracle apart from main sqlserver.
    now we want to stop the intermediate and need to transfer from main sqlserver to oracle Db.
    i guess , i need to change some configuration in main sql server.
    Main sql server and intermediate have the same collation.
    Could you please help me out from this problem?

  • Is there any statement to transfer the data from unix server to another

    Hi All,
    Is there any statement or function module avaliable in sap to transfer the data from one unix server to another unix server apart from FTP(file transfer protocol).?
    My requirement :  I need to fetch the data from one unix server to another sap server. i have a option of FTP but i need to transfer the unix data to another server internal table.
    I need to move the unix data to another sap sevrver internal table
    Regards
    Raja

    not sure what your exact requirement is, but
    if both servers are in the same system group, you could potentially just mount the unix directory from the source machine to the target with nfs mount or something.
    if not, you could consider remote function call. create a remotable function module on the source machine to read the data into an internal table, and call that function module from the target machine. this requires creating entries in the RFCDES table (i think via SM59?). on the target machine, you would call function y_whatever destination xyz, where xyz is the RFCDES you set up. it works great.
    dave

  • HT204144 File transfer using Airdrop from iphone to Macbook Pro

    File transfer using airdrop form Macbook Pro to iphone is working...but from iphone to Macbook Pro is not working, Why?

    Hi Brok25;
    Thanks for the question.  The resource below explains the specs and settings that are needed for AirDrop.  Check the settings and look to see if your MacBook Pro is listed.
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support
    http://support.apple.com/en-us/HT203106
    Sending files to and from an older Mac
    If a Mac you're using with AirDrop was manufactured before 2012, you can send and receive files with other Mac computers.
    On the sending Mac, click "Don't see who you're looking for" in the AirDrop window.
    Select the option to "Search for an Older Mac."
    On the receiving Mac, open a new Finder window and click AirDrop in the sidebar.
    Tips for sending files
    Make sure Wi-Fi and Bluetooth are enabled on your Mac and your iOS device. Although you don't have to connect to a specific network, Wi-Fi needs to be on to send and receive files using AirDrop.
    Move your devices closer together. AirDrop is designed to work within a range of approximately 30 feet (9 meters). If you need to send a file to someone farther away, consider using File Sharing, iCloud, or email instead.
    If you're using a firewall on your Mac, you won't be able to receive AirDrop files if you have enabled "Block all incoming connections" in the Security & Privacy pane of System Preferences.
    Make sure your devices meet system requirements for AirDrop.
    System Requirements
    To see if your Mac works with AirDrop, make sure you’re in the Finder by clicking the desktop (the background area of your screen), or by clicking the Finder icon in the Dock. Then, check to see if AirDrop is listed as an option in the Go menu. If you don't see AirDrop listed, your Mac doesn't support this feature.
    In order to transfer files between a Mac and and an iPhone, iPad or iPod touch
    your iOS device needs to include a lightning connector 
    your iOS device needs iOS 7 or later installed
    your Mac needs to be a 2012 or later model with OS X Yosemite installed
    Your Mac and iOS device both need bluetooth and Wi-Fi turned on. You do not have to be connected to a specific Wi-Fi network. 
    To transfer files between two Mac computers, you need the Mac models listed below with Wi-Fi turned on and OS X Lion or later installed.
    MacBook Pro (Late 2008 or newer)*
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)*
    iMac (Early 2009 or newer)
    Mac Mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
    *The MacBook Pro (17-Inch Late 2008) and the white MacBook (Late 2008) do not support AirDrop.
    For help identifying your Mac, choose About This Mac from the Apple menu. You can refer to the Apple Support website to find out if your iPhone, iPad or iPod Touch includes a lightning connector. 
    Cheers,
    - Judy

Maybe you are looking for

  • Install Windows 7 via USB Help

    hi. i'm new on mac. my internal dvd drive out of order and i must install my own windows 7 on my macbook. i have usb drive 4 gb sized. how can i do that ? please explain it correctly, because i'm new and i have no idea about that.

  • Strange Run-time behavior of message mapping

    Dear All, This is very urgent I have 2 step mapping in my synchronous(ABAP proxy to HTTP_AAE) interface, first step is graphical mapping and second step is java mapping. After both the mapping I am able to get my desired structure by bank(third party

  • What videos can i put onto my 30gb ipod? AVI's do not appear when i ...

    What type of videos can i put onto my ipod? I tried putting .avi's by dragging them into the itunes movies area but it doesnt work , i also tried adding it through file... Please help .

  • Problème de création de signature sous Acrobat standard X

    Bonjour, J'arrive à créer des boites signatures dans Acrobat standard X. Je suis capable de certifier mon document, mais les gens sont incapables de signer. Dans Fichier > propriétés > Apposition du document Non autorisé. Avez vous des suggestions po

  • I have a labview 7 vi and i have labview 6.1

    I have a labview 7 vi that get data from excel specified field. I have only labview 6.1 : could someone translate or "save as" these vi in labview 6.1 format ? Thanks in advance. Attachments: Excel_Get_Data_Specified_Field.vi ‏124 KB Row_Col_To_Range