How to clear map directions

How to clear map directions?
Thanks in advance!

Ok, so I cleared bookmarks and recents. Directions still showed. Selected search, then back. No luck.
Then I selected a new destination. The old route then disappeared from the screen, finally.
The new destination pin was blue, the old one red. While I was not able to select the red pin and choose delete, the blue pin allows for deletion.
As to my second question, I am not finding how to turn off the GPS blue pulsing locator?

Similar Messages

  • ? How to clear Recent Directions from Google maps

    Does anyone know? I can't and I have like a hundred. I have disabled websearch so that can't be the cause. I also have uninstalled and reinstalled the app...no difference.

    Are you signed in?  If so, try going to Settings > Map History within Google Maps (assuming you're using version 2, which was released yesterday) and editing there.
    You get to Settings by tapping the three horizontal bars in the lower left corner of the Google Maps display.

  • How to clear Mapping Error Bdocs

    Hi,
    We are getting Mapping error bdcos in SMW01 if there is an error while data is downloading from ECC to CRM. We are fixing the issue by looking at the BDOC error description. We are unable to re-process these error bdocs after fixing the issue as it is not allowing. To fix the issue we are re-processing the corresponding queue in SMQ2 and queues are processing successfully. the problem is these error bdocs are sitting in data base and we want to clear them.
    Can any one please let me know how we can re-process these kind of mapping error bdocs?
    Thanks,
    Rajinikanth

    Hi ,
    Below logic may be useful.
    SELECT bdoc_id
                 bdoc_type
                 bdoc_state
                 snd_date
                 snd_time
                 qname
             INTO TABLE lt_inque
                  FROM smw3_bdoc
                  WHERE bdoc_type IN s_bdoc
                  AND qname IN s_qname
                  AND bdoc_state IN r_err.(r_err = E01,E02.....E09)
    LOOP AT lt_inque INTO ls_inque.
      DATA:lv_bdoc_id TYPE smog_tid.
      CLEAR lv_bdoc_id.
      lv_bdoc_id = ls_inque-bdoc_id.
      CALL METHOD cl_smw_flow=>restart_processing
          EXPORTING
            bdoc_id            = lv_bdoc_id
          EXCEPTIONS
            bdoc_not_found     = 1
            bdoc_locked        = 2
            bdoc_was_processed = 3
            internal_error     = 4
            OTHERS             = 5.   
    ENDLOOP.
    Thank you,
    Gangadhar.S

  • How to clear "Maps" history in iOS 8.1

    1. Open "Maps" app
    2. Tap within address entry area.
    3. Tap "Favorites".
    4. At bottom of screen, tap "Recents".
    5. In upper left corner tap "Clear".
    6. At bottom of screen tap "Clear All Recents".
    7. In upper right corner tap "Done".
    8. All maps should now be cleared.

    Thank you, I've been trying to figure this out for the past hour.

  • How to clear pins on maps

    I can't figure out to do clear pins on the new maps.  Also, how to clear previously looked at locations.  Please help. 

    Pins can be removed by clicking on them then on the little arrow that appears, on the menu that is displayed click on 'remove this pin'

  • How to clear vendor open documents

    How to clear vendor open documents, I had previously tried to clear the documents in PRD with transaction F-44 and I get the following message.
    X. Ex.rate diff.accts are incomplete for account 00015080 currency CAD

    You can clear using the t code F-44 which is manual or by using F.13 which is automatic.
    The error you are getting is with refernce to a transaction between your Local currency and Currency "CAD"
    Maintain a transalation ratio and the exchange rate. Here the system also looks for a exchange loss or gain on such conversion also. Map those accounts and you will be clearing the transaction.
    If you are using automacti clearing you need to decide on the link(Common feild)  between the DR open item and CR open item and these open items after having this as a refernce can be cleared automatcially in F.13.
    Hope you understood.
    Reward points if useful.
    sarma

  • How to clear the text in the Text Editor

    Hi all,
    I created a Text editor and also i am having language field in the screen.
    whenever i change the language auomatically the text has to change when the text exists for that
    language.
    this is working fine, but when the Text exist , the text editor should be blank.
    But it is carrying the Previous editor text itself into it .
    How to clear the text in the Editor.
    Regards,
    Madhavi

    Hello Madhavi
    The simple report ZUS_SDN_TEXTEDIT_CONTROL shows how to switch the texteditor contents when changing the language.
    *& Report  ZUS_SDN_TEXTEDIT_CONTROL
    *& Thread: how to clear the text in the Text Editor
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1145272"></a>
    *& By default the itab GT_OUTTAB contains texts in DE and EN.
    *& To switch the language directly enter into the command window:
    *& LANGU=DE, LANGU=EN or LANGU=FR
    REPORT  zus_sdn_textedit_control.
    TYPE-POOLS: abap.
    TYPES: ty_t_text     TYPE TABLE OF as4text
                         WITH DEFAULT KEY.
    TYPES: BEGIN OF ty_s_outtab.
    TYPES: language TYPE spras.
    TYPES: text     TYPE ty_t_text.
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab    TYPE STANDARD TABLE OF ty_s_outtab
                          WITH DEFAULT KEY.
    DATA: gt_outtab       TYPE ty_t_outtab,
          gs_outtab       TYPE ty_s_outtab.
    DATA: gd_language     TYPE spras.
    DATA: go_docking      TYPE REF TO cl_gui_docking_container,
          go_textedit     TYPE REF TO cl_gui_textedit.
    DATA: gd_okcode       TYPE ui_func,
          gd_repid        TYPE syst-repid.
    START-OF-SELECTION.
      PERFORM fill_texts.
      gd_language = syst-langu.
      PERFORM init_controls.
    * Link the docking container to the target dynpro
      gd_repid  = syst-repid.
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = gd_repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc NE 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM set_text_editor.
    * NOTE: dynpro does not contain any elements
      "       ok-code => GD_OKCODE
      CALL SCREEN '0100'.
    * Flow logic of dynpro (does not contain any dynpro elements):
    *PROCESS BEFORE OUTPUT.
    *  MODULE STATUS_0100.
    *PROCESS AFTER INPUT.
    *  MODULE USER_COMMAND_0100.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.  " contains push button "DETAIL"
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      TRANSLATE gd_okcode TO UPPER CASE.
      CASE gd_okcode.
        WHEN 'BACK'  OR
             'EXIT'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN 'LANGU=DE' OR
             'LANGU=EN' OR
             'LANGU=FR'.
          PERFORM get_text_editor.
          SPLIT gd_okcode AT '=' INTO gd_okcode gd_language.
          PERFORM set_text_editor.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  FILL_TEXTS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM fill_texts .
    * define local data
      DATA: ld_string   TYPE string.
      gs_outtab-language = 'EN'. REFRESH: gs_outtab-text.
      ld_string = 'Good morning'.
      APPEND ld_string TO gs_outtab-text.
      APPEND gs_outtab TO gt_outtab.
      gs_outtab-language = 'DE'. REFRESH: gs_outtab-text.
      ld_string = 'Guten Morgen'.
      APPEND ld_string TO gs_outtab-text.
      APPEND gs_outtab TO gt_outtab.
      gs_outtab-language = 'FR'. REFRESH: gs_outtab-text.
      ld_string = space.
      APPEND ld_string TO gs_outtab-text.
      APPEND gs_outtab TO gt_outtab.
    ENDFORM.                    " FILL_TEXTS
    *&      Form  INIT_CONTROLS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM init_controls .
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
    *      repid                       =
    *      dynnr                       =
    *      side                        = dock_at_left
    *      extension                   = 50
    *      style                       =
    *      lifetime                    = lifetime_default
    *      caption                     =
    *      metric                      = 0
          ratio                       = 90
    *      no_autodef_progid_dynnr     =
    *      name                        =
        EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5
          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 OBJECT go_textedit
        EXPORTING
    *      max_number_chars       =
    *      style                  = 0
    *      wordwrap_mode          = wordwrap_at_windowborder
    *      wordwrap_position      = -1
    *      wordwrap_to_linebreak_mode = false
    *      filedrop_mode          = dropfile_event_off
          parent                 = go_docking
    *      lifetime               =
    *      name                   =
        EXCEPTIONS
          error_cntl_create      = 1
          error_cntl_init        = 2
          error_cntl_link        = 3
          error_dp_create        = 4
          gui_type_not_supported = 5
          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.
    ENDFORM.                    " INIT_CONTROLS
    *&      Form  SET_TEXT_EDITOR
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM set_text_editor .
      BREAK-POINT.
      CLEAR: gs_outtab.
      READ TABLE gt_outtab INTO gs_outtab
           WITH KEY language = gd_language.
      CALL METHOD go_textedit->set_text_as_stream
        EXPORTING
          text            = gs_outtab-text
        EXCEPTIONS
          error_dp        = 1
          error_dp_create = 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.
    ENDFORM.                    " SET_TEXT_EDITOR
    *&      Form  GET_TEXT_EDITOR
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM get_text_editor .
      CLEAR: gs_outtab.
      CALL METHOD go_textedit->get_text_as_stream
        EXPORTING
          only_when_modified     = cl_gui_textedit=>true
        IMPORTING
          text                   = gs_outtab-text
    *      is_modified            =
        EXCEPTIONS
          error_dp               = 1
          error_cntl_call_method = 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.
      MODIFY gt_outtab FROM gs_outtab
        TRANSPORTING text
        WHERE ( language = gd_language ).
    ENDFORM.                    " GET_TEXT_EDITOR
    Regards
      Uwe

  • How to Clear plant level Stock in SAP-EHS_Waste management

    Hi Experts,
    I implemented business practices 855 and 938 in a sandbox environment and a part of the waste processing is not clear for me.
    How do clear the waste from my plant in MM? The best practice asks to create a purchase order, to validate it and to invoice it. The waste is still in my plant!
    Thanks in advance.
    Regards
    Manglesh

    Hi Manglesh
    In waste management there are several options:
    - You can control inventory management or not; if you do it, you need to post and clear the stock of your waste.
    - You can control batch management or not; if you do it, you need to post and clear the stock of your waste using batches.
    - You can control warehause management or not; if you do it, you need to post and clear the stock, and to put in and to take out the waste in a location in the warehouse.
    In waste management there isn't a direct link between the purchase orden and the inventory management, the stock moves aren't visible in the PO history. If you are usisng inventory management, first you post the waste, second you create a purchase order (someone will manage your waste, and you must pay for it); when a transporter take your waste, then you clear your waste (there is a function that you need to customizing to do it).
    Regards
    JCD

  • Why can't Siri locate contact addresses for map directions?

    Having an issue with iphone 4s using Siri for locating addresses saved within contacts for map directions.
    The problem is only evident on about half of the contacts so far..  the message i get is 'I couldn't find an address for .." even though the contact I asked for clearly has their address saved.  I've doubled checked I've used the right address fields and seem fine.
    I'm unable to distinguine the problem between the contacts where Siri works as it should and locate the address, and the ones it can't - including my home address. 
    Very frustating when I want directions in the car for driving and using hands free.
    Any ideas guys?!

    It seems to be a bug in the software. Other people have said it may have so something to do with siri not understanding UK postcodes properly.  I don't really know but I seem to have found a solution, although cumbersome.
    -Load up your contact from phonebook app
    -Tap the address (apple maps should go straight to it)
    -Double tap home and switch back to phonebook app
    -Delete the address
    -Diuble tap back into maps (the pin point should still be there)
    -Press the little blue arrow on the pin
    -Add to contacts > Existing contact
    -Select contact
    (Now this is the important bit)
    -Tap edit then tap the right hand column off the address section in order to set it as home, work, etc.
    -Done
    Phew!!
    It's long winded I know, but now I can just tell siri to get directions to so and so's home safely while driving without fiddling around tapping buttons.
    Sort it out Apple. It should 'Just Work' outside of the US too you know.

  • How to clear IPAD2 's add-on APP Cookes?

    How to clear IPAD2 's add-on APP Cookes, Ex: QQ HD,Map...not for Safira.

    I'm just taking a guess but if you are trying to clear information from a third party app I would think that you would have to do that from any setting that the app may provide.
    For instance in the pre installed Maps app you can clear bookmarks or recent searches by tapping on the Open Book icon (bookmarks) then select Bookmarks or Recents - tap Edit and then tap the red minus sign to remove the selection.
    If the app doesn't have a setting to clear the information, cache or cookies, you can't do it with the iPad iOS settings.

  • How to clear app cache on itouch (3.1.3 iOS)

    can someone help with directions on how to clear app cache in 3.1.3?  btw...i don't want to reset since it will result in lost apps that no longer offer versions for 3.1.3

    All you can do is reset the iPod. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    For the old-app problem. Delete any newer apps from your iTunes library. Then transfer iTunes purchases to the computer by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    Just make sure that you do not update those apps in your iTunes library.

  • How I can map "Sales Target Planning" in SAP?

    Hi All,
    I am working in Sales & Marketing in a Logistic Service Provider Company.
    Our Product is Container (in which RMG & other commodities are transported
    via ship from/to all over the world). Our Sales Target is planned in yearly
    basis on Quantity of Containers, Number of Buyers, Different Corridors,
    Different Commodities etc etc. How we can map our Sales Target Planning in SAP?
    Regards,
    Syed Waseem Reza

    Sir,
    Can you please let us know the high level process flow you have already mapped? I am facing the same problem.... I am here delivering my existing process flow.
    We didnu2019t go for any other special module of SAP
    The General modules of SAP including
    u2022     SD(Sales & Distribution),
    u2022     MM(Material Management),
    u2022     WM(Warehouse Management),
    u2022     LE (Logistic Execution),
    u2022     FI(Finance), CO(Controlling),
    u2022     FA(Fixed Asset)
    Basic Process Mapping:
    u2022     SO(Sales Order) may create directly or against Qut(Quotation)
    u2022     All SO line item will create the PR (Purchase Requisition)
    u2022     Warehouse does the GR (Goods Receive) against PR indirectly SO.
    u2022     Empty and Laden Container enters to Warehouse as a material received.
    u2022     TO (Transfer Order) of Goods to the Bin Location
    u2022     Creates the Outbound Delivery against GR.
    u2022     Picking of Goods from WH Bin to Deliver Place
    u2022     Packing of Goods to the Container as per Shipment.
    u2022     Outgoing Invoice for collection against Outbound Delivery
    u2022     Incoming Invoice for payment against Shipment Cost.
    Management wants to give one sales target such as...
    Year -SO-----Material Group---Material Group
    --(20' Container)-----(40' Container)
    2009-----10,0004,000--
    2,000
    and in the end of the year, Management wants to see the see the following report.
    Year      Targeted      Achieved     Target(20') Achieved(20')  Target(40')  Achieved(40')
    --SOSO-----
    2009-----10,0008,0004,0002,0002,000--
    1,500
    For this I have to store my sales target in any of SAP document, because i have already all the Achieved information in my existing system, because material groups are keeping in the Shipment/Packing phase of the process, So i can easily make the report, but i cant get the Target as I don't have any place to store the same.
    Can anybody help me to proceed?
    Rgds
    Farhad
    Edited by: Farhad Islam on Jan 31, 2009 6:49 AM
    Edited by: Farhad Islam on Jan 31, 2009 6:49 AM

  • Ios6 maps: Directions not available for India locations

    Just updated to ios6 from ios 5.1 on iphone4
    Built in maps app is not able to find any route/directions for Indian locations.
    Tried a lot of permuataion, but every time it erros mentioning" Directions not availabel"
    Although for US locations it is correctly showing directions
    Let me know how to fix this

    I should have never done the Grave mistake of downloading Disastrous iOS6. The maps are not working at all. Also, they have moved YouTube Icon from new version.I am using Iphone 4S.
    If this was not enough, take a look at below link:-
    http://www.apple.com/ios/feature-availability/#maps-directions
    Do anyone of you know replacement for Apple Maps?
    Thanks
    Ankit

  • How do you say "Directions" to Siri?

    How do you say "directions" to Siri?  No matter how I say it, Siri will say "I'm sorry Peter, but I don't know what you mean by "direct actions"". Or, Siri will say "I'm sorry Peter but I don't know what you mean by "diet actions"".
    Here is another one.  How do you say "airport"?  Siri thinks that I am saying Apple.  So, if I ask "give me directions to the airport" it will give me directions to Apple in Cupertino.
    I know that Siri is STILL in beta, but come on!  I cannot even go to an Apple store with this, because I am using T-Mobile (I've had an unlocked iPhone 5 since the day it was released, last November) and Apple stores are surrounded by aluminium and they do not yet have the T-Mobile repeater!

    Hey pforkes,
    We have a troubleshooting article for Siri that you can find here:
    iOS: Troubleshooting Siri
    http://support.apple.com/kb/TS4079
    I'd take a look at the section titled "Ensure that Siri can clearly hear you," which might help you out. We also have a more general About Siri article that provides some tips for using it.
    Hope that helps,
    David

  • How to clear a QueryCriteriaStore ?

    Hi
    I am using a BC4J View Object through a dacf.RowsetInfo in a Java application.
    I populate a reusable FindPanel with its results.
    When the user enters the FindPanel the second time, I want to present her a clear dialogue, that is, not showing the query conditions from last invoke. I tried with FindPanel.resetFields(), obviously it should be called only after the dialog is displayed (how to call it a this point with a modal dialogue?).
    Then I tried to "clear" the RowSet with setQueryCondition(null), but a trace session showed, that there are no query conditions cached at all.
    Instead, the criterias are stored in a QueryCriteriaStore, created within the info bus as "RowSet_QueryCriteria" IB component. My question is: how to clear (or dispose) such a QueryCriteriaStore ?
    I feel that it is not good practice to mix up the use of DACs and direct use of BC4J, for the following two reasons:
    Assumptions to be made about the App Model beyond the settings in the constructor and jbinit()
    Outdated states of the DACs if underlying infos are changed
    Is this feeling right or wrong ?
    TIA
    Pascal Glauser

    Anoo,
    check the APEX_UTIL Package, there you'll find functions like clear_page_cache, clear_user_cache, clear_app_cache.
    This could be what you are looking for.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    Work: http://www.click-click.at

Maybe you are looking for

  • How can I implement a datagrid like this

    I would like to implement a datagid as the attached picture. This datagrid will have some money columns and I would like to summary of money at the last row. Just only the last row. Thank you very much

  • IChat AV won't let me have a video/audio conversation

    When I try to have a video/audio conversation, iChat says the communication couldn't be established for I have not responded to the invitation (even when I launch it). Last year I used iChat and iSight while connected on an air port station; today, i

  • Capable of web based survey?

    I'm hoping to put together a web based questionnaire-survey for the membership of an organization. Buttons for yes/no, ranges of "good to bad" w/ choices of 4 or 5 buttons). Is this do-able in iWeb? Are other applications (DreamerWeaver? Filemaker?)

  • BPMON Alert Inbox - role based custom query

    Hello experts, I have a requirement from my customer in BPMON alert inbox to build a custom queries and distribute them to end-users based on security access or other kind of assignment. Say for example, we have a monitoring object "purchase requisit

  • Is it possible to turn off those annoying balloons?

    The pop up balloons are always in the way of what I'm trying to read. Can they be turned off?