In regards to transfers...

My MacBook is a few weeks old and my boyfriend has been sending me all his music through ichat to boost my itunes. It's been going great for weeks, but today every time he tries to send a folder it says the following-
Your buddy cannot receive transfers of directories (folders). You could create and send a zip archive of the directory before sharing, or share each file in the directory individually.
It's always told me that when I try to send him folders, but we figured that was due to his Uni firewall. I can't figure out what has changed from last night when it worked, to today. I haven't changed anyting.. Any ideas?

Yeah, but it was just letting us send folders yesterday. And zipping/archiving them would be fine but once it sends through I try to open it and it says Unable to unarchive "Archive.zip" into "Desktop" (Error 1- Operation not permitted.) Says the same if I try to open anywhere else except the word desktop changes and sending singles is just a paiin.. Dilemma

Similar Messages

  • Regarding data transfers

    hi,
    can anybody tell me when we use SESSION METHOD,CALL TRANSACTION and LSMW.
    urgent plz,
    some say that for small amout of data we use CALL TRANSATION and for large volume of data we use SESSION METHOD .but i don't understand how many records is small and how many records is large. and for what type we use LSMW.
    full points will be rewarded.
    regards,
    kiran

    <b>BDC</b>
    Session method.
    1) synchronous processing.
    2) can tranfer large amount of data.
    3) processing is slower.
    4) error log is created
    5) data is not updated until session is processed.
    Call transaction.
    1) asynchronous processing
    2) can transfer small amount of data
    3) processing is faster.
    4) errors need to be handled explicitly
    5) data is updated automatically
    ABAP Tips by :  Nagaraj Muniyappa
    Batch Data Communication (BDC) is the oldest batch interfacing technique that SAP provided since the early versions of R/3.   BDC is not a typical integration tool, in the sense that, it can be only be used for uploading data into R/3 and so it is
    not bi-directional.
    BDC works on the principle of simulating user input for transactional screen, via an ABAP program.
    Typically the input comes in the form of a flat file. The ABAP program reads this file and formats the input data screen by screen into an internal table (BDCDATA). The transaction is then started using this internal table as the input and executed in the background.
    In ‘Call Transaction’, the transactions are triggered at the time of processing itself and so the ABAP program must do the error handling.  It can also be used for real-time interfaces and custom error handling & logging features. Whereas in
    Batch Input Sessions, the ABAP program creates a session with all the transactional data, and this session can be viewed, scheduled and processed (using Transaction SM35) at a later time. The latter technique has a built-in error processing mechanism too.
    Batch Input (BI) programs still use the classical BDC approach but doesn’t require an ABAP program to be written to format the BDCDATA. The user has to format the data using predefined structures and store it in a flat file. The BI program then reads this and invokes the transaction mentioned in the header record of the file.
    Direct Input (DI) programs work exactly similar to BI programs. But the only difference is, instead of processing screens they validate fields and directly load the data into tables using standard function modules. For this reason, DI programs are much faster (RMDATIND - Material Master DI program works at least 5 times faster) than the BDC counterpart and so ideally suited for loading large volume data. DI programs are not available for all application areas. 
    Differences between bdc session method and call transaction method.
    The most important aspects of the batch session interface are: - Asynchronous processing - Transfers data for multiple transactions - Synchronous database update During processing, no transaction is started until the previous transaction has been written to the database. - A batch input processing log is generated for each session - Sessions cannot be generated in parallel
    The most important aspects of the CALL TRANSACTION USING interface are: - Synchronous processing - Transfers data for a single transaction - Synchronous and asynchronous database updating both possible The program specifies which kind of updating is desired. - Separate LUW for the transaction The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.  - No batch input processing log is generated.
    Explain in detail with example what is batch input session?
    Batch Input Session:
    - It is a sequence of transactions, which is generated when user run a particular program.
    - It contains the accounting documents that are to be created. The SAP system stores these transactions until you decide to process them online.
    - It does not update transaction figures until the session has been processed.  Using this technique, you can transfer large amounts of data to the SAP system in a short time.
    Three processing modes of executing Batch Input Session :-
    (1) Run Visibly : You can correct faulty transactions online & work step-by-step through  th<b></b>e transactions not yet executed.
    (2) Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    (3) Run in Background : Recommended by SAP.                        
    also refer
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    <b>LSMW</b>
    SAP Data Migration with LSMW
    No ABAP effort are required for the SAP data migration.  However, effort are required to map the data into the structure according to the pre-determined format as specified by the pre-written ABAP upload program of the LSMW.
    The Legacy System Migration Workbench (LSMW) is a tool recommended by SAP that you can use to transfer data once only or periodically from legacy systems into an R/3 System.
    More and more medium-sized firms are implementing SAP solutions, and many of them have their legacy data in desktop programs. In this case, the data is exported in a format that can be read by PC spreadsheet systems. As a result, the data transfer is mere child's play: Simply enter the field names in the first line of the table, and the LSM Workbench's import routine automatically generates the input file for your conversion program.
    The LSM Workbench lets you check the data for migration against the current settings of your customizing. The check is performed after the data migration, but before the update in your database.
    So although it was designed for uploading of legacy data it is not restricted to this use.
    We use it for mass changes, i.e. uploading new/replacement data and it is great, but there are limits on its functionality, depending on the complexity of the transaction you are trying to replicate.
    The SAP transaction code is  'LSMW' for SAP version 4.6x.
    For those with the older SAP version (4.7 and below), the data migration programs might not have been pre-loaded.
    You can download the LSMW at no cost from SAPNet under Services, SAP Methodology and Tools, category Tools.
    If you are an existing SAP customer with an OSS ID, you can access the SAP Service Marketplace to download the  LSWM for your Basis teams to install to your SAP system: http://service.sap.com/lsmw
    The LSM Workbench carries out the following tasks:
    Reads the transfer data from one or more files (for example, spreadsheets, sequential files etc.)
    Converts the data from the source format into the target format
    Note that with background processing, the input file must not be located in the presentation server. Access to presentation server files is only possible when you are working online.
    regards
    srinivas
    *reward for useful answers*

  • Regarding the transfering the internal table to memory

    hi,
      this is my requirement
    in the alv_grid_display_output,iam selecting the records by using the checkbox that is present for the each record.
    after selecting the records,when i press 'update'  button it has to call a module pool screen and what ever may be the selected records to be trasnfered to the screen.
    please provide the code for this requirement.
    thanks in advance

    HI,
      Please check the below code....
    Function module to display the ALV report
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = W_REPID
    I_CALLBACK_PF_STATUS_SET = 'PF_STATUS'
    I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
    P_SELFLD TYPE SLIS_SELFIELD.
    DATA : L_REP_MODE. "report mode
    CASE P_UCOMM.
    Data ref1 type ref to cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = ref1.
    call method ref1->check_changed_data
    WHEN 'SAVE'.
    loop at itab where check eq 'X'.
    Call Module pool....
    endloop.
    ENDCASE.
    Cheers,
    Bujji

  • Questions regarding creation of vendor in different purchase organisation

    Hi abap gurus .
    i have few questions regarding data transfers .
    1) while creating vendor , vendor is specific to company code and vendor can be present in different purchasing organisations within the same company code if the purchasing organisation is present at plant level .my client has vendor in different purchasing org. how the handle the above situatuion .
    2) i had few error records while uploading MM01 , how to download error records , i was using lsmw with predefined programmes .
    3) For few applications there are no predefined programmes , no i will have to chose either predefined BAPI or IDOCS . which is better to go with . i found that BAPI and IDOCS have same predefined structures , so what is the difference between both of them  .

    Hi,
    1. Create a BDC program with Pur orgn as a Parameter on the selection screen
        so run the same BDC program for different Put organisations so that the vendors
        are created in different Pur orgns.
    2. Check the Action Log in LSMW and see
    3.see the doc
    BAPI - BAPIs (Business Application Programming Interfaces) are the standard SAP interfaces. They play an important role in the technical integration and in the exchange of business data between SAP components, and between SAP and non-SAP components. BAPIs enable you to integrate these components and are therefore an important part of developing integration scenarios where multiple components are connected to each other, either on a local network or on the Internet.
    BAPIs allow integration at the business level, not the technical level. This provides for greater stability of the linkage and independence from the underlying communication technology.
    LSMW- No ABAP effort are required for the SAP data migration. However, effort are required to map the data into the structure according to the pre-determined format as specified by the pre-written ABAP upload program of the LSMW.
    The Legacy System Migration Workbench (LSMW) is a tool recommended by SAP that you can use to transfer data once only or periodically from legacy systems into an R/3 System.
    More and more medium-sized firms are implementing SAP solutions, and many of them have their legacy data in desktop programs. In this case, the data is exported in a format that can be read by PC spreadsheet systems. As a result, the data transfer is mere child's play: Simply enter the field names in the first line of the table, and the LSM Workbench's import routine automatically generates the input file for your conversion program.
    The LSM Workbench lets you check the data for migration against the current settings of your customizing. The check is performed after the data migration, but before the update in your database.
    So although it was designed for uploading of legacy data it is not restricted to this use.
    We use it for mass changes, i.e. uploading new/replacement data and it is great, but there are limits on its functionality, depending on the complexity of the transaction you are trying to replicate.
    The SAP transaction code is 'LSMW' for SAP version 4.6x.
    Check your procedure using this Links.
    BAPI with LSMW
    http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI
    For document on using BAPI with LSMW, I suggest you to visit:
    http://www.****************/Tutorials/LSMW/BAPIinLSMW/BL1.htm
    http://esnips.com/doc/1cd73c19-4263-42a4-9d6f-ac5487b0ebcb/LSMW-with-Idocs.ppt
    http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI.ppt
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Transferring IPHOTO'S and IMOVIES from MBA to IMAC

    Hi all,
    Just wondering if any one can help me in regards to transferring Pictures from IPHOTOS and IMOVIES from my MBA to my IMAC.
    Cheers Mick

    Eric,
    Once again I can not thank you enough for your advice, my wife and I appreciate your efforts
    cheers Mick

  • Transferring of CAL's License

    I have purchased  200 units of windows server 2012 Device CALs under volume licensing and I need some clarification with regard to transferring of CAL license if I replace it with a new machine .

    last month, a client got me to install a bunch of new servers 
    i moved the CAL license to a new server and it flagged them as changed
    the shop was unaffected with a new servers, but it would have been tripped if new notebooks or tablets were purchased at the same time due to too many changes
    each server comes with 10 CALs out of the box and clients have to buy more to deal with staff
    the server CALs are to provide printers and and other servers access etc
    licensing is complex, and it requires a lot of specifics
    None of this has anything at all to do with the AD schema version in relation to licensing so it is all completely irrelevant.
    Also, you simply cannot "move a CAL license" to a new server as CAL licenses for server access are pieces of paper, they are not installed on a server (unless you're talking about RDS licenses which is a totally different subject than the one being
    dealt with here).
    I have worked as a SME on the development of a number of MS Licensing certification exams so I know what I'm talking about, you clearly do not.
    Even though, given your past history, I know that you're more than likely going to go off on another tangent here rather than answer, I'm going to ask you a straight up question; Please explain to all of us here how the AD schema version has any impact at
    all on CALs, and please provide proof from a Microsoft document that backs up your answer.
    The only comment in the above that has any truth to it is the fact that licensing is complex. Having you provide totally incorrect and irrelevant posts on the topic only serves to make things even more confusing than they need to be.
    Tim has provided the best post so far, and that is to discuss this with an MS Licensing expert. Clearly, you are not one.

  • USB transfers....

    Does OS X support transferring video files from a camcorder to the computer? We bought a hard drive based camcorder and when we went to import the videos we cant see the files on the camera. The camera shows up. The file folder shows up on where its suppose to be located. But I cannot see the file. Its a mini USB connection. I would be pretty ****** if these Panasonic h60p camcorders aren't supported.
    Thanks

    Berija wrote:
    Yea I just got that from a different site. Kind of a pain. All these camera companies need to make a UNIVERSAL format and not gauge customers.
    It's also the customer's responsibility to do some research prior to making an investment.
    Searching the following keywords in Google, "SDR-H60 Mac compatibility" revealed the following:
    http://tinyurl.com/5lho2j
    You'll see a link there to a PDF of the Users Manual (fourth link down). The only thing listed in that manual regarding use with a Macintosh is copying picture files from the SD card via USB. There's nothing mentioned there regarding the transferring of video files. If the manufacturer doesn't list video transferring as a supported function in its own user manual, then I would find it difficult to put the blame on them for the lack of that function. This search took about 10 minutes.

  • Itunes library on an external hard drive

    I recently purchased an external hard drive to use for all of my media libraries (itunes, iphoto, etc). My first task was to move my iTunes library to the new HD.  I followed the steps from this Apple Support article (http://support.apple.com/kb/ht1449) and created a new folder subset on the HD called "iTunes Media/Music".  I changed the Itunes Media Folder location under the advanced settings in preferences and moved all of my songs into the new folder.  Everything appears to be working properly on my Macbook in which I was working on, however, I believe there should be some iTunes Library folder(s) in the new folder, but there is not.  Now I am trying to use the same library for my family users accounts on our iMac but it is not finding the music when I change the iTunes Media Folder location.  Can someone please provide me simple, step by step insturctions on how I can accomplish this in iTunes, but also in iPhoto as well?
    Much appreciated.  Thanks.

    Limnos wrote:
    iTunes: How to move [or copy] your music [library] to a new computer [or another drive] - http://support.apple.com/kb/HT4527 - a somewhat bewildering and not always easily understandable set of options.
    In regards to transferring media files to an external hard drive:  If "Keep my iTunes media folder organized" is unchecked, will I be able to "consolidate" my media files in its existing folder structure? For example, I have my media folder set up somewhat like this: Media Folder / Genre / Sub-genre / Artist / Album, rather than the default iTunes way of handling folders (Media Folder / Artist / Album).
    If this is not a possibility via the method in the support article above, is there an easy way to achieve this?  I suppose the last resort would be to move all media files over, "delete" the .itl file, and do a find/replace on the .xml file...
    Ideally I would love to have my music AND database files on an external drive so that I can share the same library and playlists on both my desktop and laptop.

  • I would like to do it right before using TimeMachine

    I just upgraded my iMac for a new one with Leopard installed. I have been using 3 Ext. HD, one as my Primary and Bootable DR, and the other 2 as additional back ups. I seldom save anything on my Int HD. Here is the breakdown of my workflow:
    Ext HD #1 - 1 TB with 2 Partitions.( Partition 1) contains a copy of the old Int. HD (no Data or images), same size as my original Int. HD 250GB. My current Int. HD has 320GB.
    (Partition 2) - It contains all documents and images I have about 600GB available. I use this ExDR as my primary Drive, and any subsequent back ups I copy to the other Ext. HD.
    However, I don't see any point using Partition#1 as a Bootable Drive since I was planning using TM. So I'm looking for some suggestion how I should use TM.
    I have a couple of questions or concerns about using Time Machine.
    1- Could I select which files I would like to be back up or copy to Time Machine or would it copy the entire content of what is the Int HD?
    2- Is TM more compatible with a firewire Ext HD or USB Drive?
    3- What is the best way to use Partition#1? Partition#2 is already populated with a large number of image files and I don't feel like moving them out there.
    4- If I designate any other other Ext HD as my backup destination using TM, what would happen to the existing files on that DR once I star using it as the destination DR for back up.
    I haven't done anything until I get some suggestions
    Thanks in advance

    crossover,
    Time Machine can target any amount of files you like (you can exclude system & application files in one fell swoop, then exclude additional folders as you see fit), but I wouldn't recommend you use this route. Time Machine's greatest benefit is that it will maintain a backup that can be completely restored; system, applications, and all. From the "Utilities" menu of the Leopard installer, one can perform such a restoration in short order, making complete recovery or migration to another machine a snap.
    Firewire, and preferably Firewire 800, is the best interface to use with Time Machine. It does, however, work perfectly well over USB. The preference for Firewire over USB is based on Firewire's better stability regarding file transfers. With the exception of the initial full backup, bandwidth is not a critical concern for Time Machine, but this story changes when it comes time to restore an entire installation using the Leopard installer. For this, Firewire 800 is very attractive. I am able to completely restore my entire 100+ GB installation in under 45 minutes from my Firewire 800 backup drive. Compare that to a "normal" installation of Leopard from the DVD, which takes at least a couple hours.
    Time Machine requires at least twice as much backup disk space as required for the initial backup, in order to maintain subsequent backups in perpetuity without failure. As backup disk space becomes tight, older backups are automatically deleted, or "thinned," to make room for the newer data. This process, however, can be crippled by not giving Time Machine enough room with which to work. I generally recommend something closer to 3X the amount needed for the initial backup.
    Also, Time Machine will include in its backup any secondary volumes that are mounted at the time that it is set up (or not, as you desire). This makes it a powerful tool for maintaining backups not just of your installation, but of any "live" files with which you regularly work.
    Another consideration: Prior to Time Machine, my habit was to always partition my internal hard drive, using the first, smaller partition for a lean system, and the second to store things like my photo and music libraries. This allowed me to quickly and easily recover (format and reinstall) my system, without dealing with huge amounts of data, and my backup strategy was designed with these things in mind.
    Time Machine made this routine obsolete, since it is now actually easier to store everything on my startup volume, yet maintain a backup that provides for quick, easy, and comprehensive (in fact, total) recovery. Time Machine is not just a backup utility, but a powerful recovery tool.
    So, how you use Time Machine, and with what drives/volumes and space, depends on how you would like to manage your data from now on. I will strongly recommend that you use the first volume on your chosen external drive for use with Time Machine. In Leopard, we can dynamically re-size and/or re-partition live drives, without necessarily destroying data. New volumes must be added toward the end of the drive, however (the first volume is reduced in size, then the second volume added in the resultant free space). Consequently, a volume can only be expanded by deleting subsequent volumes (this is where data must be destroyed), then enlarging the earlier volume into the resultant space.
    The implications of this for Time Machine is that, provided you use the first volume on a drive for Time Machine, subsequent volumes can be deleted in order to provide more space for your backups. While backups can be stored on a volume that contains other data, it is recommended that TM have a dedicated, and otherwise empty, volume with which to work.
    Finally, redundancy is a good thing. You may want to continue using a bootable "clone" for this reason, in conjunction with Time Machine. A Time Machine backup volume can also be cloned, and this too would provide excellent redundancy. Time Machine will only work with one backup volume at a time, but it will see a backup volume and a "clone" of same as identical. In addition to providing redundancy, this is another fine way to expand the space available for backups (clone too-small volume/drive "a" to larger volume/drive "b," then continue backups with "b").
    Digest this info, make some preliminary plans, then come back with any additional questions you might have.
    Scott

  • Need help installing premier elements 10

    I installed the adobe photoshop elements 10 no problem. But once I tried installing the premier elements 10, I kept getting an error message half way through the installation progress. Here is what it says. Can someone please help. Thanks for your time.
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 8 error(s), 7 warning(s)
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    ----------- Payload: {68FE2517-2E45-4B03-8241-D0634F43878B} Smartsound1 1.0.0.0 -----------
    ERROR: DW006: Apple Package failed to install successfully.
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Smartsound3: Install failed
    ERROR: DW050:  - Photoshop Camera Raw for Elements 10: Install failed
    ERROR: DW050:  - Smartsound1: Install failed
    ERROR: DW050:  - Adobe Premiere Elements 10: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Elements 10_LangPacken_US: Install failed
    ERROR: DW050:  - Smartsound2: Install failed

    troythorngolf
    Lots of conflicting information, but let us see if any can be sorted out.
    1. You have a new Mac Book Pro computer, and you are trying to install Premiere Elements 10 Mac on it.
    a. Is the installation disc an Adobe installation disc that specifically says "Adobe Photoshop Elements 10 & Adobe Premiere Elements 10" and is further labelled DISC 3 OF 5? If not, then I am guessing that you have an unauthorized copy. Did the sale to you go through Adobe with regard to transferring the license from the "someone" online seller to you?
    b. Adobe allows a purchased serial number for the product to be used on no more than 2 of the users computers. So, a possibility might exist where the seller did not deactivate the product from his/her computer before sending you the product. But, if that were the case, I suspect you would be blocked by a message about too many copies of the serial number on your computers.
    c. When you said that the "Photoshop CD installed perfectly", are you referring to Photoshop Elements 10? And, please confirm whether you installed this Photoshop Elements 10 from the same installation disc as the one that you are using for the Premiere Elements Install.
    d. In the absence of any of the above possibilities, there are special issues to be addressed with installing Premiere Elements 10 Mac. Those are defined in the link that I have cited already.
    e. Besides all the rest, Premiere Elements 10 and QuickTime need to be run under Administrator Privileges. So, you need to set that up. Unless someone steps forward here to detail how to do that with your Mac Computer, please check this out with the Best Buy people. I am strictly an Elements Windows user otherwise I would be giving you a step by step on that aspect of the matter. But, check out the following online link to see if it is helpful with regarding to setting these permissions
    http://kb.eset.com/esetkb/index?page=content&id=SOLN2592
    f. Do no presume that your video card is up to date. Verify that at the web site of the web site of the manufacturer of the video card, the computer manufacturer, or Best Buy Geek Squad. Since you purchased the computer there, they should be very helpful with these details of Administrator Privileges and video card/graphics card update. Do you know how many video cards/graphics cards your computer has and at least one is NVIDIA?
    g. You will need to explain how an "Elements 12" got into the mix. If you want to update Premiere Elements 10, then you need to purchase a serial number for Premiere Elements 12. All the Premiere Elements versions are standalone programs. "Upgrading" related to them refers to a pricing matter rather than updating the existing software.
    Please review and then we can decide what next.
    Thank you.
    ATR

  • My US Skype Number is not working

    I am unable to use my US Detona Beach call back number .
    please help me solve this problem . regards 
    Post transferred to create its own new thread (topic);
    Subject/title edited accordingly.

    teseotur wrote:
    Hi,
    My name is David and I own a Skype online number.
    I am from Italy and it is an Italian phone number.
    All of a sudden it stopped working and I need to use it for work!
    Please help.
    I was reading online that many other Italian users are experiencing the same issue.
    Is it because of your agreement with Eutelia???
    Please assist.
    Thanks, David.
    Please see this to contact customer support: https://support.skype.com/en/faq/FA1170/How-can-I-?contact-Skype-Customer-Service
    In some cases, you may also be able to live chat with customer support here as well: http://support.skype.com/en/support_selection
    About Me You can also use a IP Camera as your camera for Skype video Example Instructions

  • Payment refused, reactivate subscription error, Sk...

    Before the end of the subscription I got a message: Unlimited Europe 12 months  Status Refused
    I thought restore it when finished (I did a few years). When "Unlimited Europe 12 months" expired, I tried to reactivate.
    And here the problems started!!!
    Wen I click an "Reactivate" write this http://www.pixhost.org/show/2295/16795787_skype-error.jpg
    a few times on click and http://www.pixhost.org/show/2295/16795788_skype-error2.jpg
    My message to Skype Customer Service:
    On your web page is error due to I cannot reactivated Unlimited Europe 12 months subscription. Wen I click an "Reactivate" of "Your Unlimited Europe 12 months subscription has expired.", around writes "An internal error occurred." and "You're not able to purchase this product in your region." (see photos). I live in the EU / Slovakia and in this region I had active Unlimited Europe 12 months (see my purchase history https://secure.skype.com/wallet/account/orders).
    Please, can you reactivated / ordered this Unlimited Europe 12 months and make invoice Number, that I can pay?
    Thank you.
    Tony
    Skype Customer Service reply:
    Thank you for contacting Skype Customer Service.
    We are happy to hear that you would like to extend your Unlimited Europe 12 months subscription on your account. We understand why you are concerned about this. We will be glad to explain this for you.
    Tony, if you don’t change your payment details in time and your subscription expires, you have up to 90 days to reactivate it by updating the payment method. By doing this, you can maintain your current subscription settings.
    Moving forward, please try to update your credit card details on another browser as well or clear cache your current browser and do the steps again.
    If you have used a credit card to buy a subscription, you can change your credit card details as follows:
    1.  Sign in to your account.
    2.  Under Account details, click Manage features.
    3.  On the left panel, click your subscription.
    4.  Click Settings.
    5.  On the Subscription Settings page, click Change payment method....
    6.  To switch to another stored payment method, or Skype Credit, select it from the drop-down list and click the Save button....
    Rutty T.
    Skype Customer Service
    My reply:
    Hello Rutty,
    I did everything as per your instructions but I can not get to STEP 3
    I have not the left panel and "Your Subscription" (see photo http://www.pixhost.org/show/4720/16796846_skype-step-by-step.jpg)
    I have tried in Internet Explorer, Mozilla and Opera and always the same (as the pictures).
    Where is the mistake? On your web site or in me - between my chair and my computer. I do not know. I am distressed!
    Please, can you reactivated / ordered this Unlimited Europe 12 months and make invoice Number, that I can pay? PLEASE!!!!
    I wish to pay by bank transfer. OK?
    Thank you.
    Tony
    Skype Customer Service (this is IQ and this helped me):
    Thank you for your reply.
    We understand that you are experiencing difficulty in renewing your subscription. It is our pleasure to assist you with this, Tony.
    We have checked your records and sadly, the Unlimited Europe subscription has been expired. If you wish to continue with this subscription, you have to purchase this subscription again. In this regard, you can now choose to pay directly to the bank.
    Just a note, bank transfers takes longer time to be processed compared to other payment methods such as credit cards or PayPal. For more information regarding bank transfers, you may refer to this FAQ: https://support.skype.com/en/faq/FA611/.
    Should you have any further questions, please feel free to contact us again. Have a great day, Tony!
    Best regards,
    Miguel Paolo A.
    Skype Customer Service
    Joanna_M MOD wrote:
    5.How do I extend my subscription?
    -Subscriptions are extended automatically until you unsubscribe
    -Recurring payment is taken 3 days in advance to avoid payment delays but your subscription minutes are reset based on the initial purchase date and time (GMT timezone). You can check this from your order history if you open order ID: https://secure.skype.com/wallet/account/orders Click on: "Account details" then: "Billing & payments" and locate "Purchase history".
    -Purchasing the exact same subscription will not add more minutes to current month, only extends subscription length.
    (http://community.skype.com/t5/Rates-and-subscriptions/All-about-subscriptions/td-p/1619493)
    When it's so easy why nobody help my?
    Hey Skype Customer Service, is someone willing to help?

    I:
    Hello,
    you probably do not understand. When I sign in to my account under "Account details" and "Manage features I do not have on the left side panel with "Your Subscription"  http://www.pixhost.org/show/4720/16796846_skype-step-by-step.jpg !!!
    On Your site is error (see photo http://www.pixhost.org/show/2295/16795787_skype-error.jpg
    Thanks.
    SCS reply (another "clever" answer):
    Thank you for your reply.
    We understand that you wish to reactivate the subscription on your account. It is our pleasure to assist you on this matter.
    Tony, upon further checking on your account, no worries as your subscription is just suspended simply because there is no enough Skype Credit balance to renew the said subscription. The best option for you right now is to add Skype Credit balance that would be sufficient to renew your subscription.
    Should any further issues arise, please feel free to contact us again.
    Best regards,
    Maila C.
    Skype Customer Service
    They do not understand that they have an error on the page and that I can not do it!!!

  • Having trouble syncing this computer with login name and password

    I dis all the work on my business computer with regards to transferring the favorites, email addresses, etc from AOL. I then signed up for the sync option and I do have Sync Key. However when I try to sync my home computer I get a message that either my account name or password is invalid and I am not sure what to do at this point.
    Thank you,
    Chuck
    Please respond to [email protected] if possible

    Ignore that message until you have all the characters of the account name typed in the appropriate field. See how that works.

  • Can't see IPAD on My Computer on PC

    I have just purchased an Ipad-2.  I am really a Microsoft PC type user not an Apple user! (Sorry).  I have connected my ipad-2 via USB (the lead supplied) to my PC.  It knows that the ipad-2 has been connected as it gives an audio signal.  The driver is loaded for if I go to the Device Manager and Universal Serial Bus Control at the top of the list is Apple Mobile USB Driver.  It is version 6.0.999.65 by Apple Inc.  So I should see the Ipad-2 on My Computer but I don't!
    I am really trying to transfer some of my Home Photographs to the ipad-2.  Would be happy to go via the iTunes store route but that doesn't seem very straight forward!  I put a folder for photographs in my user area and tried to see the folder on Add a Folder on iTunes but not sure what I am doing??  So would welcome some help.  Is there a User Guide for iPad-2 particularly with regard to transfering stuff to it like photo's videos that may not be iTunes purcahsed.  It would be so much easier if I could see the folders on the ipad-2 and drag the files from a folder on the PC.  I know one is Microsoft and the other is Apple but surely they can work together!

    pretty sure even if it show up as a camera in my computer you can only copy pictures from it not to it
    to do that I believe you need to sync with itunes
    it's not a windows thing the same thing holds true with macs

  • Is html5 dnd really supported in WebView?

    Hi,
    While testing dnd support in WebView, I faced a strange behavior regarding the transferable data retrieved.
    The data is always "*undefined*" in WebView, and is correct under other browsers...
    Any idea? Workaround?
    Thanks.
    Simply load the following HTML page into WebEngine.
    Try to drag the top rectangle into the second one.
    Note: Due to syntax highlighting in this forum the complete HTML code does not appear! The following attributes are missing on first and second div. Sorry.
    ondragstart="startDrag(event)
    ondrop="drop(event)" ondragover="canDrop(event)
    <!DOCTYPE HTML>
    <html>
         <head>
         <style type="text/css">
              #drop1 {width:350px;height:70px;padding:10px;border:1px solid #aaaaaa;}
              #startDrag1 {width:350px;height:70px;padding:10px;border:1px solid #000000;}
         </style>
         <script>
         function canDrop(ev)
              ev.preventDefault();
         function startDrag(ev)
              ev.dataTransfer.setData("Text",ev.target.id);
         function drop(ev)
              ev.preventDefault();
              var data=ev.dataTransfer.getData("Text");
              var result=document.getElementById("result");
              // Display result in Div and alert
              result.innerHTML=data;
              alert(data);
         </script>
    </head>
    <body>
         <p>Drag the top rectangle into the second:</p>
         <div style="color:#FFFF00;border: 2px dotted  black;" id="startDrag1" ondragstart="startDrag(event)"></div>
         <br/>
         <div style="color:#00FFFF;border: 3px dashed black;" id="drop1" ondrop="drop(event)" ondragover="canDrop(event)">
           <output id="result"></output>
         </div>
         <br>
    </body>
    </html>

    I played around with this a little bit using your example and the behaviour of JavaFX seemed buggy to me.
    If I set the data type to Text, I could reproduce the undefined message in the drop box. I thought maybe it just wasn't looking up the event target id ok, so I changed to set the text to a static string, and the behaviour was still the same (still printed undefined in the drop box). I thought I'd try a well defined data type of text/plain rather than Text, and then I didn't get undefined in the drop box, but I didn't get the text displayed there either, just nothing at all. Additionally the drag initiation seemed buggy and only worked for me sometime all of the time I was trying it. For instance, a lot of the time rather than the drag cursor, I'd end up with a selection being done or a text insert caret which prevented the use of of the drag and drop function as it seemed the drag and drop wasn't initialized. Only on the fifth or sixth attempt would a drag seem to be initiated. So I wouldn't really advise making use of html5 dnd in your app until you file some bugs on this at http://javafx-jira.kenai.com and they are fixed.
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    public class WebViewDragAndDrop extends Application {
      final static String html =
    "<!DOCTYPE HTML>\n"+
    "<html>\n"+
    "\t<head>\n"+
    "\t<style type=\"text/css\">\n"+
    "\t\t#drop1 {width:350px;height:70px;padding:10px;border:1px solid #aaaaaa;}\n"+
    "\t\t#startDrag1 {width:350px;height:70px;padding:10px;border:1px solid #000000;}\n"+
    "\t</style>\n"+
    "\t<script>\n"+
    "\tfunction canDrop(ev)\n"+
    "\t{\n"+
    "\t\tev.preventDefault();\n"+
    "\t}\n"+
    "\t\n"+
    "\tfunction startDrag(ev)\n"+
    "\t{\n"+
    "\t\tev.dataTransfer.setData('text/plain','xyzzy');\n"+
    "\t}\n"+
    "\t\n"+
    "\tfunction drop(ev)\n"+
    "\t{\n"+
    "\t\tev.preventDefault();\n"+
    "\t\tvar data=ev.dataTransfer.getData('text/plain');\n"+
    "\t\tvar result=document.getElementById(\"result\");\n"+
    "\t\t\n"+
    "\t\t// Display result in Div and alert\n"+
    "\t\tresult.innerHTML=data;\n"+
    "\t}\n"+
    "\t</script>\n"+
    "</head>\n"+
    "<body>\n"+
    " \n"+
    "\t<p>Drag the top rectangle into the second:</p>\n"+
    "\t\n"+
    "\t<div ondragstart='startDrag(event)' style=\"color:#FFFF00;border: 2px dotted  black;\" id=\"startDrag1\"></div>\n"+
    "\t<br/>\n"+
    "\t<div ondrop='drop(event)' ondragover='canDrop(event)' style=\"color:#00FFFF;border: 3px dashed black;\" id=\"drop1\">\n"+
    "\t  <output id=\"result\"></output>\n"+
    "\t</div>\n"+
    "\t\n"+
    "\t<br>\n"+
    " \n"+
    " \n"+
    "</body>\n"+
    "</html>"; 
      public static void main(String[] args) { launch(args); }
      @Override public void start(Stage stage) {
        WebView webview = new WebView();
        webview.getEngine().loadContent(html);
        stage.setScene(new Scene(webview, 750, 450));
        stage.show();
    }

Maybe you are looking for

  • Using Adobe Camera Raw as External Editor

    I've recently purchased Aperture 2.1 and am very pleased with everything thus far. I capture the majority of my photos in the RAW format (Nikon NEF specifically), and the one thing I'm trying to work out is this - with iPhoto I am able to choose Adob

  • Create auotmatic purchase order for non stock materials

    Hi, Please provide me information on how to create automtaic purchase order for non stock materials in MM system. Regards

  • Using BOUSER or CurrentUser() in Report Query Filter

    Post Author: Sandiegouser CA Forum: WebIntelligence Reporting We are using LDAP for Authentication. I was to be able to use the LDAP user id to filter what the user sees in a report..using either @variable('BOUSER') or CurrentUser() Thank you

  • Adobe Pro 11 and Safari do not mix well. Previos version lf Adobe worked fine in Safari and 10.9.

    I cannot get my Adobe Pro11 to work in Safari. It does work in Fiorefox. Prior to Pro 11 install never had any PDF issues in Safari. After install, now get black screen and a note that says the adobe pdf veiwer cannot be found. This is poor software

  • Packet Writer Failure

    Hi, I am experiencing the following error on a Oracle client PC: ORA-12571 : TNS Packet Writer Failure. The client PC cannot access any Oracle database, even by using Sql. The networking environment seems to be 100 % OK. Analysing the listener trace