Data cable not listed as a Data Bearer in Nokia 66...

I have a Nokia 6630 with Firmware V 4.03.18 04-03-05 RM-1. I cannot synchronize with my PC using the PC Sync feature because while creating the sync profile on my phone it does not allow me to add Data Cable as a Data bearer. The only 2 options I have for Data Bearer is Web and Bluetooth. I am using the latest Nokia PC Suite which is 6.84.10.4. I can however synchronize using bluetooth.
Is there a resolution to this problem?

Arthur,
Great idea, I verified that the Integration Services for 2012 was not installed.  I installed the new SSIS service and verified that SQL Server Integration Services 11.0 was running (previously only 10.0 was running.)
Initially, I experienced an error message trying to run my simple script above:
Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications.Core, Version=10.0.0.0,...
I followed the steps at the MS link for Could not load file or assembly ‘Microsoft.VisualStudio.Tools.Applications.Core’
and loaded the missing x64 runtime from edist/VSTA/runtime/x64/VSTA_RT30.msi
on the distribution media as recomended.
The script ran, but returned the error listed in the beginning of this message.  I then tried:
- turning off the 10.0 service
- setting the project's Run64BitRunTime value both false and true
- changing the reference to Microsoft.SqlServer.ManagedDTS.dll from C:\Program Files (x86)\Microsoft SQL Server\110\SDK\Assemblies to C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SqlServer.ManagedDTS\v4.0_11.0.0.0__89845dcd8080cc91
all of these resulted in the same failure.
Thank you for the suggestion, I really thought it would be on target.  Alas, it wasn't the fix.
It is so weird that all the other stuff I'm doing (a very elaborate programmatic package generator doing some tricky stuff,) works fine and only this super basic logging fails!!!!
Thanks again,
--Tim

Similar Messages

  • PC Suite 7 – Data transfer not possible. Check dat...

    When I try to use (open, update, modify etc.) the “contacts list” in PC suite version 7.0.7, I always have the following error: “Data transfer not possible. Check data connection”. Instead the SMS list works fine. My phone is Nokia 6267.
    Anyone has a solution?
    Best Regards
    Bix123

    Hi everyone,
    I had the same problem for months with many PC Suite versions & both XP service packs until I tried a phone setting just for testing and everything worked out fine In my phone (3110c) under Settings / Connectivity / Data Transfer / PC Sync, I filled in a random User name & Password and voila!!! All contacts copied just fine!!! I hope this works with other models with the same menu as well. It looks that it's not a PC Suite problem after all (at least for me that is).
    Hope I helped you guys
    Spiros
    Greece

  • PO Doc Date is not Greater than MIGO Date.

    Dear All,
    I ahve Done PO with doc date 02.02.2009 & i create MIGO as 25.01.2009 System is accepting this document.
    so i want restriction of this procedure.
    PO date is not greater than MIGO date.
    Thanks
    Shital

    hi
    for ur problem just set message no ME039 as error message
    go to SPRO>MM>Purchasing>Environment Data>Define Attributes of System Messages
    here make message ME -039 as error
    regards
    KI

  • Why is the folder strukture based on the import date, and not on the Creation date? How can i setting this?

    Why is the folder strukture based on the import date, and not on the Creation date? How can i setting this?

    What folder structure?
    If you're referring to how Aperture stores the originals in a managed library then the answer is you can't change it.
    If having the originals stored in a specific file structure is important to you you will need to switch to a referenced original setup.

  • End date should not less than Start date, else CLEAR it

    Hello
    I put CONTRACT START DATE and CONTRACT END DATE fields on the form. These 2 objects (Date/Time objjects) i pulled them from Satndard tab of pallette and dropped on my layout page design, fine.
    Now, am trying to put a validation that the end dat eshould not lower than start date, so, i got a thread as below from Niall,
    http://forums.adobe.com/message/1909551
    and i did my FormCalc coding under EXIT event of END DATE field as below,
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE") .rawValue
    endDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue
    if (stDate > endDate) then
        xfa.host.messageBox("End date is lower than Start date! End date is cleared")
        xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue = null
    endif
    // End date should not less than Start date, else CLEAR it - End
    I tried in VALIDATE, CALCULATE, CHANGE events of END DATE, but nothing working!!
    PLs. let me kow how can i achieve my requirement? I am anewbie,
    Thank you

    If you use the exit event, you will probably have to have the same code on both the start and end date fields since they have a dependancy on each other. Maybe better to try the validate event of the end date so that if either field is changed the event gets fired. You can try the following for validate event
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = CON_START_DATE.rawValue
    endDate = $.rawValue
    if ( HasValue(endDate) ) then
        if (stDate > endDate) then
            xfa.host.messageBox("End date is lower than Start date! End date is cleared")
            $.rawValue = null
        endif
    endif
    1
    // End date should not less than Start date, else CLEAR it - End

  • Contract End date should not less than Start date, else CLEAR it

    Hello
    I put CONTRACT START DATE and CONTRACT END DATE fields on the form. These 2 objects (Date/Time objjects) i pulled them from Satndard tab of pallette and dropped on my layout page design, fine.
    Now, am trying to put a validation that the end dat eshould not lower than start date, so, i got a thread as below from Niall,
    http://forums.adobe.com/message/1909551
    and i did my FormCalc coding under EXIT event of END DATE field as below,
    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    var stDate
    var endDate
    stDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE") .rawValue
    endDate = xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue
    if (stDate > endDate) then
        xfa.host.messageBox("End date is lower than Start date! End date is cleared")
        xfa.resolveNode("CUSTOMER.Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE").r awValue = null
    endif
    // End date should not less than Start date, else CLEAR it - End
    I tried in VALIDATE, CALCULATE, CHANGE events of END DATE, but nothing working!!
    PLs. let me kow how can i achieve my requirement? I am anewbie,
    Thank you

    http://forums.adobe.com/message/4264933#4264933

  • Basic date is not same with schedule dates

    Hi,
    I have a problem in MD04 stock requirement list.
    Planned order basic date and schedule date is not the same.
    The schedule date finish at year 2010 but basic date still end ad 2009
    in MD04, the date display is basic date.
    Why the basic date is not adjusted?
    in configuration i had choosen adjust basic date in scheduling planned order.
    In material master in house production time is not updated because we use lead time scheduling
    Please kindly help
    Best regards,
    Freddy Ha

    Hi,
    i omit the scheduling maergin key in material master,
    the result of MRP is
    BASIC DATES
    Finish 15.10.2009
    Start 14.10.2009
    PRODUCTION DATES
    15.02.2010 14:33:25
    14.10.2009 07:00:00
    scheduling type i planned order is still "backwards"
    so in MD04 it is say that the goods is available at 15.10.2009 same with requirement dates.
    this seem not right.
    it seems that order finish date is not adjusted by lead time scheduling on "today scheduling".
    Is there a way so order finish date is adjusted by lead time scheduling on "today scheduling" ????
    Best regards,
    Freddy Ha
    Edited by: Freddy Halim on Oct 14, 2009 10:01 AM

  • Date field not working like a date field

    We have quite a few date objects in the Universe but only some seem to function as a date field whereas some do not.
    The easiest way to tell whether a date field is functioning as a date field seems to be to add the date fields as a filter in a query. If it is a proper date field a Calendar option appears. If it is not, no Calendar option appears.
    In the screenshot below, the Latest Approved Date functions like a proper date object and shows a calendar option. The other field does not even though it is a date field too.
    I'm checking with this forum as the Universe designer didn't have any answer for this.

    HI Vivek,
    Go to Universe Designer
    click on object (Latest Approved Date)
    click on definition
    go to TYPE scroll down and select type as DATE
    and export now check the filter it will work
    try once
    Regards,
    Ranjeet

  • Database Export exporting data does not export time of date columns

    Hi,
    I'm trying to export some data using Database Export and for the date columns the resulting scripts truncates dates showing only the date part not the time one. If export from a query result the resulting script include all the information (date and time).
    Does anyone has an idea on how to export all the date information using database export.
    thanks

    Yep, as Jim said, under Tools / Preferences / Database / NLS Parameters I changed Date Format to DD-MON-YYYY HH24:MI:SS
    Seems to have done the trick. What's the significance of DD-MON-RR versus DD-MON-YY?

  • The stock consumption as per expiry date and not as per availability date

    Hi All,
    We had a requirement like below for our client:
    While creating batch in ECC we put the expiry date for the batch as per the business requirement.
    Suppose batch creation date: 01.01.2011
    If in case the SKU shelf life is 1 year the logical expiry date should be 31.12.2011.
    But here user can put any expiry date (there is genuine business reasons behind that), so for one SKU for one Availability date of the batch we can have 2 expiry date.
    Please see below one example for the same:
                         EXPIRY DATE                 SHELF LIFE                    AVL DATE
    batch-1        08.10.2012                       720                              19.10.2010
    batch-2        06.06.2012                       365                              12.06.2011
    batch-3        01.08.2012                       360                              03.08.2011
    In the above case the SKU which is available first is having a long expiry period and vice versa.
    As per standard SAP the stock which is available first will be consumed first. So as per standard SAP batch1 will be consumed first than batch-2 and than batch-3.
    But our requirement is to consume stock based on the expiry date of the stock.So the stock which is going to expire first will be consumed first. In the above scenario the consumption should happen like batch-2 first than batch-3 and than batch-1.
    The client requirement is to consume the stock as per the expiry date and not as per the Availability date (this is what happens in the usual scenario).
    Could you please suggest how to incorporate this?
    Thanks in Advance,
    Mukesh Pandey

    Hi Mani,
    Thanks for your prompt reply.
    I tried using the characteristic for Expiry date as the sort criteria as per sap note 377186.
    After doing the changes in the structure as suggested by SAP note i was able to see this characteristics as one of the sorting criteria. But when I am trying to create pegging relationship between demand and supply element he message i am gtting is "MAX_SL_DATE" can not be used as a sorting criteria in a fix pegging.
    System is just ignoring it.
    We have batch managed stock here and stock availability date is batch creation date.But since we are manually creating batch in ECC and cifing it to APO we are getting scenarios where for the same creation date of batches we have different expiry dates.
    I hope i am clear now.
    Could you please suggest any other option as sorting is not working .
    Regards,
    Mukesh Pandey

  • PS Forecast Dates are not synchronized when Cproject Dates are updated

    hello Experts,
    I did all necessay customizing for DFM synchonization but when i modify date in Cproject and i check the project defintion in "CJ20N" , dates are not updated.
    Do you have any idea why? Project defintion has a statut "PREL".
    Thank you in advance,
    Amal

    Is there a page online demonstrating this problem? I think without taking a look, we might speculate wildly and waste a lot of your time...
    One thing that turned on in Firefox 29 is support for <input type="number">. If any of your date fields were using type="number" as a way to be scripted or styled specially, that may no longer work correctly in Firefox 29 and higher.
    This article might be useful:
    https://developer.mozilla.org/Firefox/Releases/29/Site_Compatibility

  • My database not listed at SQL data source in Web Expression 4

    Can anyone help me out?
    Am not sure whether this is the correct place for my problem.
    I set up SQL Server 2005. Created a database named "employee" and a table under it "emp_info"
    I tried to connect it from Microsoft Web Expression 4 through SQL Data Source control. Well, the connection test is successful but the database i created is not shown in the drop down. However, it shows the system databases. 
    Again i create the table under one of the system databases, and tried to connect it. Those system tables which are there from before are only available to connect but not the table i newly created.
    I have checked the properties, permission of the table as well as the database. Nothing is wrong there.
    Will attach screenshot after the forum admin verify me.

    Hi Marconi,
    The forum supports VS setup and installation. Your issue is more about Web Expression 4. But I find the information below from the link:http://www.microsoft.com/expression/eng/#web
    The web is now about applications as well as traditional web sites, and this requires a new set of tools. Microsoft is committed to offering a unified approach to focus on web design and development features in Microsoft Visual Studio 2013 and beyond.
    As part of this consolidation, Microsoft Visual Studio 2013 provides the leading web development tool, which enables you to design, develop, and maintain websites and web applications. Visual Studio 2013 makes it easy to build CSS-based websites from the
    ground up with CSS layouts, HTML5 support and full featured capabilities for working with and debugging JavaScript. Learn more about
    Visual Studio Express 2013 for Web and
    WebMatrix 3.
    It seems you could install VS express 2013 for web to instead it. If you want to install VS express for web and you encounter any issue, you could post the installation issue to here.
    >>No, this is not the correct forum. This forum is for using .Net Framework inside SQL Server.
    The sentense is from the first reply. It seems you first post the issue to SQL server for help. As Erland said, it seems your issue is more about Web Expression 4. Have you solved your issue by using the first reply? If has, please mark the first reply as
    answer. If not, you could post your issue to the related forum for better support.
    http://social.msdn.microsoft.com/Forums/expression/en-US/home?forum=web
    I will move the thread to off-topic forum. Thanks for your understanding.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Dates are not mapped as the Date data type in Universe created on Infoset

    Hi,
    When i try to create the universe on top of Infoset query, the date fields present as the variables in SAP BI Query are not mapped as date data type in Universe, instead they are considered as Characters, hence the prompts related to those variables are coming s List of values instead of Calendar in WebI.
    Can any one pls help me to find the solution on how to map date variables as calendar in Webi Prompts.(For SAP BI Queries created on Infoset)
    Edited by: Nisha Makhija on Jul 20, 2009 5:59 PM

    Hi Ingo,
    Thanks for your response!!
    The I Query is built on Top of BW MultiProvider and the InfoObject is of Type DATS.
    Actually our Modeling on the BI is as follows :
    DSOs> Infoset>Multiprovider->BI query>Universe.
    Since we were not able to get the prompts as Calander so We tried Debugging on different Data targets to find the root cause. Please find our observations as follows:
    When I tested the same date infoobject(of Type DATS) by creating a BI Query on top of DSO, Infocube & Multiprovider ,the Prompts are working fine as a calander in WEBI Report.
    But when the BI Query is built on Infoset data target, In WEBI Report I am getting list of values rather a Calender prompt .
    I tested in the Universe that field is appearing as Character instead of Date.
    Please guide to resolve this issue.
    Thanks,
    Nisha.

  • Powerpivot Data Refresh Not working with Oracle Data Source in sharePoint 2013

    I am using SQL Server 2012 PowerPivot for Excel 2010. Getting the following error in SharePoint 2013 environment, when using Oracle data source within a workbook -
    EXCEPTION: Microsoft.AnalysisServices.SPAddin.DataRefreshException: Engine error during processing of OLE DB or ODBC error: The specified module could not be found..:
    <Site\PPIV workbook>---> Microsoft.AnalysisServices.SPAddin.DataRefreshException: OLE DB or ODBC error:
    The specified module could not be found..   
     at Microsoft.AnalysisServices.SPAddin.DataRefresh.ASEngineInstance.ProcessDataSource(String server, String databaseName, String datasourceName, SecureStoreCredentialsWrapper
    runAsCredentials, SecureStoreCredentialsWrapper specificConfigurationCredentials, DataRefreshService dataRefreshService, String fileUrlForTracing)     -
    -- End of inner exception stack trace ---   
     at Microsoft.AnalysisServices.SPAddin.DataRefresh.ASEngineInstance.ProcessDataSource(String server, String databaseName, String datasourceName, SecureStoreCredentialsWrapper
    runAsCredentials, SecureStoreCredentialsWrapper specificConfigurationCredentials, DataRefreshService dataRefreshService, String fileUrlForTracing)   
     at Microsoft.AnalysisServices.SPAddin.DataRefresh.DataRefreshService.ProcessingJob(Object parameters)
    I created a simple Excel 2013 PPIV workbook with an oracle data source and uploaded that to SharePoint 2013, but no change in the results - still getting the above error.
    What is this error? We have installed Oracle client (64-bit, since we use 64-bit Excel and Sp is also 64-bit) on SSAS PPIV Server and SharePoint Content DB Server. Do we need
    to install it anywhere else?
    Thanks,
    Sonal

    Hi Sonal,
    To use PowerPivot for SharePoint on SharePoint 2013, it is required to install PowerPivot for SharePoint with the Slipstream version of SQL Server 2012 SP1. If you install SQL Server 2012 and then use the upgrade version of SQL Server 2012 SP1 to upgrade,
    the environment will not support SharePoint 2013.
    I would suggest you refer to the following articles:
    Install SQL Server BI Features with SharePoint 2013 (SQL Server 2012 SP1):
    http://technet.microsoft.com/en-us/library/jj218795.aspx
    Upgrade SQL Server BI Features to SQL Server 2012 SP1:
    http://technet.microsoft.com/en-us/library/jj870987.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • Event date does not agree with photo dates in the event

    Mavericks 
    Iphoto 9.5.1
    I have made a new event and put lots of genealogy pictures for one family member in it.  I changed all the photos to Jan 4, 2002.  These are docs, pics, obits, etc. Thus I have given this one person this date.  Other family names  have another date.  I modified all the original files within each event.
    Beside this couples name on the "Event" label it says Jan 3, 2002 - August 23, 2014.  Therefore it shows itself in the Jan 3, 2002 group of people.  That is about 20 family groups up the page.   
    I have done the following:
         --Made sure that there are no pictures with the date Jan 3, 2002 in the event
         --Have taken all the pictures in the event and separated them out into new events--census, certificates, pictures, obits, etc.  Thought I would trick the event to restarting! 
         --Did a "select-all"  of that event and created a new event--same thing.
         --Closed down iPhoto and started over again.
    I have no idea why the Jan 3, 2002 is showing up.  These are one side of the family.  The January 4 is the other side!
    On August 23, 2014, I did take a couple of the cemetery pictures in this event.  However, they were given the new date of January 4 and Modified the original files using the checkbox.  I put the same picture in another family member's event and it is OK.  I
    Hope I have given enough details.

    I think I have solved it!  After much frustration and then writing for help, I was not to be stopped.  I kept looking up other helps and one person suggested that one of the pictures might be a problem.  So I tried that approach.  I made an event just out of the "possible" problem pix (the August  2014 date.)  It was not causing a problem in another event, however.   From that  event with the same pix, I exported the pix to the desktop, and then imported the pix back into iPhoto.  Then I put them into the event that was having the problem.  So far so good.  The date of the event matches all the dates of the photos.  I will now delete the "problem children."
    Maybe this will help someone else. 

Maybe you are looking for