Links text includes Ctrl + Click, why? And how to use these links?

Links in my e-mails (Yahoo and Windstream) somehow get CTRL + Click added to them. The links then will not function - the normal click on a link does nothing. Also pressing Ctrl and clicking will not cause the link to function. Since this has affected both my Yahoo and my Windstream e-mails, I think it may be coming from the browser = Firefox. What info can I provide to help resolve this? Please reply...

Select text or image.  Go to Link field on the Properties panel.  If you don't see Properties, hit Ctrl+F3.  
Nancy O.

Similar Messages

  • Why and how we use Logical Database?

    Can anybody explain with example why and how we use logical database?
    Regards,
    Rajan

    Hello,
    SAP comes loaded with all the extras. Among the extras that are most helpful to IT managers are all the access routines needed to pull any business object that managers can think of out of SAP databases. However, SAP has not thought of everything where your particular applications are concerned. SAP organizes its standard database tables to service business units based on conventional business applications. Itu2019s likely your business requires something new, perhaps even something exotic. In that case, you will need to create a new database, using information from different places. Basically, you need a logical database. You need to create a virtual business data object repository consisting of a new kind of record or table that suits your purposes. In addition, the repository should be composed of information that is actually stored in a number of different locations, none of them necessarily logically associated with one another. Letu2019s take a closer look at creating logical databases.
    A case for a logical database
    Suppose my company manufactures widgets of the most obscure variety, and they are components of other widgets. I sell my widgets as raw material for the more sophisticated widgets built by others, but in some cases I actually partner with other manufacturers in creating yet another class of widget. Now, in my world, I consequently have customers who are also partners. I sell to them and I partner with them in manufacturing and distribution. Also, I need an application that uses both of these dual-use relationships.
    Essentially, I have a customer database and a partner database. Neither contains records that are structured to contain the identifying particulars of the other. Thus, I need a hybrid database that gives me tables detailing these hybrid relationships. What can I do? I can go the long way around and write a new database, pulling information from both and creating new objects with a customized program that I write by hand. However, this process is cumbersome and contains maintenance issues. On the other hand, I can use SAPu2019s logical database facility, create my logical database in a couple of minutes, and have no maintenance issues at all.
    Logical database structures
    There are three defining entities in an SAP logical database. You must be clear on all three in order to create and use one.
    u2022     Table structure: Your logical database includes data from specified tables in SAP. There is a hierarchy among these tables defined by their foreign keys (all known to SAP), and you are going to define a customized relationship between select tables. This structure is unique and must be defined and saved.
    u2022     Data selection: You may not want or need every item in the referenced tables that contributes to your customized database. There is a selection screen that permits you to pick and choose.
    u2022     Database access programming: Once youu2019ve defined your logical database, SAP will generate the access subroutines needed to pull the data in the way you want it pulled.
    Creating your own logical database
    ABAP/4 (Advanced Business Application Programming language, version 4) is the language created by SAP for implementation and customization of its R/3 system. ABAP/4 comes loaded with many predefined logical databases that can construct and table just about any conventional business objects you might need in any canned SAP application. However, you can also create your own logical databases to construct any custom objects you care to define, as your application requires in ABAP/4. Hereu2019s a step-by-step guide:
    1.     Call up transaction SLDB (or transaction SE36). The path you want is Tools | ABAP Workbench | Development | Programming Environment | Logical Databases. This screen is called Logical Database Builder.
    2.     Enter an appropriate name in the logical database name field. You have three options on this screen: Create, Display, and Change. Choose Create.
    3.     Youu2019ll be prompted for a short text description of your new logical database. Enter one. Youu2019ll then be prompted to specify a development class.
    4.     Now comes the fun part! You must specify a root node, or a parent table, as the basis of your logical database structure. You can now place subsequent tables under the root table as needed to assemble the data object you want. You can access this tree from this point forward, to add additional tables, by selecting that root node and following the path Edit | Node | Create. Once youu2019ve saved the structure you define in this step, the system will generate the programming necessary to access your logical database. The best part is you donu2019t have to write a single line of code.
    Regards
    Arindam

  • Why and how to use events in abap objects

    Dear all,
      Please explain me why and how to use events in abap objects with real time example
    regards
    pankaj giri

    Hi Pankaj,
    I will try to explain why to use events... How to use is a different topic.. which others have already answered...
    This is same from your prev. post...
    Events :
    Technically speaking :
    " Events are notifications an object receives from, or transmits to, other objects or applications. Events allow objects to perform actions whenever a specific occurrence takes place. Microsoft Windows is an event-driven operating system, events can come from other objects, applications, or user input such as mouse clicks or key presses. "
    Lets say you have an ALV - An editable one ...
    Lats say - Once you press some button  you want some kind of validation to be done.
    How to do this ?
    Raise an Event - Which is handled by a method and write the validation code.
    Now you might argue, that I can do it in this way : Capture the function code - and call the validate method.
    Yes, in this case it can be done.. But lets say .. you change a field in the ALV and you want the validation to be done as soon as he is done with typing.
    Where is the function code here ? No function code... But there is an event here - The data changed event.
    So you can raise a data changed event that can be handled and will do the validation.
    It is not user friendly that you ask the user to press a button (to get the function code) for validation each time he enters a data.
    The events can be raised by a system, or by a program also. So in this case the data changed event is raised by a system that you can handle.
    Also, Lets say on a particular action you want some code to trigger. (You can take the same example of validation code). In this case the code to trigger is in a separate class. The object of which is not available here at this moment. (This case happens very frequently).
    Advantage with events : Event handlers can be in a separate class also.
    e.g : In the middle of some business logic .. you encounter a error. You want to send this information to the UI (to user - in form of a pop up) and then continue with some processing.
    In many cases - A direct method call to trigger the pop up is not done. Because (in ideal cases) the engine must not interact with UI directly - Because the UI could be some other application - like a windows UI but the error comes from some SAP program.
    So - A event is raised from the engine that is handled in the UI and a pop up is triggered.
    Here -- I would have different classes (lets say for different Operating Systems). And all these classes must register to the event ERROR raised in application.
    And these different classes for different Operation systems will have different code to raise a pop-up.
    Now you can imagine : If you coded a pop-up for Windows (in your application logic) .. it will not work for Mac or Linux. But of you raise a event.. that is handled separately by a different UI classes for Win, Linux or Mac  they will catch this event and process accordingly.
    May be I complicated this explanation .... but I couldn't think of a simpler and concrete example.
    Cheers.
    Varun.

  • Why and how to use "inner class"

    When i am learning advanced java language features,
    i could not understand why and when to use the "inner class",
    who can give me some examples?
    Thanks!

    You would use an inner class when an object needs visibility of the outer class. This is akin to a C++ friend.
    An example of this is an iterator. An iterator over some collection is typically implemented as an inner class of the collection class. The API user asks for an Iterator (from the Collection) and gets one - in fact they receive an instance of an inner class, but doesn't care. The iterator needs to be inner, as the iterator needs to see the internal data structures of the outer (collection) class.
    This could also be done with an anonymous class, as mentioned by spenhoet above. However, in the case of a collection, the role of the iterator is clear - thus it deserves its own class. And often there is more than one place an iterator can be returned (e.g. see java.util.List, which has several methods that return Iterators/ListIterators), thus it must be put in its own class to allow reuse of the code by outer class.

  • Create Navigation path in IDT4.0 and how to use these navigation paths in Webi report

    Hi All, I want to know how to create navigation path in universe? I am using IDT BO4.0 SP4 and relational connection and want to create navigation path. I would like to know how to use this navigation path in Webi report? If I create a webi report where can I see my navigation paths and how to use it. If you can give any document or link which expalins this whole process, that would be great. Thanks,

    HI REMI ,
    1. ANSWER TO YOUR 1st QUESTION i.e. HOW TO CREATE A NAVIGATIONAL PATH :
        IN IDT 4.0  , YOU WILL FIND A NAVIGATIONAL PATH IN BOTTOM WHEN YOU WILL OPEN YOUR      BUSINESS LAYER , THERE YOU CAN CLICK CUSTOM NAVIGATION PATH -> THEN CLICK AT      ADD A NAVIGATIOAL PATH BUTTON->THEN GIVE NAME NAVIGATIONAL PATH NAME->THEN ADD THE OBJECTS UNDER YOUR NAVIGATIONAL PATH IN A HIERARCHICAL SEQUENCE .     FOR EX :     COUNTRY->STATE->CITY . AND YOUR CUSTOM NAVIGATIONAL PATH IS     CREATED.
    2. ANSWER TO YOUR SECOND QUESTION WHAT IS THE USE OF NAVIGATIONAL PATH IN WEBI REPORT :
    NAVIGATIONAL PATH HELPS YOU TO PERFORM DRILL DOWN ON YOUR DIMENSION OBJECTS , FOR EX : LET 'S SAY YOU CREATED A NAVIGATIONAL PATH- REGION SALES  : Containing COUNTRY->STATE->SALES. THIS WILL HELP YOU TO DRILL DOWN IN YOUR WEBI REPORT AS SHOWN BELOW :
    COUNTRY                      SALES
    INDIA                             $1000000
    (after clicking INDIA you will get below structure in your Report)
    STATE                           SALES
    DELHI                             $600000
    ANDRA-PRADESH          $200000
    MAHARASHTRA             $200000
    (after clicking MAHARASHTRA you will get below structure in your Report)
    CITY                              SALES
    MUMBAI                         $150000
    NAGPUR                        $  50000  
    ACTUALLY , DRILL - DOWN AS THE NAME SOUND HELP TO DRILL THE DIMENSION TILL ROOT LEVEL & SEE THE MEASURES VALUES ASSOCIATED WITH THOSE VALUES LEVELS.
    1ST LEVEL WILL ALWAYS CONTAIN THE SUM OF THE MEASURE OBJECTS
    CHEERS ,
    KAPIL

  • Everytime i try to add a text box the program crashes.  Why and how do I fix it?

    Since I purchased and installed Adobe Photoshop Elements every time I try to add a text box the program crashes.  Why and how do I fix it?

    TeeKnows wrote:
    Debit cards are accepted in the iTunes store.
    No longer accepted for NEW accounts, however if a debit card were associated with the account BEFORE this change, they can still be used.

  • Battery Pull - When, Why, and How

    An *excellent* article on the when, why, and how of doing battery pulls on your BlackBerry.  It's recommended many times on these boards to fix a multitude of problems because it WORKS!  Here's why:
    http://crackberry.com/blackberry-101-battery-pulls-when-why-and-how
    And if you don't want to click the link, here are a few of the highlights:
    Maybe [your BlackBerry] is not working as fast as before, the internet is stalled, or application memory is gone and nothing has been added. Is it possessed? Do you want to hurl it against the wall?
    Before exchanging the device or panicking that it’s broken, know this. It’s normal; from time to time, your device might become slow and unresponsive. There is a quick and simple way to troubleshoot these issues. In these cases, it’s necessary to reset your BlackBerry device by performing a hard or soft reset. A hard reset is also called a battery pull.
    Essentially, a battery pull restarts the operating system on your BlackBerry device and is just like rebooting your PC when it’s experiencing problems. It is not the same as using the Pwr Off/On button. This only places the phone in standby mode. Not only does a battery pull solve various problems with your device, it also frees up application memory and shuts down applications running in the background that can drain battery and resources.
    A battery pull can help when:
    Hardware Problems
    Device display freezes or jerks
    Torch/Storm devices lag when going from Portrait to Landscape and vice versa
    Keypad/Trackball stops responding or does not work
    SIM card errors
    Software Problems
    Java code or module errors appear on screen (e.g. Uncaught exception)
    Applications are slow, unresponsive, do not load or lag
    Theme issues
    Bluetooth errors – connecting, pairing, etc.
    Installing/Uninstalling Applications & Theme)
    Music streaming apps (Slacker, Pandora) experience continuous buffering
    Social networking apps (Twitter/Facebook) indicate there is no connection available
    Memory leak – available application memory drops
    LED Notification - LED keeps flashing when there are no new e-mails, texts, alarms, etc.
    Maybe you don't WANT to physically remove the battery; I know I don't like removing the protective case repeatedly to take the battery out of the phone.  Thankfully, there are third party "apps" that simulate a battery pull that you can download from BB App World. I use QuickPull by Steelhorn Software (free); it will reboot your device on a schedule you set, or you can do it manually as needed.  A+ Reset ($2.99 after free trial), deReset ($5.99), Restart Me (free) are other options, all available through BB App World.
    HTH someone...your BlackBerry can do a lot for you, but you do need to do some caretaking and maintenance. 

    Hi SuzyQ,
    I appreciate you sharing your tricks of the trade and words of wisdom to our community members.   Your information in this post definitely explains the "why" behind some of our basic troubleshooting steps.  Your feedback in greatly appreciated.
    Thanks for being an active member in our community forums,

  • Any time I open Safari i get a popup for myvdrive? why and how do I stop this? yes my safari preferences are checked that popups should be turned off.

    why and how do I stop this? yes my safari preferences are checked that popups should be turned off. Also it pops up any time that I click anywhere to do anything in safari. Please help.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print PDF's displayed in Safari, you may be able to print by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar may appear under the cursor. Click the printer icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • I cant copy and paste images with firefox but i can with MS explorer why and how is this?

    i cant copy and paste images with firefox but i can with MS explorer why and how is this? i can only copy text but not images is ther a way i can copy images with firefox and how??

    I was having this issue with MS Live email. The old Microsoft shortcuts work. For copy press ctrl+c. For paste press ctrl+v. Here is a webpage that lists all Firefox shortcuts. http://www.mouserunner.com/FF_Shortcuts1Printable.html

  • When I set my screen saver to iLibrary it defaults to national geographic,why and how can I stop it

    when I set my screen saver to iLibrary it defaults to national geographic,why and how can I stop it

    Back up all data. Quit System Preferences if it's running.
    Triple-click anywhere in the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination command-C:
    ~/Library/Preferences/ByHost
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar. Paste into the box that opens (command-V), then press return. A folder named "ByHost" should open. Look inside it for a file with a long name that begins "com.apple.screensaver". There may be several such files. Move them all to the Trash.
    Log out or restart the computer. Test. If the problem is resolved, empty the Trash and recreate your settings in the Screen Saver tab.

  • I delete e-mail regularly and empty the trash bin. Today the whole last 2 months reapperae in the inbox. Why and how to I keep that from happening?

    I delete e-mail regulary, put iit n the trash and empty the trash bin. Today all of the last two months incoming mail reappered in the inbox. Why, and how do I avoid this?

    This is standard guidance, but maybe it will help...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove your Yahoo cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    This will open a dialog where you can remove the individual cookies.
    Then try reloading the page and logging in again. Does it work any better?

  • Why and how is iTunes changing the genre?

    Mac OSX 10.9.4
    iTunes 11.3
    I have many songs in my iTunes account. I have found that if I modify the genre to my liking, it doesn't stay that way. For some reason after a period of time it changes/reverts to another genre. Here is the funny part. If I click on the info button, the genre that I modified it to, is still listed, however when it is grouped...it is grouped into another genre.
    To fix it, I have to go into each genre, find each song incorrectly categorized, hit info, and save (I don't even have to change anything)...and it goes back to where I wanted it.
    Why is this? Since my categorization was saved, why and how does it get re-grouped? I thought that it changed whenever I had an update or closed iTunes, but this grouping changes at any given time.
    It is getting tiresome having to resave everything.
    How can I stop this from happening? If the goal is to allow me to customize the genres, why won't it stick?

    Go to iTunes > Preferences > Store and turn off
    Show iTunes in the Cloud purchases
    Share details about your library with Apple
    On any iOS device go to Settings > Music and turn off
    Show All Music
    Close and reopen iTunes and/or reset the device and you should see your version of the metadata for each track rather than the original store data.
    tt2

  • Tried to transfer all my data to iPhone 5 from iPhone 3GS lost my email and app data?  Do you why and how I can fix this?

    Hi...
    Tried to transfer all my data to iPhone 5 from iPhone 3GS lost ONLY my email and app data?  But weird thing is, its still on my old phone!!!
    Do you know why and how I can fix this? 
    Shelley

    How did you "try" to transfer this data? The only way to restore App data is by restoring from a backup that contains the App data, then syncing the Apps back to the phone. Emails are not included in any iPhone backup, only account settings.

  • SONGS THAT I HAVE PURCHASED APPEAR TWICE ON MY PHONE. DOES ANYBODY KNOW WHY AND HOW TO EDIT THIS PROBLEM?

    Songs that I have purchased on Itunes appear twicw on my Iphone. Does anybody know why and how do I edit or remove one copy of the song?

    I have had two similar events with my Gen4 iTouch. An album was purchased thru iTunes with my iTouch. When I sync'd it with my MAC Mini (OSX Lion) each song that was included in the purchased album appeared twice on the iTouch but only once on the MacMini. Deleting the duplicates on the iTouch did not resolve the issue. With each sync they were reinstalled. The only way I could get around this was to delete the album/songs on the MAC, elect to move them to trash then re-sync the iTouch to remove them. Afterwards I was able to re-download the purchase on the MAC then sync the iTouch. This resolved the issue.
    The second event was different but the result was the same: An album was purchased thru iTunes but this time thru iTunes Store on the MAC mini. When I sync'd the iTouch there were 2 entries for each song purchased but this time there was an entry for the song itself AND an identical entry beneath it that looked similar to the play/pause sampling icon in iTunes when sampling a song prior to purchase. I am not using iCloud and I don not sync wirelessly on the iTouch. Again, all I could do was delete the purchase on the MAC Mini, sync the iTouch to remove them, re-load the purchase from iTunes and re-sync. This also resolved the issue but it makes me a bit nervous since I have a very large library. What is causing this?

Maybe you are looking for