Anyone know of "Address Layout Key" for India?

I am currently using 001 in the country code settings (transaction OY01), but I am concerned that this is not technically correct. My key user in the country appears to be indicating that there is a dash between the city and postal code for address data in India. I have been reviewing note 117557 amongst others, but nothing clearly stands out for India.
Anyone have any insights into this further?
Thanks,
Jay

Michael,
The system I am on is SAP_APPL, SAPKH47022. I checked in the configuration and key 010 points to "Postal code before city without country code". This would not meet the address requirements for India. The closest one that I seem to have available in configuration is 008 "Singapore (postal code after city)". This seems to get things aligned as per my business user's request and what I can see on the India Post website. Again, I appreciate any help or insight you can provide.
BR, Jay

Similar Messages

  • Address format(address layout key problem)

    Hi All,
    There seems to be a problem the way FM address_into_printform is formatting the address.
    Address currently on the form is coming like below:
    AGRI-M LTD
    Vasisk Aprilso Str 138. PB 135
    BG-4003 PLOVDIV
    Address should come as below:
    AGRI-M LTD
    Vasisk Aprilso Str 138. PB 135
    4003 PLOVDIV
    BULGARIA
    Issue here is that country BG(Bulgaria) which should come as "BULGARIA" and not just as "BG"(This is just a short form).
    I debugged the function module and i found that when address layout key(t005-addrs) is set in customizing as "001" then system is printing the third line as "BG" but when I removed the "001"(in debugging) then it translates it to "BULGAIRA"(which is required).
    I did not throughly debugg to see exactly at what time this happens(when it is set to BG and when it is set BULGARIA).
    What do you think ? I know in customizing, removing this value 001 will work but do you have any idea whether it will create any problem for address format when it comes to priority(street over postal code or postal code over street).
    Is there any other workout so that format comes as required.
    Regards,
    Marc

    Hello,
    In transaction OY01 or IMG menu path:
    General Settings-> Set countries-> Define countries-> Position JP and
    then go to the details.
    You will see an address layout structure key. The standard for Japan is
    013. For more information on the address layout structure key, place
    your cursor in the field and press the F1 help. The documentation is
    very complete.
    They are based on different national and international guidelines and
    norms, including:
    ISO 11180,
    contracts of the World Postal Union (Seoul 1994),
    international address samples from the World Postal Union
    as well as the available rules of the individual countries.
    "Customers can program their own formatting routines using a customer
    exit. The SZAD0001 SAP enhancement has been defined in development class
    SZAD for this (-> transaction CMOD)."
    Regards,
    David

  • Does anyone know of any Sun Classes for Java Cryptographic Extension -JCE ?

    Hello - anyone know of any Sun Classes for Java Cryptographic Extension? If so do you have the Sun class code/s?
    Edited by: Mister_Schoenfelder on Apr 17, 2009 11:31 AM

    Maybe this can be helpful?
    com.someone.DESEncrypter
    ======================
    package com.someone;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    public class DESEncrypter {
        Cipher ecipher;
        Cipher dcipher;
        // 8-byte Salt
        byte[] salt = {
            (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
            (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
        // Iteration count
        int iterationCount = 19;
        public DESEncrypter(String passPhrase) {
            try {
                // Create the key
                KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                SecretKey key = SecretKeyFactory.getInstance(
                    "PBEWithMD5AndDES").generateSecret(keySpec);
                ecipher = Cipher.getInstance(key.getAlgorithm());
                dcipher = Cipher.getInstance(key.getAlgorithm());
                // Prepare the parameter to the ciphers
                AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
                // Create the ciphers
                ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
            } catch (java.security.InvalidAlgorithmParameterException e) {
                 e.printStackTrace();
            } catch (java.security.spec.InvalidKeySpecException e) {
                 e.printStackTrace();
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public DESEncrypter(SecretKey key) {
            try {
                ecipher = Cipher.getInstance("DES");
                dcipher = Cipher.getInstance("DES");
                ecipher.init(Cipher.ENCRYPT_MODE, key);
                dcipher.init(Cipher.DECRYPT_MODE, key);
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public String encrypt(byte[] data) {
             return encrypt(new sun.misc.BASE64Encoder().encode(data), false);
        public byte[] decryptData(String s) throws IOException {
             String str = decrypt(s, false);
             return new sun.misc.BASE64Decoder().decodeBuffer(str);
        public String encrypt(String str, boolean useUTF8) {
            try {
                // Encode the string into bytes using utf-8
                byte[] utf8 = useUTF8 ? str.getBytes("UTF8") : str.getBytes();
                // Encrypt
                byte[] enc = ecipher.doFinal(utf8);
                // Encode bytes to base64 to get a string
                return new sun.misc.BASE64Encoder().encode(enc);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
        public String decrypt(String str, boolean useUTF8) {
            try {
                // Decode base64 to get bytes
                byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
                // Decrypt
                byte[] utf8 = dcipher.doFinal(dec);
                // Decode using utf-8
                return useUTF8 ? new String(utf8, "UTF8") : new String(utf8);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
         // Here is an example that uses the class
         public static void main(String[] args) {
             try {
                 // Generate a temporary key. In practice, you would save this key.
                 // See also e464 Encrypting with DES Using a Pass Phrase.
                 SecretKey key = KeyGenerator.getInstance("DES").generateKey();
                 // Create encrypter/decrypter class
                 DESEncrypter encrypter = new DESEncrypter(key);
                 // Encrypt
                 String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                 // Decrypt
                 String decrypted = encrypter.decrypt(encrypted, true);
             } catch (Exception e) {
                  e.printStackTrace();
              try {
                  // Create encrypter/decrypter class
                  DESEncrypter encrypter = new DESEncrypter("My Pass Phrase!");
                  // Encrypt
                  String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                  // Decrypt
                  String decrypted = encrypter.decrypt(encrypted, true);
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • Does anyone know the power cord part for HP A532 printer? I need a replacement cord. THANKS!

    Does anyone know the power cord part for HP A532 printer? I need a replacement cord. THANKS!

    Here's the steps to follow if your printer isn't turning on.   
    If you've gone through all those steps and you still don't have power, there are a lot of places that sell a replacement cord and supply for that printer. 
    I am an HP employee.

  • HELP! Does anyone know a "Data Recovery Expert" for I-Phone? - My calender disappeared during transfer of data from my old I-Phone 4 to my new I-Phone 5s. It was on both I-Phones then vanished. (It was evidently not syncing during back-ups on the laptop)

    HELP! Does anyone know a "Data Recovery Expert" for I-Phone? - My calender disappeared during transfer of data from my old I-Phone 4 to my new I-Phone 5s. It was on both I-Phones then vanished. (It was evidently not syncing during back-ups on the laptop)

    What calendar were you syning to? Outlook? Google? Something else? The directions on how to resync vary a bit.

  • HELP! Does anyone know a Data Recovery Expert for I-CIoud? -My calender disappeared during I-Cloud transfer of data from old I-Phone 4 to new I-Phone 5s. It was on both I-Phones then vanished. (It was evidently not syncing during back-ups on the laptop)

    HELP! Does anyone know a "Data Recovery Expert" for I-Cloud & I-Phone? - My calender disappeared during I-Cloud transfer of data from my old I-Phone 4 to my new I-Phone 5s. It was on both I-Phones then vanished. (It was evidently not syncing during back-ups on the laptop)

    HELP! Does anyone know a "Data Recovery Expert" for I-Cloud & I-Phone? - My calendar disappeared during I-Cloud transfer of data from my old I-Phone 4 to my new I-Phone 5s. It was on both I-Phones then vanished. (It was evidently not syncing during back-ups on the laptop)
    The Apple techs are looking. But they can't find it. Nor can they find a back up on my laptop, Evidently when I backed up my Iphone to computer the calendar wasn't syncing. Since I only use the calander on my phone - I never noticed.
    The Apple store rep that sold me the I-Phone 5 on Monday, was transferring my contacts and calendar thru I-Cloud (I never used I-Cloud before that moment - and always had it turned off). He successfully transferred the contacts - which are still on my phone), but the Calendar weirdly split into 6 calendars (2 of which were linked to my G-Mail which only had a few entries) (4 were linked to my MSN / Hotmail email and contained all the major events/data). I never created calendars that were separate or liked them to 2 different emails. I just typed entries into the I-Phone calendar. However, the calendar did exist on the new I-Phone for 24 hours. Something happened during transfer. When the Apple Genius Bar tech was attempting to back up my Calendar & merge the 6 calendars, everything disappeared in his hand while he was looking at it.
    I am hoping that some really good data recovery expert exists that can restore the calendar that was in both I-Phones yesterday. It is completely devastating if I can't recover it.
    Any help, or referrals, is great appreciated!!!!
    Thanks!

  • I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...

    I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...
    iPhones are duty free and even with a $50 shipping fee it would only come to £185.75 including VAT at the current exchange rate.

    How much a month is the standard 24month contract with AT&T or one of the other American providers that makes the handset cost $199?
    Here's the cheapest plans available from the big three:
    The plans start there and can run up to $230/mo (for AT&T).

  • Does anyone know what ppqryErrorList is used for in EssOtlQueryMembersEx?

    Given a calcscript, I'm wondering if I can get a list of errors back it has multiple errors (e.g. member not found, syntax error etc.) when I run EssOtlQueryMembersEx.
    I've looked at the documentation (http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_api/api_c/otlc/funcs/apcfqmex.htm) and looks like ppqryErrorList does the job for me. However, I'm getting a NULL pointer to ppqryErrorList regardless or whethere there's an error or not.
    e.g. when I call "@ICHILD(blah)" with EssOtlQueryMembersEx I'm hoping the error list (ppqryErrorList) will contain "member not found blah" but it infact returns NULL.
    This parameter on EssOtlQueryMembersEx must be there for a reason. Does anyone know what this is used for?
    Btw, I'm using Essbase 7
    -Steve

    Well, After Effects has a shattering effect, but I'd guess it was a 3D app that created those effects. To see what you can do with Motion, check out this thread:
    Fun with Shattering...
    Patrick

  • Does anyone know what protection Apple has for the virus that is supposed to shut us out of the internet on Monday?

    Does anyone know what protectio Apple has for this virus that is supposed to shut us out of the internet on Monday?

    There was a security patch made available a few months ago.  So, if you're up to date, you're fine.  Here's a link to check whether or not you have any problems with that:
    http://www.dns-ok.us
    If the site is green, you're OK.
    The actual virus attack happened a year ago,but the FBI hasput up servers to keep people on the internet, until now. 
    http://www.nbcphiladelphia.com/news/tech/DNS-Changer-Virus-Could-Keep-Thousands- Off-Internet-161442515.html

  • I just purchased the Apple MB974ZM/B World Travel Adapter Kit for my iphone 5. It says it works for the 4.  Does anyone know if this will work for my iphone 5?

    I just purchased the Apple MB974ZM/B World Travel Adapter Kit for my iphone 5. It says it works for the 4.  Does anyone know if this will work for my iphone 5?

    here is the link to Apples compatibility guide for it.
    http://store.apple.com/us/product/MB974ZM/B/apple-world-travel-adapter-kit

  • HT3069 Does anyone know what the situation is for Israel?  Does this mean that there is NO content whatsoever?

    Does anyone know what the situation is for Israel?  Does this mean that there is NO content whatsoever?

    I googled
    "Unable to find file floatui.htm in the Configuration/Floaters directory"
    and posted the first Adobe forums link which popped up.
    You can often find answers to obscure issues if you google a few keywords from an obscure error message.

  • Does anyone knows a cheap portable printer for iPad?

    Hi,
    I need a portable printer for my iPad. There is no much choice and all of them are expensive (>600$).
    Does anyone know a good portable printer for iPad?
    I don't need to print photos but documents (A4)

    Some suggestions here:
    https://discussions.apple.com/message/23649242#23649242
    Battery-powered printers are rather few and far between and of those that exist not all will work with an iPad. Using a standard AC WiFi printer with an inverter will give you more options.
    Regards.

  • Does anyone know the USA release date for West of Memphis movie?

    Does anyone know the USA release date for West of Memphis movie?

    There's no general answer, it depends on the platform. On Metalink this information can be found under Certification & Availability.

  • I am a residential appraiser and recently purchased an ipad4 to use for my home inspections.  Some homes are foreclose without power and I am unable to get a good picture without a flash.  Does anyone know of a flash attachment for the ipad4?

    I am a residential appraiser and recently purchased an ipad 4 to use for my home inspections.  Some homes are foreclosed poperties without power and I am unable to get a good interior picture without a flash.  Does anyone know of a flash attachment for the ipad 4? I found a flash attachment for the ipad 2, but it does not work with the ipad 4.

    I'm sorry to hear that.
    I'm not affiliated w/ the developer, just a happy user that gave up fighting the apple podcast app a while ago.  I used to have a bunch of smart playlists in itunes for my podcasts, and come home every day and pathologically synced my phone as soon as I walked in the door, and again before I walked out the door in the morning.
    Since my wife was doing this too, we were fighting over who's turn it was to sync their phone.
    Since I've switched to Downcast, I no longer worry about syncing my phone to itunes at all.  I can go weeks between syncs.
    Setup a "playlist" in downcast (ex., "Commute") and add podcasts to that playlist.  Add another playlist ("walk" or "workout") and add different podcasts to that one. 
    Set podcast priorities on a per-feed basis (ex., high priority for some daily news feeds, medium priority for some favorite podcasts, lower priority for other stuff).  Downcast will play the things in the priority you specify, and within that priority, it will play in date order (oldest to newest).
    Allegedly, it will also sync your play status to other devices, although that is not a feature I currently use and can't vouch for.  It uses apple's iCloud APIs, so to some extent may be limited by what Apple's APIs can do.

  • Does anyone know if Photoshop Elements 9 for the Mac is compatible with Mavericks?

    Does anyone know if Photoshop Elements 9 for the Mac is compatible with Mavericks?

    Yes, but it is absolutely critical to delete all existing preferences after upgrading to 10.9.
    I'm running PSE 6, 8, 9, 10, 11, and 12 in 10.9. PSE 11 has a slight problem (with a couple of filters) but otherwise it all works.

Maybe you are looking for