Importing Handheld

I am receiveing the following messasge in the statuslog.txt file. Can
anyone help me determine what this means? Thanks.
Error: HHLD-130 Handheld Device Message Handler (1 of 3)
ZENworks
for Handhelds Server
Tuesday, September 09, 2003 2:04:04 PM
An error occurred while processing a handheld device
registration message from proxy <4>, device guid
<B6CAA919-CC69-48FF-8A3F-E7D75B11564C>, original device guid
<B6CAA919-CC69-48FF-8A3F-E7D75B11564C>.
Error: HHLD-128 Handheld Device Message Handler (2 of 3)
Tuesday, September 09, 2003 2:04:04 PM
An error occurred registering a handheld device from proxy <4>, device guid <B6CAA919-CC69-48FF-8A3F-E7D75B11564C>, device type <2>, username <Nathan>, serial number <>.
Error: DIROBJ-2 Directory Object Message (3 of 3)
Tuesday, September 09, 2003 2:04:04 PM
The directory policy package object <cn=Handheld Service
Package,ou=Policies,o=A1> was missing the <GUID>.

We did not have e-directory 8.5 installed to our systems. After
installing this the device imported into the selected container.
Nathan H. Dawes
Pantex Plant
> I am also having this same problem. Were you able to resolve this?
>
> > > Hello David,
> > >
> > > I did delete and recreate the Handheld Service Package, but that
did
> not
> > > help. I went into Console One to check the properties and see
if
the
> > > import policy had a GUID, but I could not find one. I am not
sure
if
> I
> > am
> > > looking in the right place though. Where exactly would it be
> located?
> > > Also what rights are needed in order for the service to access
the
> > > HandHeld Service Package.
> > >
> > > Thanks.
> > >
> > > Nathan H. Dawes
> > > Pantex Plant
> > >
> > > > Hello,
> > > >
> > > > For some reason the ZfH server does not think your Handheld
Service =
> > > > Package (where you configured your import policy) has a GUID.
Do
> you
> > > know =
> > > > if it has one? You can check via ConsoleOne and look at the > > properties
> > > of =
> > > > the object. If it has one, perhaps there is a rights issue
> preventing
> > > the =
> > > > service from accessing it. You could also try deleting and
creating
> a
> > > new =
> > > > package and import policy.
> > > >
> > > > Feel free to email me directly.
> > > >
> > > > Dave Kegel
> > > > Novell, Inc.
> > > >
> > > > >>> <[email protected]> 9/9/03 5:24:25 PM >>>
> > > >
> > > > I am receiveing the following messasge in the statuslog.txt
file.
> > Can=20
> > > > anyone help me determine what this means? Thanks.
> > > >
> > > > Error: HHLD-130 Handheld Device Message Handler (1 of
3)
> > > ZENworks=20=
> > > >
> > > > for Handhelds Server
> > > > Tuesday, September 09, 2003 2:04:04 PM
> > > > An error occurred while processing a handheld device=20
> > > > registration message from proxy <4>, device guid=20
> > > > <B6CAA919-CC69-48FF-8A3F-E7D75B11564C>, original device guid=20
> > > > <B6CAA919-CC69-48FF-8A3F-E7D75B11564C>.
> > > >
> > > > Error: HHLD-128 Handheld Device Message Handler (2 of
3)
> > > > Tuesday, September 09, 2003 2:04:04 PM
> > > > An error occurred registering a handheld device from
proxy
> <4>,=20
> > > > device guid <B6CAA919-CC69-48FF-8A3F-E7D75B11564C>,
device
> type=20
> > > > <2>, username <Nathan>, serial number <>.
> > > >
> > > > Error: DIROBJ-2 Directory Object Message (3 of 3)
> > > > Tuesday, September 09, 2003 2:04:04 PM
> > > > The directory policy package object <cn=3DHandheld
Service=20
> > > > Package,ou=3DPolicies,o=3DA1> was missing the <GUID>.
> > > >
> > > >
> > >
> >
>

Similar Messages

  • Handheld Import

    I am getting an error messege in the logs stating the application
    object
    is missing GUID. Please help.
    Thanks.

    What version of E-Directory are you running? It must be version 8.5
    or newer. There is sometimes confusion when it comes to the older NDS
    (runs on NetWare only) vs eDirectory, as there is an 8.0 version of the
    older NDS than can actually be patched to a version later than 8.5, but it
    is not supported.
    If you are running eDirectory 8.5 or newer, please feel free to email
    me offline and we can troubleshoot the problem
    Dave Kegel
    Novell, Inc.
    >>> <[email protected]> 09/16 5:20 PM >>>
    I am getting an error messege in the logs stating the application object
    is missing GUID. Please help.
    Thanks.

  • Unable to access the data and table fields from handheld

    Hi,
    I've created a Testing.sdf file on the local pc using SQL Server Management Studio, creating table, fields and insert some data. in local pc i can access the the data as normal. the problem is after i moved the file to handheld device i
    cannot access the data within the table, it shown error 'Failed to retrieve data for this request. (Microsoft.SqlServer.SmoEnum)' . I tried to google it, but still got no solution.
    Thanks,

    'Name Space
    Imports System.Data.SqlServerCe
    'String Connection
    'Data Source = D:\SKUDWN3 .sdf'
    Public Sub CreateDB(ByVal StrConn As String)
            'Declaration
            Dim cn As SqlCeConnection = Nothing
            Dim cm As SqlCeCommand = Nothing
            Dim SQLEngine As SqlCeEngine = Nothing
            Dim rs As SqlCeResultSet = Nothing
            Dim rec As SqlServerCe.SqlCeUpdatableRecord = Nothing
            'Tables -
            Const TB_SKUDWN3 As String = "SKUDWN3"
            'Fields TB_SKUDWN3
            Const FL_SKUDWN3_UPC As String = "UPC"
            Const FL_SKUDWN3_SKU As String = "SKU"
            Const FL_SKUDWN3_LD As String = "LD"
            Const FL_SKUDWN3_SD As String = "SD"
            Const FL_SKUDWN3_AN As String = "AN"
            Const FL_SKUDWN3_Price As String = "Price"
            Const FL_SKUDWN3_GST_FLAG As String = "GSTFLAG"
            'Create Database
            SQLEngine = New SqlCeEngine(StrConn)
            SQLEngine.CreateDatabase()
            SQLEngine.Dispose()
            'Open Connection
            If IsNothing(cn) Then cn = New SqlCeConnection(StrConn)
            If cn.State = Data.ConnectionState.Closed Then cn.Open()
            cm = cn.CreateCommand
            'Create Table, Fields
            cm.CommandText = "CREATE TABLE " & TB_SKUDWN3 & " (" & FL_SKUDWN3_UPC & " NVARCHAR (13)," & _
                " " & FL_SKUDWN3_SKU & " NVARCHAR (9), " & FL_SKUDWN3_LD & " NVARCHAR(30)," & _
                " " & FL_SKUDWN3_SD & " NVARCHAR (18), " & FL_SKUDWN3_AN & " NVARCHAR(15), " & _
                " " & FL_SKUDWN3_Price & " NVARCHAR (10), " & FL_SKUDWN3_GST_FLAG & " BIT)"
            cm.ExecuteNonQuery()
            'Close Connection
            cm = Nothing
            If Not IsNothing(cn) Then
                If cn.State = ConnectionState.Open Then cn.Close()
                cn.Close()
                cn.Dispose()
            End If
        End Sub
    'The DB was successfully created, but after moving to Handheld the fields of table can't be accessed

  • Importing to FCPX from Sony Camera

    I am trying to import 1080/60P clips from a current Sony camera into FCPX.
    I am well aware of the tradeoff of size vs editing ease between AVCHD and ProRes. In this case I have hundreds of clips, most of which will be trimmed drastically if they are used at all. So I am hoping to do a rough cut in native format, then transcode that rough cut for final editing and cleanup. Should be a big saving in disk space. I have a new quad core Mac that should be able to play the native clips quite well.
    I already have an archive of the camera files on a Firewire 800 drive. I was hoping that FCPX would be able to import it by reference, creating little wrapper .mov files. However when I try to do that, I get a message that the folder containing the video cannot be imported. (It does offer to import the folder of stills that is part of the same file structure).
    If instead I choose Import from Camera, FCPX happily ingests the video files but from the size of the .mov files it creates it is clear that they are not references but copies of the camera originals. That makes complete sense for initial import of an actual SD card or USB-mounted hard drive, but I really don't want another 50 GB of files filling up my drive.
    If necessary I will use that process then delete the 50 GB of originals (I do have another copy on a second drive). But I am hoping that there may be a way to create reference wrappers around the files I already have on my drive so that I can work with them where they are.
    I am interested to know why FCPX behaves as it does, if anyone knows. For example, are audio and video multiplexed differently in the camera archive than in the .mov files that FCPX creates?

    Thanks for the quick reply.
    Camera is HDR-PJ760, which has proved to be absolutely amazing for handheld shots in difficult conditions. Many of the shots in this project were taken from a boat on the ocean, where a tripod would not have helped. All using the highest available quality settings at 60P. You can't get back quality thrown away in the camera. (Yes I know that the high compression in AVCHD is in fact throwing away a lot, but there is always some tradeoff to get a reasonably compact handheld camera.)
    I am guessing that the camera files are muxed, and that is why they cannot be used directly. If that's the case, I will just have to put up with the conversion step.

  • Outlook Sync Error SOLVED - Multi-day repeating appointment cannot be converted for use on the Handheld...

    *UPDATE 1/23/2009 07:08 AM* This is a partial fix. I no longer think the Recurrence Range is the culprit. It seems the Time Zones features between Outlook & Palm are not cooperating. This explains why my 12 am events are syncing as 6 pm the day before; I live in GMT-6:00 so it's moving my events ahead by 6 hours. Another event I set for 1 pm in Outlook was changed to 7 am on my Treo. I am going to start over and recreate each event, this time setting the Time Zones, which I hadn't done before. I tested it out and it worked with a single event... let's see how long it lasts. I've also found that using 'No Time' on my Treo is not compatible with Outlook. It's better to set a time with 0 minutes duration.
    *UPDATE 1/23/2009 04:11 AM* This is a partial fix. My monthly and yearly problematic recurring events are now showing up at 6 pm the day before on my Treo, though my Outlook calendar is fine. I think this has to do with the Recurrence Range Start/End in Outlook, which is set automatically. If only there were a way to change this... 
    After a WHOLE LOTTA trial-and-error (like 3 days worth), I think I finally solved my OLERR:14-001 issue!
    Problem: Syncing Palm Treo 755p calendar with Outlook 2007
    Error Message (simplified):
    HotSync session completed with messages on [date] [time]
    HotSync session started on [date] [time], and completed in [0] seconds
    Outlook Calendar synchronization completed with messages
    Duration: [0] seconds
    Outlook Calendar
    The multi-day repeating appointment titled [event] beginning [date] [time] cannot be converted for use on the Handheld. Please divide the appointment up into single-days and re-synchronize.
     OLERR:14-0001
    - Desktop overwrite HH Sync
    Note: You will likely have several of these ‘Multi-day’ instances in your hotsync log (I had 58). You may want to change Calendar in hotsync to "Desktop overwrites Handheld" after you get this error, to avoid erasing events while you are fixing this issue. Otherwise, you may have to restore them from a backup copy (if you have one) and start over. You can switch back once you’re through.
    Solution: First, I tried this Palm KB Article: http://kb.palm.com/SRVS/NUA/launchKB.asp?c=31167. After this didn’t work for me… I did trial-and-error. I believe the problem is that each recurring event, which you set up as ‘All-day’, must be changed to have a duration of 0 minutes from within Outlook. I was able to change some events directly, but I found that some of the records had corrupted, and would just revert. My fool-proof solution was to recreate EVERY problematic event (yes, one-by-one) using the following steps:
    Open Outlook
    Go to your default calendar, where your events are synced
    In the top menu choose ‘View’ > ‘Current View’ > ‘Recurring Appointments’
    Open a ‘New Appointment’
    Enter subject and other options, such as Categorize, Importance, Time Zones, or Reminder
    Make sure starting and ending date & time are the EXACT same
    Select ‘Recurrence’ & choose your pattern
    I did not choose ‘No end date’ (hence the Palm article), but rather ‘End by:’ and typed in 2031, then pressed tab to auto-generate a suitable end date. I chose 2031 because that is last year my Treo’s calendar goes to. Click OK
    Repeat for every event in your error log, until you get a clean "Desktop overwrites Handheld" hotsync (Outlook should be closed when you sync)
    Switch Calendar in hotsync back to "Synchronize"
    Even though I still get the message OLERR14:001, my syncs are successful. Now I will give my Treo time to see if the issue returns later. Until then, happy Outlook syncing and good luck!
    Post relates to: Treo 755p (Sprint)
    Message Edited by akeaw3000 on 01-23-2009 04:11 AM
    Message Edited by akeaw3000 on 01-23-2009 07:08 AM

    hello,
    if all of your data is on the phone you can change the sync action to handhled overwrites desktop
    how to:
    open palm desktop software
    on the top left click on 'hotsync' and then 'custom'
    on the calendar conduit
    highlight it and click on 'change'
    then choose 'handhled overwrites desktop'
    hope this will help you
    Post relates to: Palm TX

  • I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?

    Hi Chris.
    It's asking you for my apple id password. not going to give that out, sorry.
    However I did try this projector on my mother in laws iphone 4 and on my old iphone 3. ipico software isn't needed. plug and play any video through standard movie player or camera saved video.
    I tried on my girls iphone 5 with the adapter. The ipico software and projector doesn't work on this phone.
    Hope this helped you. Better to buy a used iphone 3 or 4 and use it for video storage.
    I also found that the battery on these projectors are a joke (30-60mins max). I rigged a longer lasting battery on the outside and keep it plugged in while using. This doesn't charge the phone though so I replaced the battery in the old iphone 3 and now get at least a full length movie from it. Great in bed projected onto the ceiling.
    William
          From: Apple Support Communities Updates <[email protected]>
    To: blackyam <********@yahoo.com>
    Sent: Tuesday, January 13, 2015 4:36 AM
    Subject: https://discussions.apple.com/iPhone Accessories - I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one? https://discussions.apple.com/f9xu1m-7t1g5-gcrif
    Apple Support Communities updates#yiv9918778479 a, #yiv9918778479 a.yiv9918778479aapl-link, #yiv9918778479 a.yiv9918778479aapl-link:link {text-decoration:none;color:#08c;}#yiv9918778479 p #yiv9918778479 a.yiv9918778479aapl-link:hover {text-decoration:underline;}#yiv9918778479 body  _filtered #yiv9918778479 {}#yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 * .filtered99999 #yiv9918778479 #yiv9918778479 _filtered #yiv9918778479 {}#yiv9918778479 td .filtered99999 {padding-left:20px!important;padding-right:20px!important;}#yiv9918778479 table #yiv9918778479 table .filtered99999 , #yiv9918778479 table .filtered99999 tbody, #yiv9918778479 table .filtered99999 tr, #yiv9918778479 table .filtered99999 td #yiv9918778479 td img {max-width:100%!important;height:auto!important;}#yiv9918778479 td .filtered99999 {}#yiv9918778479 a.yiv9918778479button #yiv9918778479
    |
    |
    |
      |
    |
    |
    Apple Support Communities
      |
    |
    |
    Chris  has posted in the iPhone Accessories community.
      |
    |
    |
    |
    I have an iPhone 5 and a PJ205 ipico Handheld LED Personal Projector for Apple iPhone 4. I bought the apple adapter but now need the app. Apple's App Store doesn't have it anymore, where can I get one?
    blackyam...thank you for the ipico software.  When I try to authorize my computer for it it says that I need to fill in the password for *******@yahoo.com.  I can't seem to get it to work with my email and password.  Do you know anything about this or do you know *******@yahoo.com's password?thx, Chris
      |
    |
    |
    To post a reply, go to the discussion in Apple Support Communities.
    |
    |
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM. Cupertino, CA 95014.
    All Rights Reserved
    Privacy Policy
    Terms of Use
    Apple Support
    <Email Edited by Host>

  • Looking for a program that can handel import and export of palm doc files

    I am looking for a program that can handel the import and export of palm doc Files that can convert them to to either txt or RTF files for Vista 32, running Palm Desktop 7.1.
    Could anyone give me a few suggestions of any plug-ins that would be good me?
    Hearns
    Post relates to: Palm IIIxe
    This question was solved.
    View Solution.

    Ok, you need to clean uninstall Palm desktop 6.2. Install Palm desktop 4.1.4 and download and install documents to go version 6.
    Here are the clean uninstall instructioins for Vista.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    If this is the first time you are installing Palm desktop and encountering a problem, skip the previous step.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. Use the username that is on the handheld.

  • Error while accessing application of Mobile Sales for Handhelds

    Hi all,
       I am working with Mobile Sales for Handhelds. I downloaded a source code for "Mobile Sales & Service for HH using CRM 4.0 SP08" from SAP note 824427. After creating a WAR file out of this code and assigning it to the user through web console successfully, I synchronized. But when I tried to access the application by the link, I get a Included servlet error. The stack trace is as follows :
    Included servlet error: 500
    Location: /CRMHHSALES/start
    Error Location: /CRMHHSALES/main/BaseMenu.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:15: Class com.sap.crm.handheld.logic.gui.Skin not found in import.
    import com.sap.crm.handheld.logic.gui.Skin;
           ^
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:16: Class com.sap.crm.handheld.core.utils.EncodingHelper not found in import.
    import com.sap.crm.handheld.core.utils.EncodingHelper;
           ^
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:17: Class com.sap.crm.handheld.logic.gui.Skin not found in import.
    import com.sap.crm.handheld.logic.gui.Skin;
           ^
    3 errors, 1 warning
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:282)
         at org.apache.jasper.servlet.JspServlet.doLoadJSP(JspServlet.java:612)
         at org.apache.jasper.servlet.JasperLoader12.loadJSP(JasperLoader12.java:146)
         at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:542)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:258)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:268)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.facade.RequestDispatcherImpl.doInclude(RequestDispatcherImpl.java:400)
         at org.apache.tomcat.facade.RequestDispatcherImpl.include(RequestDispatcherImpl.java:270)
         at com.sap.crm.handheld.core.webtools.ControllerServlet.displayPage(Unknown Source)
         at com.sap.crm.handheld.core.webtools.ControllerServlet.saveStateAndDisplayPage(Unknown Source)
         at com.sap.crm.handheld.core.webtools.ControllerServlet.handleRequest(Unknown Source)
         at com.sap.crm.handheld.core.webtools.ControllerServlet.handleRequestWrapper(Unknown Source)
         at com.sap.crm.handheld.core.webtools.ControllerServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:402)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:534)
    Can anybody help me in this issue?
    Thanks in advance.
                     Saptak.

    Hi Saptak Kulkarni ,
    <<<
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:15: Class com.sap.crm.handheld.logic.gui.Skin not found in import.
    import com.sap.crm.handheld.logic.gui.Skin;
    ^
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:16: Class com.sap.crm.handheld.core.utils.EncodingHelper not found in import.
    import com.sap.crm.handheld.core.utils.EncodingHelper;
    ^
    C:\Program Files\SAP Mobile Infrastructure\work\localhost_8080%2FCRMHHSALES\_0002fsystem_0002fError_0002ejspError_jsp_0.java:17: Class com.sap.crm.handheld.logic.gui.Skin not found in import.
    import com.sap.crm.handheld.logic.gui.Skin;
    ^
    >>>
    Check whether u have imported these classes or not,,
    import com.sap.crm.handheld.logic.gui.Skin;
    import com.sap.crm.handheld.core.utils.EncodingHelper;
    import com.sap.crm.handheld.logic.gui.Skin;
    these classes in your JSP file during modification ..
    i think u have used these all external classes in your JSP files without importing these classes...
    If u have imported these class files , then check , u have properly set path for these library (jar files) in the MI client itself.
    <b>If ur MI applications are using some extra jar files , then in the client device , that jar files must present in the lib directory of MI installation</b>.
    <b> These jar files must be set in the classpath while  starting the  MI client...</b>
    just refer this forum for setting classpaths in the client device for additional jar files ...
    Re: External API in MI application
    Regards
    Kishor Gopinathan

  • Need a method for importing Palm III data into a Palm Centro

    I just bought a Palm Centro (Verizon), with the expectation of importing data from my old Palm III.  From the Palm III Desktop, I exported Contacts, Calendar, Tasks, and Memos into separate folders (this was done on a Windows XP PC) and copied the resulting folders & files onto a flash drive.  But when I try to import these files into the Palm Centro desktop (on a new Mac Pro with OSX), the backup files are not in a "recognized format."  Does anyone have a process for reliably getting the Palm III data into the Palm Centro?  Also, is there an easy way to purge unwanted Contacts/Calendar events from the Palm Centro handheld?  With all the trial and error, its accumulating a lot of garbage.  Thanks...
    Post relates to: Centro (Verizon)

    Click on the following link for the upgrade guide on kb.palm.com
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=12926
    You will need to hard reset the Centro in order to clear out the Centro before sync'ing. Click on the following link for the hard reset procedure.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887
    Click on the following link for the support page for your devices on the kb.palm.com webpage.
    http://www.palm.com/us/support/centro/centro_vzw/
    http://www.palm.com/us/support/palm3/
    There are links on the pages to the user guide, troubleshooting, how to's, downloads, etc.
    You could try to export the data in each category in Palm desktop, save to the flash drive and import the data.
    Click here for the data export procedure.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=36288
    Make sure you select "ALL" for the range during the export procedure. If you don't, it will only export the currently selected record.
    Post relates to: Palm i705

  • Import contacts

    I have 400 contacts in my nokia phone I want to transfer them to my blackberry.. I have tried to send using Bluetooth but it shows error message UNABLE TO CONNECT.. How can I do this

    First, find out from Nokia HOW to export those contacts from your old device to a simple ascii CSV file (or even an Excel file).
    From there, you can import using the BlackBerry Desktop Software to the handheld device.
    Article ID: KB11194 How to import contacts from an already created CSV file to the BlackBerry smartphone
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Calendar info disappeared from laptop and then from handheld

    Please help- I have a new TX and today i noticed that my calendar entries were missing from my laptop palm application so i figured i would hotsync it ( after telling it that handheld rewrites computer) and almost all of my entries on my handheld disappeared.  I am trying to reconstruct it but i can't find it in archives or backup.  Can anyone help?  thanks.
    Post relates to: Palm TX

    I'm not sure what happen why you lost all your calendars when you hotsync your Palm. I will try to help you restore your calendar data.
    About the file 1142K.
    Before we touch this file make a backup copy. Also you said you just rebuild some of your calendar data, let's make a backup copy of those data that you had created.
    Open the Palm Desktop software and select the Date/Calendar icon on the left to view your calendar data.
    Click on File > Export and give the file name and remember where you are saving the file, ie. calendar.dba (we need this file later after we restore your 1142k file) and click on export.
    Close the Palm Desktop software.
    Using windows explorer, rename the datebook.bak located in your C:\Program Files\Palm\(your userid)\datebook folder to datebook.dat (hoping the datebook.bak file is not corrupted).
    After you rename the file from datebook.bak to datebook.dat open Palm Desktop software and select the Date/Calendar icon and see if you had restore your lost calendar data.
    If successful, you need to "Import" the backup file (calendar.dba) so you will still have the ones that you had rebuilt.
    To Import, from Palmdesktop click on File > Import and locate the calendar.dba file, select the file and click Import. Verify your calendar and make sure you can see the one that you rebuilt.
    Good luck and post back...

  • Upload BLOB through Handheld application

    Hi,
    I am developing NW Mobile Handheld application with 7.10 SP10 IDE. I want to upload an image and send it to DOE. I have created a model in DOE and imported the same in NWDS. The data type for the attachment attribute generated is BLOB as expected. My question is how do i create BLOB object so that i can fill the stream in it by reading a file. In laptop application i could see createBLOB() method in model instance to create BLOB object. But i couldnt see it in model class generated in PDA application.
    Regards,
    Dhana

    Hi Dhana,
    Here is the sample code:
         public void onActionCreate (Event wdEvent) {
    //@@begin onActionCreate(ServerEvent)
                   try {
                        AttahtstModel model = (AttahtstModel) OcaRoot.getInstance().getOcaModel(AttahtstModel.class);
                        AttachmentDataObjectAttachment element = model.createAttachmentDataObjectAttachment();
                        element.setAttachmentId(-1);
                        element.setAttachmentClob("X");
                        element.setAttachmentBlob("X");
                        element.setAttachmentClobActual("This is a new record");
                        BLOB blob = (BLOB) element.getAttachmentBlobActual();
                        InputStream is = blob.getBinaryStream();                    
                        String mobileHome = new File(Configuration.getInstallationDirectory()).getCanonicalPath();
                        String imageName = "image_new.jpg";
                        File imageFile = new File(mobileHome "
    MobileApps
    demo.sap.comattuiimplementation
    Components
    com.sap.demo.attui.wd.comp.attachmentcomp.AttachmentComp
    "imageName);                    
                        FileInputStream fis = new FileInputStream(imageFile);
                        blob.setBinaryStream(fis, imageFile.length());                    
                        OcaRoot.getInstance().commit();
                        wdContext.currentContextElement().nodeAttachmentDataObjectAttachment().bind(model.getAttachmentDataObjectAttachments());
                        wdContext.reload();
                   } catch (Exception e) {
                        e.printStackTrace();
    //@@end
    Thanks and Regards,
    Suma

  • Upgraded to Hotsink 4.1 version, Can't import back-up files.

    Zire21/Windows Vista
    My first gripe is that the hotsink upgrade software never had any kind of warning that the handheld should be hotsinked and archived prior to installing the upgrade. I figured that Palm was advanced enough to self-import the back-up files which are stored as data base files, .dbf extensions. Well so much for that. Hey Palm, get with the new millenium, would ya?
    Second gripe is that since I have no archive files, only back-ups, Palm does not tell me how to reinstall all my contacts etc.
    So here I am, unwilling to pay the $15 dollar support call fee for a problem that is clearly Palm ones fault.
    Please help if you can. How do I import the back-up files (.dbf) into the palm directory? Is that even possible?
    Thank You,
    Tim
    Post relates to: Zire 21

    Hello Tim and welcome to the Palm forums.
    As you already know, the database formats in Palm Desktop 4 and 6 are not compatible.  The only way that I know of to move data out of Palm Desktop 6 and back into Palm Desktop 4 is to export the data from the PIM application as a comma separated values (.csv) file.
    Hope that helps,
    Alan G

  • Import/Export Email

    Is there any way to import/export email from a user's account?

    What do you want to import/export from?
    I think you can do a dump of someone's mailbox using the imsbackup utility, but am not sure what format this gives you. Probably you can only import this into another iMS server.
    Apart from that, you could look at what tools your mail clients have for saving and importing messages. I think Outlook express has an archive utility that you could use. To import from Outlook to the server, you could use the iPlanet sync tool. This will synchronise in both directions between the iMS mail server and various clients. These include Outlook, Windows CE handhelds, palms, etc. Basically, if you set this up to synchronise with Outlook, then you can import/export using anything that will interface with Outlook.
    Of course you don't have to use Microshaft products. You could use any mail client to do this. Not sure about synching with other clients cos we've not done it.
    I'm not sure how you can get hold of this synching tool. There were various beta versions floating around about a year or so ago and I would have expected that they would have released a supported version by now. Then again.....

  • Empty results while importing outlook contact list with PHP

    Hello. Could you help me with such problem:
    I'm always receiving an empty result while importing contact list from my outlook mail account.
    I've had successfully created live app (https://account.live.com/developers/applications). I'm using REST api (https://apis.live.net/v5.0/me/contacts?&access_token=" . $access_token) and successfully received "access_token". But in the end
    I receive empty result in such form:
    { ["data"]=> array(0) { } ["paging"]=> array(0) { } } (certainly, I have few contacts in my outlook contact list)

    Desktop Manager is not contact manager. Restore it from Backup to a HH and then sync it with contacts in Outlook at home for example. Extract contacts to PST file. Import those to new company outlook contacts and they will sync over the air with handheld.

Maybe you are looking for

  • Please help Safari wont open

    Process:           Safari [451] Path:              /Applications/Safari.app/Contents/MacOS/Safari Identifier:        com.apple.Safari Version:           8.0.2 (10600.2.5) Build Info:        WebBrowser-7600002005000000~1 Code Type:         X86-64 (Nat

  • N97 pictures show in downloads category

    Hello After I updated my Nokia N97 I needed to do Hard Rest to fix some problems. After I did the Hard Reset all the pictures that I took from the phone camera moved to the downloads category from the captured category. Until now I didn't found a way

  • Anyway to use help documentation in iPhoto offline/download etc?

    Is there anyway to download/save the iPhoto 11 help to a files/html/ebook or anything? I like when during downtime to read the help when Im on my iPhone. In Windows days you could save the help files of programs to be able to view offline/seperate fr

  • Move our Existing Database 8.1.7.3 into 10gR2 through Export Import Utility

    Hi, I want to move our Existing Database 8.1.7.3 into 10gR2 through Export Import Utility in Oracle EBS (FINANCILA) environment. My Current Setup: OS: SUN SPARC 8 ORACLE APPS: 11.5.7 DB Version: 8.1.7.3 My New Setup: OS: SUN SPARC 10 ORACLE APPS: R12

  • Shuffle will not play podcasts in order

    I have downloaded a French Lesson podcast - which I found through iTunes. No matter how I import the lessons (i.e. directly from the library, or if I make a playlist for the lessons) the will NOT play in order on my iPod Shuffle. I DO have it switche