Mapping superscript 2 and 3 to a key?

How do I go about if I need to have quick access to superscript ² and ³ (the actual character for these, represented by ² and ³ in HTML entities)?
Ideally, I would like to map these 2 characters to Alt+Numpad-2 and Alt+Numpad-3 respectively (for easy to remember and access reasons). If it is possible to replace for example ◊ (Shift-Alt-A) and ∑ (Shift-Alt-S), that would work too, of course - I'm not that picky.
Why haven't Apple added these two characters, I wonder. With one of my clients, I use ³ on every single thing they want printed, more or less. And I'm using ² frequently enough to make this an issue. As it stands today, I keep the character palette open whenever I know I need to use these characters. In web design, I switch back to HTML mode and enter ² and ³ respectively, so I have a workaround - even if it's a clumsy one.
Is it possible to edit a character/keyboard layout or something to make this possible? Any 3rd party software that can be used to accomplish this? I'm using the Swedish keyboard layout, if that makes any difference.
*Please note: I'm NOT looking for a way to use the superscript button in Word, Pages, InDesign or whatever. I need to be able to enter these actual characters, just so there is no mistake here.*

Further info on this problem:
I downloaded a small app called Ukulele, and managed to create a .keylayout file that I placed in ~/user/Library/Keyboard Layouts, and I could select it in the Preferences, and it works as far as getting Alt+Numpad-2 and +Numpad-3 to work, but I lost for example the ⌘-W command to close a window. Switching back to the unmodified keyboard layout, and it works again, so there's nothing else messing it up as far as I can tell...
Does anyone have any experience with this? As far as I could tell, Apple removed the .keylayout files from Keyboard Layouts in Leopard, and I have no idea where they are stored now or if they're even accessible in an easy way.

Similar Messages

  • Globally map Ctrl   B and ctrl   F to left and right arrow keys, respectively

    Does anyone know how I would *globally* map Ctrl + B and ctrl + F to left and right arrow keys, respectively? This keystroke works for some applications, but not all. I'd like it to always work.

    So, it is now June and still no fix.  This is incredibly annoying when you are giving a professional presentation in front of an audience and the speaker wants to go back a slide.  It's enough to change presentation software.
    In truth, the Presentation Module in LR5 is vastly inferior to other dedicated software.  For instance, you can't add a text slide as a divider between "chapters," as far as I can figure out, you can't merge slideshows or go from one to another without exposing your entire screen, the order of slides is over-ridden by some predetermined metadata rather than being able to choose two catalogs and put them into one slideshow, deciding yourself which catalog should play first.
    Are any of these changes in the works?
    Any eta on the right/left arrow fix?
    This could be SO great.  I hope it is moving in that direction.

  • Map new Ethnic and Race categories to Old - IT 77

    Hi experts,
    We currently have old ethnic origins and race still displayed and assigned in IT 77. we need to map new ones and update IT 77.
    I understand that the program RPURACU0 maps new ethnic and race categories to old. Once i execute this program, do i need to perform any other additional configuration steps before i run EEO and AAP reports? (I read the forum and it said something about T588M update and Screen 2010... can someone explain what to do here)
    I am not an expert with EEO and AAP reports, but need to validate and execute the reports.
    Please help.
    Points will be awarded generously.
    Thanks
    Ana

    Hi Anna,
    Yes. There's no need to implement the SAP note as you system is apparently up to date already.
    The Alt. Screen and Next Screen for Module Pool MP007700_CE variable key "10" should be both 2010.
    After you've done this configuration, go to PA20 and check a US' employee's IT77.
    You should have the additional field Ethnicity (NEW). (which should be blank) below the field Ethnic Origin.
    You will also have a new way to maintain race data.
    Then you should run the program RPURACU0.
    The mapping should be as follows:
    Old Ethnic Origin: White/Not Hispanic origin
    Ethnicity: Not Hispanic/Latino
    Race: White
    Old Ethnic Origin: Black/Not Hispanic origin
    Ethnicity: Not Hispanic/Latino
    Race: Black
    Old Ethnic Origin: Hispanic
    Ethnicity: Hispanic/Latino
    Race:
    Old Ethnic Origin: Asian or Pacific Islander
    Ethnicity: Not Hispanic/Latino
    Race: ?
    Old Ethnic Origin: Amer.Ind./Alaskan Native
    Ethnicity: Not Hispanic/Latino
    Race: Amer.Ind./Alaskan Native
    Old Ethnic Origin: Native Hawaiian
    Ethnicity: Not Hispanic/Latino
    Race: Native Hawaiian/Other Pacific Islander
    Old Ethnic Origin: Hispanic White Only
    Ethnicity: Hispanic/Latino
    Race: White
    Old Ethnic Origin: Hispanic All Other
    Ethnicity: Hispanic/Latino
    Race:
    All the old Ethnic Origins can be mapped to the new Race and Ethnic categories except for Asian or Pacific Islander.
    You have to do a separate run for employees that have Asian and Pacific Islander ethnic origin.
    Can you give me the program name of the AAP report you are using?
    We used Ad Hoc query to report the new Ethnicity codes, so I'm not sure if it will be reflected in the standard (?) program you are using.
    Regards,
    Olekan

  • Map.get(K) and Map.get(Object)

    When I first saw the new 2.0 generics compiler, I was very pleased to see that the signature of Map.get() has changed (since 1.3) from:
        interface Map<K,V> { V get(Object obj); }to:
        interface Map<K,V> { V get(K key); }because it means buggy code like this:
        Map<File,Integer> fileSizeMap = new HashMap<File,Integer>();
        Integer sizeOfFile = fileSizeMap.get("/tmp/foo");
        if (sizeOfFile == null) {
            System.err.println("File not found in map");
        }(where I have mistakenly called Map.get() with a String rather than a File) will now get a compiler error rather than a fault raised several months after the application has gone live.
    So, as I say, I am very pleased with the new signature for Map.get(), although I would also like to see the following methods changed:
        boolean containsKey(Object)   -> boolean containsKey(K)
        boolean containsValue(Object) -> boolean containsValue(V)
        V remove(Object object)       -> V remove(K)However, I just read on http://cag.lcs.mit.edu/~cananian/Projects/GJ/Bugs/v20/map.html that Neal Gafter says that putting Map.get(K) into 2.0 was a mistake, and that it will be put back to Map.get(Object) in the next version.
    I do hope I haven't missed something obvious, but keeping these methods with Object parameters seems to me to be a backwards step from the excellent type safety benefits provided by Generics.
    Does anyone else agree with me that having get(K) would be beneficial in allowing the compiler to identify bugs that would otherwise only be discovered much later?
    Or, could someone explain to me why having get(Object) is preferable, and whether this reason is more important than the type safety issue I identified in my example code above?
    Many thanks in advance
    Geoff

    Gafter wrote:
    The reason the argument type is Object and not K is that existing code depends on the fact
    that passing the "wrong" key type is allowed, causes no error, and simply results in the
    key not being found in the map.But "existing code" does not use Generics, and therefore as with all other non-generic code, the authors of that code can choose to either leave it as it is (in which case their Maps will become Map<Object,Object> and Map.get() will then take an Object), or to upgrade it to Generics, and take advantage of the helpful compiler messages that may highlight some design flaws in the original code.
    In Jakarta Commons Collections (this is "existing code"), there's a class MultiHashMap which extends HashMap. When you call MultiHashMap.put(someKey, someValue) it appends someValue to an ArrayList that gets stored as the value in the HashMap. However when you call MultiHashMap.get(someKey), it returns a Collection of values, rather than just a single value.
    If they try to upgrade MultiHashMap to Generics, they are going to come up with a problem: they would be needing something like this:
        public class MultiHashMap<K,V> extends HashMap<K,V> {
            public V put(K key, V value) { ... }
            public Collection<V> get(K key) { ... }
        }which of course is not allowed, since Map<K,V>.get() returns V, not Collection<V>.
    Now, I don't hear anyone saying: This "existing code" relies on Map.get() returning an Object, so in Generics we're going to make Map.get() return Object rather than V.
    No, instead we (correctly) say: That MultiHashMap code was wrong to abuse the flexibility provided by the use of Object as the return value of Map.get(), and if it wishes to use Generics, it will either need to become MultiHashMap<K,Object>, or if it insists on being MultiHashMap<K,V>, it will not be allowed to extend HashMap.
    I really don't see the problem in using Generics (and a typesafe Java Collections API) as a means of highlighting problems in existing code. As I said before, existing code will continue to work as before, because List will become List<Object> and Map will become Map<Object,Object>.
    This is no worse than "accidentally" trying to get() with a key of the right
    type but the wrong value. Since none of these methods place the key into the
    map, it is entirely typesafe to use Object as the method's parameter.Suppose for a moment that when String.endsWith() was first written, it took an Object parameter instead of a String. If I were to say to you: This method needs to change its parameter from Object to String, would you tell me that that there's no need to make the change, because a String can only ever end in a String, and so it is entirely typesafe to use Object as the method's parameter?
    Geoff

  • ITunes 10.5 and Microsoft keyboard media keys with IntelliType Installed

    Hi. I just updated to iTunes 10.5 and the media keys (play/pause, back, and forward buttons -- the latter two of which have been mapped to previous and next track respectively) on my Microsoft Ergonomic 4000 keyboard no longer work when iTunes in minimized. It works fine if iTunes is the active window. I tried installing the latest version of IntelliType (v8.2) and the installation notified me that I already have the latest version. I had no problems with the older version of iTunes (10.4).
    Is anyone else having this problem? Any solutions? Thanks in advance!

    I managed a different FIX. This is just for Microsoft Multimedia keyboard (I have Microsoft 8000)
    I uninstalled Microsoft Intellitype 8.1 that I had and then installed the newer 8.2 Version.
    Before I did that I Downgraded to Itunes 10.3 64x like someone else said, but it did not help.
    If this fix don't work with Itunes 10.5 then Downgrade like I did, It easier..No copying of files needed.
    After you uninstall Itunes 10.5 and Install 10.3, it give you an error for your library.
    So you press "SHIFT" and then open ITUNES.
    then you go to "My Music\iTunes" folder inside your genereal music folder, it should be there. (WIN 7)
    then to "Previous iTunes Libraries" folder and you should have a backup or and some kind of old "itunes Library folder" files...you choose one of them and Itunes opens fine with all playlist and everything.
    Now everything workd find.
    Good luck!
    P.S
    I after all this this does not work, might be because I installed Itune 10.3 before the new Intellitype 8.2.
    So try Uninstalling Intellitype 8.2 again.
    Then reinstall it...maybe it does things when Installing...I don't know.

  • Site map of Communities and Categories

    Site map of Communities and Categories
    As part of the migration of Apple Discussions to Apple Support Communities many previous forums have become categories of the new communities.
    This list may help you locate the content of any specific category you wish to follow or focus on so that you can create a shortcut for future use. You can also copy and paste any section of this list into your support responses.
    Jump to: iPad | iPhone | iPod | iTunes | Desktop Computers | Notebooks |
    Mac OS & System Software | iOS app store | iLife | iWork | Professional Applications | MobileMe | AppleTV | Periperals | Servers and Enterprise Software | Applications | Wireless |
    Windows Software | Older Software | Older Hardware | Using Apple Support Communities |
    User Tip Contributions | Developer Forums
    The following is a list of all communities and categories as of 29th April 2011.
    iPad
    Using iPad
    Accessories
    Airplay
    Airprint
    Applications
    Camera
    FaceTime
    Getting Started
    Location Services
    Mail
    Syncing
    WiFi
    WiFi + 3G
    iWork for iPad
    Keynote
    Numbers
    Pages
    iPad in the Enterprise
    Enterprise Networking
    Using iPad in the Enterprise
    iPhone
    Using iPhone
    Basics
    Camera, Photos and Video
    FaceTime
    Installing and using iPhone Applications
    Integrating iPhone into your Digital Life
    Location Services
    Mail, Contact & Calendar
    Phone and Messaging
    Playing Music and Video
    Voice and Memos
    WiFi, 3G and Bluetooth
    iPhone Hardware
    Classic iPhone
    iPhone 3G
    iPhone 3GS
    iPhone 4 (GSM)
    iPhone (CDMA)
    iPhone in the Enterprise
    Enterprise Networking
    Integrating iPhone into your business
    Mail, Contacts and Calendars in the Enterprise
    iPhone Accessories
    Bluetooth Headset
    iPod
    iPod touch
    Accessories
    Airplay
    Airprint
    Camera
    Connecting to a Mac
    Connecting to Windows
    Contacts and Calendars
    Installing and Using Applications
    Mail
    Music and Video
    WiFi and Bluetooth
    iPod shuffle
    Connecting to a Mac
    Connecting to Windows
    iPod nano
    Connecting to a Mac
    Connecting to Windows
    Nike + iPod Sport Kit
    iPod classic
    Connecting to a Mac
    Connecting to Windows
    Apple Branded iPod accessories
    iPod Hi-Fi
    iPod Radio Remote
    Older iPods
    Connecting to a Mac
    Connecting to Windows
    Connecting to TV
    iTunes
    iTunes for Windows
    Importing & Burning in iTunes
    Installing, Removing and Upgrading
    iTunes Store
    Podcasting and Radio
    iTunes for Mac
    Importing & Burning in iTunes
    Installing, Removing and Upgrading
    iTunes Store
    Podcasting and Radio
    iTunes U
    Producing Podcasts
    Desktop Computers
    iMac (Intel)
    Displays
    DVDs and CDs
    Expanding
    Internet and Networking
    Using your iMac Intel
    Mac mini
    Displays
    Expanding the Mac Mini
    Internet and Networking
    Using the Mac Mini
    Mac Pro
    Displays
    DVDs and CDs
    Expanding
    Internet and Networking
    Using the Mac Pro
    Power Mac
    Displays
    DVDs and CDs
    Expanding
    Internet and Networking
    Using Power Mac
    iMac (PPC)
    Displays
    DVDs and CDs
    Expanding iMac (PPC)
    Internet and Networking
    Using iMac (PPC)
    eMac
    Displays
    DVDs and CDs
    Expanding eMac
    Internet and Networking
    Notebooks
    MacBook Pro
    Bluetooth, USB, Firewire
    Displays
    Internet and Networking
    Optical Drive
    Ports and Interfaces
    Power and Battery
    Using a Mac Pro
    MacBook Air
    Displays
    Internet and Networking
    Peripherals
    Power and Battery
    iBook
    Displays
    Internet and Networking
    Peripherals
    Power and Battery
    MacBook
    Bluetooth, USB, RAM
    Display
    Internet and Networking
    Optical Drive
    Power and Battery
    PowerBook
    Bluetooth, USB and FireWire
    Display
    Displays
    DVDs
    Input Devices
    Internet and Networking
    Peripherals
    Power and Batteries
    Power and Battery
    Using PowerBook
    Mac OS & System Software
    Mac OS X v10.6 Snow Leopard
    Account & Login
    Finder & Dock
    Getting Online & Networking
    iChat and iChat Sharing
    Installation and Setup
    Mail and Address book
    Printing, faxing and scanning
    Time machine
    Universal Access
    Using Mac Osx v10.6 Snow Leopard
    Mac OS X v10.5 Leopard
    Account & Login
    Automator
    Finder & Dock
    Getting Online & Networking
    iChat and iChat Sharing
    Installation and Setup
    Mail and Address book
    Printing, faxing and scanning
    Time machine
    Universal Access
    Using Mac Osx v10.5 Leopard
    Mac OS X v10.4 Tiger
    Automator
    Getting Online & Networking
    Installation and Setup
    Mail and Address book
    Printing, faxing and scanning
    Universal Access
    Mac OS X v10.3 and earlier
    Getting Online & Networking
    Installation and Setup
    Mail and Address book
    Printing, faxing and scanning
    Mac OS X Technologies
    AppleScript
    Audio
    Classic Environment
    iSync
    Networking and the Web
    Unix
    Classic Mac OS (OS9, OS8 & System 7)
    Mac OS8
    Mac OS9
    System 7
    QuickTime
    Mac OS
    Windows
    Safari
    Mac
    Windows
    Front Row
    iOS app store
    iBooks
    iMovies for iOS
    iLife
    iPhoto
    Book, Card, Calendar & Print Orders
    Editing and Organizing
    Installing
    Slideshows
    Using Faces
    Using Places
    iMovie
    Garageband

    HI Paul, I'm not sure what the question is. If you meant that the communities are listed on the front page, then yes they are, but that view does not include links to specific categories, such as Airprint for the iPad. The list provides a way of finding direct shortcuts to these filtered sections of communities, either for your own use as a bookmark or when recommending a potentially useful area of the site to explore in your answers to others.
    tt2

  • Role mapping between Portal and Back end systems

    I am new to SAP EP.
    I just want to know how the mapping between portal and back end system happens.
    Scenario : There is a role in ECC system...say FI India. Now there is a request by the FI team that they want to access this role from Portal. In this case, please tell me how the security team will do it. Because I guess, it has to be done by the security team.

    Hi,
    Usually the role from backend is uploaded to portal then it will be seen as Group and we need to assign our portal roles to this group. Please refer [this|http://help.sap.com/saphelp_nw73/helpdata/en/d6/7859ec80df46738e23ccb4f4c8c502/content.htm].
    Regards,
    Samir

  • What is the best way to drop and recreate a Primary Key in the Replication Table?

    I have a requirement to drop and recreate a primary key in a table which is part of Transaction replication. What is the best way to fo it other than remove it from replication and add again?
    Thanks
    Swapna

    Hi Swapna,
    Unfortunately you cannot drop columns used in a primary key from articles in transactional replication.  This is covered in
    Make Schema Changes on Publication Databases:
    You cannot drop columns used in a primary key from articles in transactional publications, because they are used by replication.
    You will need to drop the article from the publication, drop and recreate the primary key, and add the article back into the publication.
    To avoid having to send a snapshot down to the subscriber(s), you could specify the option 'replication support only' for the subscription.  This would require the primary key be modified at the subscriber as well prior to adding the article back in
    and should be done during a maintenance window when no activity is occurring on the published tables.
    I suggest testing this out in your test environment first, prior to deploying to production.
    Brandon Williams (blog |
    linkedin)

  • Hello apple guys, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    hello apple guys, after installing OS X Mavericks, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    So is this the way Apple works now? Not solving customers problems? I'm sure so many users have had this problem. I've had, and I reinstalled Mavericks 3 times. Works fine for some days and then several Apple Apps stop working. Is that a way to force us ti update to Yosemite? (I don't want to) and then pay to update some third party programs (i.e. Pro Tools). Also, there are so many 15" MacBooks Pro with graphic problems and of course the guys at the Apple Service Centers always say: "It's the logic board, you can have it replaced, but it's so expensive I would recommend a new Mac".  I really, really miss Steve Jobs!

  • I want to go back to OS 5 i do not care if i lose my saved data, i hate that google maps is gone and my email has changed too, ready to change from my 4s I-phone to go to a black berry

    Coming from a Blackberry I was real happy to get the 4S iphone and loved it then an upgrade to OS6 crashed all hope that this will work for me , maps are useless and fustrating, im in sales and sometimes my car does not have the most current updates so i count on the phone. also my gmail is slower. i want to go back to os5 even if i loose everthing and have to put it all back. Is Apple does not fix this soon and add back the old app for Google with out me jumping hoops, ps i never want to see  Yahoo?????? again. then i will leave Apple at my first opportunity to go back to Blackberry. APPLE stop trying to fix what already works just allow your customer to choose which service they want, isnt that why you have apps to begin with choice.

    Hello!
    I recently just downloaded the 'Waze' app as a backup for my Garmin. I've read a few reviews that seem to rant and rave about how good the GPS app is. It is community driven and maps are constantly being updated by users. Plus it has a few other fun stuff in it (something similar to Gasbuddy where you can owe prices on the map). But like the person above me said, there is lots of useful free GPS apps in the App Store.
    Oh and I may be wrong but I remember reading an article about Google being slower about updating its maps system--ie no turn by turn voice, which many people have had complaints about.
    Happy Searching!
    Ps - if you switch I wouldn't go to Blackberry.

  • I have an iPhone 5 16 GB and its been freezing alot and closes out of safari and my games often and my maps freezes alot, and also i just got the notifaction to update my phone to 6.02 i think it is until yesterday.

    I have an iPhone 5 16 GB and its been freezing alot and closes out of safari and my games often and my maps freezes alot, and also i just got the notifaction to update my phone to 6.02 i think it is until yesterday.  I'm still under my 90 warranty with apple. would they give me new one thats not glitchy if i brought it to the genius bar?

    i just took it to the apple store i was late but the guy made me an appointment for friday, he left a comment for the appointment so i just go in they replace it i have my phone backed up through icloud n itunes, shoule i erase everything on my phone b4 taking to them or do they do that

  • HT201441 Hello , my name bonilla astrid buy an iphone from a vendor and I forgot the key put it 10 times and I did not realize I had icloud account of the seller and is no longer in the country nose to do would help me please await your response thank you

    Hello , my name bonilla astrid buy an iphone  5 from a seller and I forgot the key put it 10 times and I did not realize I had icloud account of the seller and is no longer in the country nose to do would help me please await your response thank you very much .

    Sorry, without knowing the Apple ID/Password that was originally used to activate this phone, then there is no way to re-activate it, as you've found out.
    Apple can't/won't help you. Your choice is to get this info, or you simply won't be able to re-activate this phone.
    If you ex won't give it to you, then consult a lawyer.

  • Macbook Pro keyboard typing in random letters and symbols with certain keys

    My mother is not a very tech savvy person. We recently upgraded her Windows PC to a Macbook Pro. A few days ago she went to some website about working from home. I'm pretty sure it was a scam website. Anyway after that the keyboard started acting weird.
    Certain keys will either not work or just type random keystrokes. The keys that I know of are
    7= 123477
    U= IOTUYw
    J= adfgjs
    M= Will sometimes minimize the active window and other times will type out random symbols (æ∆¬)
    :; key= 0 - Esc, and changes the volume
    ' key= Tab, random symbols, enables caps lock
    Eject Key= § changes volume
    I had Sophos Anti Virus installed on it, and after running a full scan it didn't come up with anything. To be safe i decided to completely wipe her Macbook. I also did the 7-pass DOD Standard erase.
    After that i resinstalled Lion on her computer. After restarting the same issue persists. I tried seeing if there was an OSX update that needed to be installed, and that didnt fix anything. I also ran the Apple hardware test. It came up with no issues.
    I also checked to see if foriegn keyboards were turned on, etc.
    I have no idea what to do now. Using my bluetooth keyboard works fine. The keys type what they should. She says he hasn't spilt anything on it, but she works as a daycare provider and sometimes the little kids watch movies or youtube videos on it.
    Any help would be appreciated!

    I just spent hour trying to fix tihs on my iMac and could find the answer so I wanted to post it for someone else. Mine was typing in crazy symbols (åß∂ƒ©).
    Also I could not Command + Tab (shoot me), and when I clicked on a window in another app it hid the windows I was working in.
    I tried new keyboards. And the system preferences stuff - system preferences - language & text - input sources. then select US. This didn't fix it.
    Then I tried to change the keyboard shortcuts in the same window - spotlight (on left), unclick the show spotlight search field and the other one bellow. Then hit the com + Spacebar. This didn't fix it.
    Then i did it and double check that i did it right and still didn't fix it.
    So I called apple support and they gave me the magical key to fix this.
    Turn off your computer. Unplug for 30 sec, and everything attached. Then power it back on and hurry and hold Command + Option + P + R. I held Command + Option + P with one hand and then after I hit power I added the R.
    The computer will make one chime. Keep holding it. I will then shut down and make one more chime and you can let go.
    Taa daa!!
    I have a 27" iMac 2.93Ghz i7 with 10.8.2 (FYI).

  • I had a HD crash and rebuilt system. Trying to setup sync and keep getting wrong key on verify even though it is the one I have always used. I have an account but cannot verify or create new one. Why does this have to be so damn difficult?

    Had a main system drive go out. Replaced and reloaded and now trying to get firefox sync to work and when I put in login info and my key it says wrong key but I do not have any other key and have used this key for years.
    Can someone help me fix this without having to recreate a whole new account?

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • Java mapping for Remove and Add of  DOCTYPE Tag

    HI All,
    i have one issue while the Java mapping for Remove and Add of  DOCTYPE Tag   in Operation Mapping .
    it says that , while am testing in Configuration Test "  Problem while determining receivers using interface mapping: Error while determining root tag of XML"
    Receiver Determination...
    error in SXMB MOni
    " SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="RCVR_DETERMINATION">CX_RD_PLSRV</SAP:Code>
      <SAP:P1>Problem while determining receivers using interface mapping: Error while determining root tag of XML: '<!--' or '<![CDATA[' expected</SAP:P1>
    plz provide solutions
    Thanks in advance.

    Hi Mahesh,
    I understand, you are using extended Receiver Determination using Operational Mapping (which has Java Mapping). And, there is an error message u201CError while determining root tag of XMLu201D, when you are doing configuration test.
    Can you please test, the Operational Mapping (which has Java Mapping) separately in ESR, with payload which is coming now. It should produce a XML something like this [Link1|http://help.sap.com/saphelp_nwpi711/helpdata/en/48/ce53aea0d7154ee10000000a421937/frameset.htm]
    <Receivers>
    <Receiver>
      <Party agency="016" scheme="DUNS">123456789</Party>
      <Service>MyService</Service>
    </Receiver>
    <Receiver>
      <Party agency="http://sap.com/xi/XI" scheme="XIParty"></Party>
      <Service>ABC_200</Service>
    </Receiver>
    </Receivers>
    If it is not (I Think it will not), then there is some problem in Java Mapping coding. Please correct it. Last option, if your Java code is small in length; you may paste it here, so that we can have a look at the cause of issue.
    Regards,
    Raghu_Vamsee

Maybe you are looking for