Stuck on Documents to Go

When I try to sync it gets stuck on Documents to Go. It doesn't become unresponsive it just can't get past it. I have let it run for hours and it doesn't move on. I have tried to reinstall the program but that has not helped.
Post relates to: Palm TX

By any chance do you use Outlook 2007? Did you install the Outlook 2007 Conduit update? If you did you will need to get the newest version of Documents to Go from Dataviz.
http://www.dataviz.com/products/documentstogo/prem​ium/index.html?device_id=198
Post relates to: Palm Z22

Similar Messages

  • Problem while generating Encrypted PDF in batch

    Hi PPl
    I am generating encrypted PDF in batch. I have one requirement to generate about 1 lakh PDFs.
    But when i start my batch initially it works fine but after generating round about 25 PDF my program get
    stuck at Document.copyToFile method and after that it again generates around 5-6 PDF and stops for a while
    at the same place.
    I have tried the same program to generate PDF without Encryption and it works very fine.
    Guys i need your help to solve this issue.
    Waiting for your valuable inputs.
    Thanks

    Moved to the Java Development - Crystal Reports forum.
    Ludek

  • ALV Grid event handlers

    Hello Friends;
    I have a problem with event handlers. I have defined events for double_click, data_change and hotspot_click. At first run of the program everything runs fine but when I make a change at the screen (like pressing Enter or entering a value at a screen field) the handlers seem to be called a couple of times. For example at a hotspot click I call an accounting document display and when I want to return with back button the program seems to be stuck at document display. Actually it calls event handler over and over again. How can I solve this problem? Can refreshing grid be a solution?
    Thx in advance
    Ali

    Hello Ali
    The problem is that after handling the hotspot event the current cell is still on the field with the hotspot. Thus, when you push ENTER the ALV grid checks the current cell which has a hotspot defined which, in turn, raises event HOTSPOT_CLICK.
    Therefore, you have to move the current cell to another cell that has no hotspot defined. Have a look at the implementation of the event handler method. The hotspot is on field KUNNR. After calling transaction XD03 I shift the current cell to field BUKRS.
    If you comment these lines you will see the same behaviour of the report as you described.
    *& Report  ZUS_SDN_TWO_ALV_GRIDS
    REPORT  ZUS_SDN_ALVGRID_EVENTS.
    DATA:
      gd_okcode        TYPE ui_func,
      gt_fcat          TYPE lvc_t_fcat,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid.
    DATA:
      gt_knb1          TYPE STANDARD TABLE OF knb1.
    PARAMETERS:
      p_bukrs      TYPE bukrs  DEFAULT '1000'  OBLIGATORY.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
            IMPORTING
              e_row_id
              e_column_id
              es_row_no
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_hotspot_click.
    *   define local data
        DATA:
          ls_knb1     TYPE knb1,
          ls_col_id   type lvc_s_col.
        READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row_id-index.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
        SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
        CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
    *   Set active cell to field BUKRS otherwise the focus is still on
    *   field KUNNR which will always raise event HOTSPOT_CLICK
        ls_col_id-fieldname = 'BUKRS'.
        CALL METHOD go_grid1->set_current_cell_via_id
          EXPORTING
            IS_ROW_ID    = e_row_id
            IS_COLUMN_ID = ls_col_id.
      ENDMETHOD.                    "handle_hotspot_click
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = p_bukrs.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create ALV grid
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_docking
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_hotspot_click FOR go_grid1.
    * Build fieldcatalog and set hotspot for field KUNNR
      PERFORM build_fieldcatalog_knb1.
    * Display data
      CALL METHOD go_grid1->set_table_for_first_display
        CHANGING
          it_outtab       = gt_knb1
          it_fieldcatalog = gt_fcat
        EXCEPTIONS
          OTHERS          = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * ok-code field = GD_OKCODE
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  BUILD_FIELDCATALOG_KNB1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM build_fieldcatalog_knb1 .
    * define local data
      DATA:
        ls_fcat        TYPE lvc_s_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
    *     I_BUFFER_ACTIVE              =
          i_structure_name             = 'KNB1'
    *     I_CLIENT_NEVER_DISPLAY       = 'X'
    *     I_BYPASSING_BUFFER           =
    *     I_INTERNAL_TABNAME           =
        CHANGING
          ct_fieldcat                  = gt_fcat
        EXCEPTIONS
          inconsistent_interface       = 1
          program_error                = 2
          OTHERS                       = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE gt_fcat INTO ls_fcat
           WITH KEY fieldname = 'KUNNR'.
      IF ( syst-subrc = 0 ).
        ls_fcat-hotspot = abap_true.
        MODIFY gt_fcat FROM ls_fcat INDEX syst-tabix.
      ENDIF.
    ENDFORM.                    " BUILD_FIELDCATALOG_KNB1
    Regards
      Uwe

  • How do I get rid of the Microsoft Setup Assistant loop? I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word, and stuck in a loop?

    I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word (for 2008), and stuck in a loop?
    Whenever I select Word Microsoft Setup Assistant appears, asks for feedback, then after selecting okay (both on saying yes or no to feedback) goes on to a registration page. When I click on this it says I've already registered so I just click okay, and then move on to a update page. After this, if I click on Word, the process repeats itself.
    As I said, I don't have the disk to reinstall, and can't find the Office Settings to delete as many pages have suggested I should try. Safe Boot restarting also hasn't worked... Really stuck and need Word very soon for work.
    If you can help, that would be great, and feel free to ask any questions about the situation as I'm not an expert here.
    Cheers,
    Jack

    First, export your contact from iCloud.com and save them on your computer in a safe spot some where (like you desktop).  Use this to help you do this: http://support.apple.com/kb/PH3606
    Next, on both of your devices, go to Settings > iCloud and turn on contacts and select Merge. Then turn off contacts and select 'Delete form my [device]' when prompted.
    Now go back to iCloud.com and select a contact (yes they will all be messed up again) and select Command+A on a Mac or Control+A on a PC to select all of the contacts.  Tap the delete key on your keyboard (or right click /control click a contact and select delete).
    You iPhone, iPad and iCloud.com should not be empty for contacts.
    Go back to Settings > iCloud on both devices and turn on contacts again (you should not see merge this time).
    Next, go back to iCloud.com and import your contacts (those exported .vcards).  You can either drag and drop them into the empty contacts list in your web browser, or you can use the gear icon to import.
    You cleaned up contacts should import correctly into iCloud.com and sync to both of your devices.
    Good luck.

  • Pages document stuck in icloud

    Hi i have ipad 2, iphone 4s and a macbook.... Last week i was editing a pages doc on the fly, and closed up the ipad... came to open it up later, it it wouldnt sync up.. just was stuck on uploading to the cloud.
    Its been a week, and Ive reset all my devices, turned cloud off and on again, made sure they are sync'd etc and all other files work fine, except this one important thing i need!
    on my iphone the pages app shows the document with a loading bar that never changes, and nothing happens when i try to select it, as if it isnt there, on the ipad the preview icon has a fold effect in the corner with an arrow, signifying something, on icloud webpage itself the document is clickable, and i can delete if if i want (i dont want) and there is a little status bar saying
    Ive seen around the net others with the same problem, but havnt found a solution as yet, i imagine im not the only one? has anybody had any luck with this?
    thanks in advance

    If it won't open on any device or download at iCloud.com, I don't have any suggestions for saving your document, but looking forward get into the habit of saving your work to iTunes at regular intervals, if this happens again you will be able to recover your work.

  • ESET NOD 32 cannot scan past this point. I keep getting stuck at 56% at the following; C:\Documents and Settings\Owner\Application Data\ Mozilla\Firefox\Crash Reports\Pending. Is this a problem with NOD32 or with Firefox? Thank you.

    I ran into a glitch on my system that I tried to fix myself. My NOD32 was always showing the yellow warning circle as my protection status when I started my computer. I tried to fix this every way I new how.
    Then I started to get pop ups asking me to fix and then send system error reports to Windows. Some stating they were '''''critical.''''' So I sent NOD32 the e-mail below.
    '''Me:''' I cannot seem to run a complete system scan. I keep getting stuck at 56% at the following point. C:\Documents and Settings\Owner\Application Data\
    Mozilla\Firefox\Crash Reports\Pending
    I also keep getting messages to send error reports to Microsoft constantly. I also have this code C:\pagefile.sys-error opening
    Thank you for your assistance.
    '''Their solution:'''
    Based on the information you provided, we recommend that you upgrade to latest version of ESET NOD32 Antivirus and see if this makes a difference.
    Please click or copy/paste the following ESET Knowledgebase article into your web browser for step-by-step instructions:
    '''Me''' : I did as they requested and am fully upgraded and licensed with their new edition.
    Ran a new scan same problem.
    I sent them a new e-mail but now wonder if it is a Firefox issue as, C:\Documents and Settings\Owner\Application Data\
    ''Mozilla\Firefox\Crash Reports\Pending'' this is where the scan stalls.
    Any help would be appreciated.
    Thank you.

    Try delete the files in Pending folder and make the scan again, do not be afraid to delete the files see : https://support.mozilla.org/en-US/questions/679996
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How do I use icloud to restore my documents that were in Pages? Pages got stuck in "waiting" to update and when nothing else worked I deleted it and reloaded Pages. I don't want to restore everything just my Pages documents.

    How do I use icloud to restore my documents that were in Pages? Pages got stuck in "waiting" to update and when nothing else worked I deleted it and reloaded Pages. Everything I can find is about wiping everything out and restoring everything. I don't want to restore everything just my Pages documents (and numbers and keynote that also locked up during updating).

    What I meant is turn off Documents and Data in iCloud in OS X. Keep it on on your iOS devices. iCloud will sync documents between the iOS devices and make them available on the iCloud web site, but it won't mess up iWorks' open and save dialog boxes. It also won't assume that you want all your documents in iCloud, which I think is undesirable anyway.
    Keep iOS and OS X separate, and use the web site to move files between the two as necessary.
    iOS iWork is different from OS X iWork. There are fewer fonts on an iOS device. iOS iWork programs have slightly different feature sets than OS X iWork programs, and the file formats are different. iCloud automatically converts the file format when necessary, but if you make a habit of saving things directly to iCloud, you are limited to the lowest common denominator between the two versions of iWorks. So why would anyone want iWork on the Mac to open and save documents on iCloud by default?
    If you want to store files in the cloud and sync them on your Macs, SugarSync is a much better solution. It lets you choose your sync folders, it doesn't make you reorganize your files, it lets you sync all file types, it doesn't convert files to a different format and back, and it stores everything in the cloud, too. Just the simle act of saving a file backs it up and syncs it. I wouldn't live without it. iCloud is best with iTunes purchases and synchronizing Mac settings and iOS files; I woudln't live without it. The two make an unbeatable combination.

  • HP 5440 deskjet wont print..documents stay stuck in queue.

    I have a 5440 printer that previously worked. Now any documents I print get stuck in the queue and I get a message that says documents failed to print. I even connected the printer to another computer and had the same problem. I checked all the connections and even downloaded a support device from HP but still no resolution of the problem. Anyone know how to fix this? Thanks in advance!

    Have you tried a different USB cable?
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • When add a people picker (user column) in Word document (Template) and try to add a name it stuck!

    When add a people picker (user column) in Word document (un the document Template) and try to add a name it stuck!
    Is it a known issue?
    keren tsur

    Hi,
    According to your description, I have tested in my environment and I  have the same behavior.
    Only if you type the wrong name in the first time, then you click the phone book to search the right name and save, it will stuck. It means if you do other operation(e.g. type the wrong name then click “resolve” button, then search in the phone book) and
    repeat the operation above, it won’t stuck.
    It is appreciate that you can submit a feedback to Microsoft:
    https://connect.microsoft.com/
    Thanks,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Document stuck. can't delete it.HP Officejet Pro 8600.

    I have an HP Officejet Pro 8600 printer.  My document is stuck in print queue and won't let me delete it.  Nothing else can print.  This seems to happen on a regullar basis.  It happens on email, on word documents, etc.  I would like to get document out of queue so other documents can print and also stop the problem from happening.  thanks.

    Hello-
    Try these steps :
    First Stop the  Print Spooler. If you attempt to copy or delete any items in that folder while the Print Spooler is started, you will get an error stating that the items are in use.
    If you need help stopping the spooler just tell me your Operating System.
    Go to C:\Windows\System32\spool\PRINTERS. Usually when you get to the PRINTERS folder you will get a pop up message stating that you need administrator permission to enter the folder, and all you need to do is press Continue.
    There will be two items in the folder for every item in the print queue.
    If you are wanting to manually delete the print queue instead, you can just delete the items at that time.
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    Donald

  • Excel documents stuck on loading circle

    I'm hoping this is the right forum, there wasn't a general Office Web Apps forum that I could see.
    I have a user who is unable to open Excel documents from SharePoint 2010, the web app toolbars appear as they should but the content stops on the "loading" text with the circle.
    The documents open fine if they select "Open in Excel" from the drop down when viewing the document library.
    The web app works fine for the other 30 odd staff in the same department, but not for this one user (all their PC's are build identical).
    I've tried an Office repair, renaming the OWSPUPP.DLL found in Office15 to that the OWSPUP.DLL is used from Office 14 (we have Office 2010 and Lync 2013), resetting IE, deleting all temporary files.
    The last option is to rebuild the PC.

    Hi,
    According to your post, my understanding is that the excel files stucked on loading circle.
    Did you active the feature Excel Services Application View Farm Feature and
    Excel Services Application Web Part Farm Feature in the farm ?
    We can active them, then check whether it works.
    Did you use the IE 32bit? Make sure the IE version is 32bit.
    You also can check with other browers, such as FireFox, Chrome, if so, we can use the following methods or reset the IE.
    Use the Compatibility View Settings in IE. Open the IE->Tools->
    Compatibility View Settings->add the site into Compatibility View, then check whether it works.
    Add the site into Trusted sites. Opne the IE->Internet Options->Security->Sites->add the site into the Websites, then check whether it works.
    What’s more, you can check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer” in the Search box.
    For SharePoint 2010, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • A large email with documents is stuck in my outbox, how can I delete it?

    A large email with several documents is stuck in my outbox, it tries to send each time I open mail but it's been in there for over a week and is clearly to big to make it through.  I want to delete it from my outbox, how can I do this?

    Sounds like you constipated your email program! 
    Here is the Ex Lax:  Go into the Outbox and swipe Left/Right on the message.  A red DELETE button should appear.  Tap it to clear the message.

  • Numbers app stuck trying to open an old document

    I have an old document that came up when trying to access Numbers. The app is now stuck trying to load this old doc.

    I am now unable to open Numbers at all. It says, "Numbers is not able to open -1712."

  • Document Properties​, Printing Shortcuts stuck on Photo-Prin​ting Borderless​.

    I printed a picture.  Now the Document Properties, Printing Shortcuts is "stuck" on Photo Printing Borderless.  I have to enter Properties and click on "General Everyday Printing" each time I print.  Defautl has been General Everday Printing for years.  What happened?  Thanks.

    Vja, sorry to hear you are having trouble! If you could provide some more information the community may be able to assist you better. The following items would be extremely helpful to help diagnosis your issue:
    Printer Model:
    Operating System:
    What applications you are printing from:
    These items will help other narrow down the issue and be able to provide better support. 
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • After installing ios8 my iCloud setting is stuck in the upgrading mode, and some documents are missing from my pages app.

    After installing the IOS8 on my ipad2, the iCloud drive is stuck in the upgrading mide.  I am also missing some documents that were in my Pages app.  Can anyone help my fix this issue?

    I have just encountered a similar issue and I think it might have been the same as one you are getting. Turns out, I accidentally switched from my local store to US Store (App Store gives you a pop-up offering that), and purchases are tracked separately between those, causing all your purchases to become invisible.
    Go to Settings, log out of App Store, log in again, and you should receive a pop-up saying that your account is associated with a different store, offering to switch back. Now all apps are back and available for download.

Maybe you are looking for

  • I cannot print a web page while I am in Firefox. It will print a webpage from explorer, though. Printer is working fine.

    I simply would like to print what I might see as a web page on the scree. I do not see a "print" option anywhere, even when I right click on the screen.. I also cannot see the "tools" icon anywhere.

  • HOW TO KEEP 3 LINES IN SELECTION-SCREEN

    hi all, i have a requirement. i have to keep one field in selection-screen say v_text whose length is 70 characters . and i have to display text as follows <System Date> ': EST STATUS:HUNGARY PROJECT:' in form of 3 lines by default. any one can send

  • Passing custom fields to BAPI

    Hi All, How can i handle the Quantity field using BAPIPAREX? EX. I have added the following custom fields to the standard table EKKO.        zf_base        (Price per ton, CURRENCY)     zreq_tons      (Tons Required,QUANTITY)     zpo_issue_date (PO I

  • Waves plug in folder not found? Is there an audio plug in manager?

    Hey folks, here we go with what will probably be a series of questions about Final Cut Pro- I just got and installed Final Cut Pro Studio today. I have version 5.1 on a Mac Pro listed below. When I boot up the program, it scans all my audio plug ins

  • Controlling Column Widths in DWcs5

    Hi everyone, I might be being a bit thick, but I have a simple grid in a page 980 wide (all measurements are in pixels). It is just 5  columns of - 40, 130, - -, 130 and 40, the column in the middle should be 640 but for some reason it is not letting