More than 1 destination when using Maps?

Cannot get directions between more than 2 locations at a time.  Not feasible for calculating routes with more than 1 stop...  Ineffective application.

Send a feature request to Apple via http://www.apple.com/feedback/macosx.html
OT

Similar Messages

  • More than one user "using an expression" in a BPM Task

    Hello,
    I want to send a notification step for multiple users. I see two options
    1. Choose one or more UME principals.
    2. Use an expression.
    However I have to send the notification for more than one user using an expression. I'm using this expression, 
    getPrincipal(DO_xyz)
    but this only works for one user. I need something like this
    getPrincipal(DO_xyz);  getPrincipal(DO_xyz2);  getPrincipal(DO_xyz3)
    But this is not possible. I can't use a group because all this information is dynamic and it's born within the process.
    Please, How can I solve this?
    Best Regards
    SU

    Hello Abhijeet,
    I've seen that I can use the getPrincipals adding in the XSD an string with 1..* cardinality. However I don't know how to map an attribute from the UITask to that new attribute in the XSD because in Web Dynpro I can't create an string with cardinality 1..*
    I've tried to create a node (1..*) with a String inside in the UI but I couldn't map it to the process context, it shows me an error that I cannot map a node to a String.
    Thanks
    Regards
    SU

  • Error:Ref cound more than 1 when add the field

    hai,
    I got the error like "Ref cound more than 1" when i add the field in the table.I use this fuction
    Public Function createUserFields(ByVal tablename As String, ByVal fieldName As String, ByVal fieldDescription As String, ByVal dataType As SAPbobsCOM.BoFieldTypes, Optional ByVal dataSize As Long = 0, Optional ByVal subType As SAPbobsCOM.BoFldSubTypes = SAPbobsCOM.BoFldSubTypes.st_None, Optional ByVal linkedTable As String = "") As Boolean
    Dim v_UserField As SAPbobsCOM.UserFieldsMD
    Dim v_RetVal As Long
    Dim v_ErrCode As Long
    Dim v_ErrMsg As String = ""
    Try
    createUserFields = False
    If Not UserFieldExists(tablename, fieldName) Then
    app.StatusBar.SetText("Creating Table " + tablename + " ...... :> Adding Field: " & fieldName & " - " & fieldDescription, SAPbouiCOM.BoMessageTime.bmt_Long, SAPbouiCOM.BoStatusBarMessageType.smt_Warning)
    v_UserField = com.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
    v_UserField.TableName = "@" + tablename
    v_UserField.Name = fieldName
    v_UserField.Description = fieldDescription
    v_UserField.Type = dataType
    If dataType = SAPbobsCOM.BoFieldTypes.db_Alpha Then
    v_UserField.Size = dataSize
    End If
    If Not (subType = SAPbobsCOM.BoFldSubTypes.st_None) Then
    v_UserField.SubType = subType
    End If
    If linkedTable "" Then v_UserField.LinkedTable = linkedTable
    ' If Not (v_progressBar Is Nothing) Then v_progressBar.Text = tablename + ":> " + "Adding Field:> " & fieldName & " :> " & fieldDescription
    v_RetVal = v_UserField.Add()
    If v_RetVal = 0 Then
    createUserFields = True
    Else
    com.GetLastError(v_ErrCode, v_ErrMsg)
    app.StatusBar.SetText("Failed to add UserField " & fieldName & v_ErrCode & " " & v_ErrMsg, SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
    End If
    System.Runtime.InteropServices.Marshal.ReleaseComObject(v_UserField)
    v_UserField = Nothing
    GC.Collect()
    End If
    can any one help me?
    Regards,
    Ramya.s

    HI
    In 2007 i always got the same problem.
    Solution:
    1st create all tables
    then
    2nd create all fields
    and do not use any querys to exists the table or field
    >If Not UserFieldExists(tablename, fieldName) Then
    use lretcode when you add the field / Table, even it is -2035 it is already exists, do not care.
    '... your original code
                If v_RetVal <> 0 Then
                    Select Case v_RetVal
                        Case -2035 'means already exist
                        Case Else
                            com.GetLastError(v_ErrCode, v_ErrMsg)
    '... your original code
                    End Select
                End If
    Only this way was working for me....
    Regards,
    J.
    Edited by: Janos  Nagy on Jul 30, 2008 2:58 PM

  • How to backup more than one database using powershell

    I am Trying to backup more than one database using the following script but no luck. I want user to type on command line the database they want to backup, e.g all databases that have "test" at the front like test.inventory, test.sales so i want
    user to type test.* and it backs up all databases related to test. Here is the script
        #$date = Get-Date -Format yyyyMMddHHmmss
        #$dbname = 'test.inventory'
        $dbToBackup = "test.inventory"
        cls
        [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | Out-Null
        [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SmoExtended") | 
        Out-Null
        [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.ConnectionInfo") 
        | Out-Null
        [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SmoEnum") | Out-
        Null
        Add-Type -AssemblyName "Microsoft.SqlServer.Smo, Version=10.0.0.0, Culture=neutral,   
        PublicKeyToken=89845dcd8080cc91"
        $server = New-Object Microsoft.SqlServer.Management.Smo.Server($env:ComputerName) 
        $server.Properties["BackupDirectory"].Value = "C:\_DBbackups"
        $server.Alter()
        $backupDirectory = $server.Settings.BackupDirectory
        #display default backup directory
        "Default Backup Directory: " + $backupDirectory
        $db = $server.Databases[$dbToBackup]
        $dbName = $db.Name
        $timestamp = Get-Date -format yyyyMMddHHmmss
        $smoBackup = New-Object ("Microsoft.SqlServer.Management.Smo.Backup")
        #BackupActionType specifies the type of backup.
        #Options are Database, Files, Log
        #This belongs in Microsoft.SqlServer.SmoExtended assembly
        $smoBackup.Action = "Database"
        $smoBackup.BackupSetDescription = "Full Backup of " + $dbName
        $smoBackup.BackupSetName = $dbName + " Backup"
        $smoBackup.Database = $dbName
        $smoBackup.MediaDescription = "Disk"
        $smoBackup.Devices.AddDevice($backupDirectory + "\" + $dbName + "_" + $timestamp +   
        ".bak", "File")
        $smoBackup.SqlBackup($server)
        #let's confirm, let's list list all backup files
        $directory = Get-ChildItem $backupDirectory
        $backupFilesList = $directory | where {$_.extension -eq ".bak"}
        $backupFilesList | Format-Table Name, LastWriteTime

    Or i am using this script which backs up everything except tempdb but dont know how to modify this so that it backs up up all test related databases
    Is there a way that i use test.*
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | out-null
    $s = new-object ("Microsoft.SqlServer.Management.Smo.Server") $instance
    $bkdir = "C:\_DBbackups" #We define the folder path as a variable 
    $dbs = $s.Databases
    foreach ($db in $dbs) 
         if($db.Name -ne "tempdb") #We don't want to backup the tempdb database 
         $dbname = $db.Name
         $dt = get-date -format yyyyMMddHHmm #We use this to create a file name based on the timestamp
         $dbBackup = new-object ("Microsoft.SqlServer.Management.Smo.Backup")
         $dbBackup.Action = "Database"
         $dbBackup.Database = $dbname
         $dbBackup.Devices.AddDevice($bkdir + "\" + $dbname + "_db_" + $dt + ".bak", "File")
         $dbBackup.SqlBackup($s)

  • Recently i updated my software to 7.0.4 after that my mails automatically increased to more than 600 when actually i had not even 100. and i cant even see my mails there is no option to view them??

    recently i updated my software to 7.0.4 after that my mails automatically increased to more than 600 when actually i had not even 100. and i cant even see my mails there is no option to view them??

    Illaas,
    I tried the manual method.  I was able to set the music/video to manual and then restarted the entire system.  After restart, I re-attached the ipod touch to the computer.  The sync automatically ran for everything that wasn't set to manual and it completed without a problem.  I then reset the music/video to automatically sync and restarted the entire coputer/ipod set again.  This time when I re-attached the ipod, EVERYTHING synced and there were no problems reported.  I've never had to do this before, but I will keep it in mind if something like this happens again.  Thank you for pointing me to the manual sync.

  • Is it possible to install Lightroom 4.1 on more than one computer using the same product code?

    is it possible to install Lightroom 4.1 on more than one computer using the same product code?

    Yes, your license key is cross platform PC & or Mac you are allowed to have two current installations with one in use at any point in time. You can uninstall / install as many times as is necessary so long as you adhere to the limits.

  • How to pull groups from more than one OU using weblogic "All Groups Filter" from AD.

    Hi,
    Please help me for pulling groups from more than one OU using weblogic "All Groups Filter" from AD.
    AD structure is:
    c001639domain.local
           ||
           ||
        OU=Security_Groups
                      ||
                      ||
                      >> OU=CORP_ECM---> n number of group
                      >> OU=CORP_hodata--> n number of group
                      >> OU=CORP_citrix--> n number of group
                      >> OU=CORP_driver --> n number of group
                      >> OU=CORP_temp --> n number of group
    Requirement is i want to filter groups from OU=CORP_ECM and OU=CORP_hodata.
    Thanks,
    Jagan.

    I used below option but its not working getting zero groups.
    (&(objectClass=group)(|(ou=CORP_ECM,dc=Domain,dc=com)(ou=CORP_hodata,dc=c001639domain,dc=local)))

  • Insert more than 4000 characters using sql plus

    I have a SQL script that creates a database. The problem is that some of the fields are longer than 4000 characters in the INSERT statement and Oracle doesn't seem to like it.
    The field is a clob and works fine in the application (i.e. I can insert more than 4000 characters using the app) - how do I achieve this in a SQL script?
    Any help is much appreciated.
    Cheers,
    Steve

    Hi,
    This pl/sql block works absolutely fine in SQL*Plus inserting > 4000 characters into clob column:
    declare
    l_str varchar2(8000);
    l_str1 varchar2(2400) := 'first part of the verly long string...';
    l_str2 varchar2(2400) := 'second part of the verly long string...';
    begin
    l_str := l_str1 || l_str2;
    insert into tmpl values (l_str);
    end;
    So, you'll have to replace inserts with pl/sql blocks in your script.
    Tested in Oracle 8.1.7.0.0
    Regards,
    Andrew Velitchko
    BrainBench MVP for Developer/2000
    http://www.brainbench.com

  • Highliting more than one word using JTextArea

    I want to highlight more than one word using JTextArea. For example.
    My car color is red.
    My friend's car color is black.
    I want to highlight "red" in first sentence and friend in second sentence using JTextArea (both the sentences are in JTextArea). Can any one help me how to write program for this please.
    Thanks in advance
    regards
    V.Umashanker

    Highlighter h = textArea.getHighlighter();
    Highlighter.HighlightPainter p =
        new DefaultHighlighter.DefaultHighlightPainter(color);
    Object h1 = h.addHighlight(start1, end1, p);
    Object h2 = h.addHighlight(start2, end2, p);...and to remove them:h.removeHighlight(h1);
    h.removeHighlight(h2);This is assuming that you want both words highlighted in the same color (but a different color than the selection). If you want different colors, you'll have to create a separate painter for each color.

  • Can i backup more than one iphone using itunes on pc

    can i backup more than one iphone using itunes on pc

    Yes. It ought not to matter, but make sure you give each device a unique name.
    tt2

  • How do u save datas more than one table using net beans ide using JSF

    Hi,
    I am new to JSF.
    I save / delete / update / New master table using POJO (Plain Old Java Objects), database - oracle and Toplink Persistence Unit.
    How do u save data more than one table using net beans ide using JSF (I am using POJO) ?
    and also Tell me the reference book for JSF.
    Thanks in advance.
    regards,
    N.P.Siva

    SivaNellai wrote:
    I am new to JSF.
    So, I am using net beans IDE 6.1 from sun microsystem. It is a free software.No, you don't drag'n'drop if you're new to JSF. Switch to source code mode. Write code manually, with the help of IDE for the speed up.
    So, please guide me the reference books, articles. I need the basic understanding of JSF, net beans IDE.[JSF: The Complete Reference|http://www.amazon.com/JavaServer-Faces-Complete-Reference/dp/0072262400] is a good book. The [JSF specification document|http://jcp.org/aboutJava/communityprocess/final/jsr252/index.html] is also a good reading to understand what JSF is and how it works. There are also javadocs and tlddocs of Sun JSF Mojarra.

  • My Calendar won't synch back more than 1 year using IOS8 and Outlook365

    My Calendar will not synch back more than 1 year using IOS8 and Outlook365 even though it is set to synch all events, THis is new with IOS8

    Think about it....meetings you had with the same person/business....trips you took......days in a country for tax/regulatory reasons....dates of important past meetings or events...date someone died....date someone was born.....last time you had a medical exam ... date you started a medicine......date you made a deposit.....I use Calendar as my diary...it's easy and doesn't involve writing a lot and has an excellent search

  • More than 1 VPN using single interface

    I have to implement a VPN with four routers every router has different configurations but the Primary router has only one interface connected to internet. When ever I try to implement more than one VPN on the same interface it gives me an error that u have a VPN running on this interface and it can be effected ,ignoring this error will cost me VPN down from previous site.

    You need to use the same crypto map, with different priority values (10 for first site-to-site, 20 for the second), as only one crypto map can be applied on a given interface.
    Please rate if this helped.
    Regards,
    Daniel

  • How can i choose more than one transition using idvd. please help..

    Hi my name is Luis and I took pictures and wanted to make a slideshow but when i want to choose more than one transition it wont let me. It will only let me choose just one. I would like it so the photo transition was random not just one. Please Help me if someone knows.. Thank You Very Much

    Syncing and backing up in iTunes can be accomplished with multiple devices. They identify the devices based on the phone number, phone name, etc. The only way you would have an issue is if you were using different calendar contacts on the computer. http://support.apple.com/kb/ht1495

  • Can more than one ipod use an itunes library

    Sorry for the newbe qestion but I need some advice for my daughters ipod. I have two libraries on two different computers. how do i set the itunes to manual sync. Can I also sync different ipods, we have several.
    thx

    *I have two libraries on two different computers. how do i set the itunes to manual sync*
    You don't set iTunes to manual, you set the iPod. If you want to connect and use an iPod on more than one computer or with more than one library you need to change the update preference in the iPod Summary tab to "Manually manage music and videos" and click Apply. The content of iTunes and the iPod are not syncronised in this mode so the two can be different. You can directly access the content of the iPod and play it through iTunes and you can drag and drop whatever you want to the iPod from either library:
    Using iPod with Multiple computers
    Managing content manually on iPod
    Syncing Music to iPod
    Something else to be aware of when using an iPod in manual mode is that the "Do Not Disconnect" message will remain on the display until you physically eject the device: Safely Disconnect IPod
    *Can I also sync different ipods, we have several*
    There are a few different ways to use multiple iPods with one computer. However if the iPods are also being used with multiple computers then you'll be using the manual method regardless and not any form of auto-sync. Have a look at this help page for all the suggestions: How to use multiple iPods with one computer

Maybe you are looking for

  • Financial statment version

    Hello expers, I have a small doubt, could anybody clarify me please I have created newly financial statement version and assigned all bal sheet and p & l accounts under the nodes. ex.....             Assets(100000)>Fixed assets>GL accounts range     

  • Reg spool request generation autamatically from iw32

    Hi We are having the below problem. A service order is created with reference to notification... So whenever any components are added in iw32,immediately a spool is generated with the following message. Data statistics Number of Records passed 1 Typ

  • Dynamic sql in dynamic page

    I have problem of retrieving data from dynamic sql query. I have select 'select * from some_table' from dual and I have to execute in dynamic page or report inner statement. htp.p not help I will appreciate any help from anybody.

  • Need to average real time data

    I have a sensor that sends 1000 samples per second, The signal is very noisey. I would like a Vi that can read these samples from DAQ6009 and average them out (probably take 10 samples then average, then take next 10 and average and so on). I need to

  • Validation in t-code FBCJ  (Urgent Requirment)

    Hi All,   I need to validate the field 'Amount' in the table control in tab strip Cash Payments. I have to check that the amount entered in the field doesn't not cross the required limit. This pretty urgent requirement. Thanks in Advance. Regards, Ka