Standard format for MX?

Hi, I have the following function:
public void testDnsLookup() throws Exception {
         Hashtable env = new Hashtable();
         env.put("java.naming.factory.initial",
                 "com.sun.jndi.dns.DnsContextFactory");
         DirContext ictx = new InitialDirContext( env );
         Attributes attrs =
            ictx.getAttributes( "hotmail.com", new String[] { "MX" });
         Attribute attr = attrs.get("MX");
         if (null != attr) {
              System.out.println(attr);
              NamingEnumeration<?> ne = attr.getAll();
              while(ne.hasMoreElements()) {
                   System.out.println(ne.nextElement());
     }Which prints out the following for hotmail:
MX: 5 mx3.hotmail.com., 5 mx4.hotmail.com., 5 mx1.hotmail.com., 5 mx2.hotmail.com.
5 mx3.hotmail.com.
5 mx4.hotmail.com.
5 mx1.hotmail.com.
5 mx2.hotmail.com.
My question is about the format of
5 mx2.hotmail.com.
Is this a standard format? What does the number in the front mean? Especially, is there always a number in the front?
Thanks.
M.

Found the answer. The number in the front represent the priority. Lower is better.
M.

Similar Messages

  • List of Standard formats for multisampling on Feature Set 9_3 ?

    Is there a list of Standard formats for multisampling on Feature Set 9_3 (or for Windows Phone 8 basically) ? I know the max samples for 9_3 is 4 but I'm only getting this as valid for a RGBA8 texture. I'm trying to create a R32 texture with AA and my Lumia
    520 throws :
    D3D11 ERROR: ID3D11Device::CreateTexture2D: The Sample descriptor is invalid for a D3D10.0 level driver. DXGI_SAMPLE_DESC::Count (value = 4) must be between 1 and 32, inclusively. For 4 samples, the current graphics implementation only supports DXGI_SAMPLE_DESC::Quality
    (value = 0) less than 0. <-- if 0 is shown here for Quality, this means the graphics implementation doesn't support this number of samples. Use CheckMultisampleQualityLevels to detect what the graphics implementation supports. [ STATE_CREATION ERROR #93:
    CREATETEXTURE2D_INVALIDSAMPLES]
    This basically means it's not supported, but what I was curious is, should it be supported as part of the standard ? making this more like a driver inconsistency ? I initially thought all renderable formats on 9_3 should support 4x AA.
    http://www.facebook.com/relativegames

    Officially only 10.1 or later Direct3D feature levels must support MSAA.
    From
    MSDN
    Note that FEATURE_LEVEL_10_1 devices are required to support 4x MSAA for all render targets except R32G32B32A32 and R32G32B32. FEATURE_LEVEL_11_0 devices are required to support 4x MSAA for all render target formats, and 8x MSAA for all render target
    formats except R32G32B32A32 formats.
    For all other devices, you have to use CheckMultisampleQualityLevels at runtime to validate that MSAA is supported. For typical Desktop GPUs, feature level 9.3 and 10.0 devices are likely to support 2x and 4x MSAA.
    Note also that Feature Level 9.3 only supports MSAA RenderTargets with: DXGI_FORMAT_R8G8B8A8_UNORM, DXGI_FORMAT_R8G8B8A8_UNORM_SRGB, DXGI_FORMAT_D16_UNORM, DXGI_FORMAT_B8G8R8A8_UNORM, and DXGI_FORMAT_B5G6R5_UNORM per the "Multisample
    render targets" list from MSDN.

  • When I make iMovies and copy to disc, they record fine for my computer but I can't get them to play on my DVD for televison.  Is there a standard format for most DVD's and if so what is it.

    When I make iMovies and copy to DVD, they record fine for playing back on my computer but will not play on my DVD for television.  Is there a certain format for DVD player and if so can you tell me what it is?

    You need this:   http://www.apple.com/findouthow/movies/idvd.html#custom
    IDVD is a wonderful piece of software and well worth the low cost of $40.
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    http://dealmac.com/lw/artclick.html?1,527850,1872219

  • SAP standard File formats for payments

    Hi Gurus,
    Can any one of you kindly provide the SAP standard file formats for "Check" and "WIRE" payments for the bank interface?
    With the SAP standard file formats I need to contact my client's bank to know whether they can support the standard format for the interface.
    Early response will be appreciated.
    Thanks for the help.
    Regards,
    SP

    Hi,
    Good evening and greetings,
    Please go through the following link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/70/42753ced012a49e10000000a11402f/frameset.htm
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • How to Change the default format for differnt language both in java and SQL

    Hello,
    I am using SQL Anywhere in my application.And in my java client application user can log in with their preferred language like English,French,German,Chinese,etc....When even the user log in to the application the data from the database will be displayed with respective to the language.But when i tried to see the dates in Interactive SQL all the dates r in the format of '2008-12-5 16:44:10:673' but say for example for Chinese it will be displayed as '08-12-5 16.44.10' and for some other language it will come in some other format(which is standard format for those language).
    Mean while i am using java client.When ever i am displaying a date it will be with respective to the language using Locale and date format classes.When i am displaying the date for Chinese in GUI it will show the date as '08-12-5 &#19979;&#21320;4:44'. In summary
    1. For Chinese,the default date pattern from SQL Anywhere date base is '08-12-5 16.44.10'
    2. For the same language date using java code is displaying as '08-12-5 &#19979;&#21320;4:44'. and i am getting the time format pattern as 'ah:mm'.I tried to change the display format in regional settings but no change in display.
    Is there any way to make both the time format as same?
    Please help me to solve this issue!!!
    Thanks in Advance!
    Arun

    pon_arun wrote:
    Hello masijade,
    I did as u said but still the date display is not the same......And I'm telling you that it doesn't matter. What "format" the DB likes to display a Date in when it displays it, is completely irrelevant to how you display it in your GUI.
    A Date does not have a format. A String representation of a Date does.
    As long as you use getDate from ResultSet and setDate from PreparedStatement you do not have to worry about this. Those methods will handle dates to and from the DB themselves. You can then use SimpleDateFormat to display the Date anyway you want to.
    Just because you show the Date one way, and the DB shows it another, does not mean that it is not the same date. Don't get hung up on how the String representation of the Date looks.
    Edit: If you simply want to be able to do "Human Comparisons" then look at the SQL TO_CHAR function (for Oracle, for other DBs the function name may vary). And for Java, read the API docs for SimpleDateFormat (as already intimated above).

  • Poland Withholding Tax Format for Platnik

    Is there a standard format for sending Poland contractor deductions for income tax and social security to Platnik?  We are deducting using withholding taxes from the vendor payment to the contractor and not from the payroll system.

    Hey Sandrine,
    You can fill in the SIRET in customizing
    Financial Accounting -> Financial Accounting Global Settings -> Company Code -> Enter Global Parameters
    Than choose 'Additional data' buttom, and fill in the field 'Commercial register no. SIRET'.
    You can fill in 14 digits.
    The first 9 digits = SIRET-number
    The last 5 digits = NIC-number
    In a previous SAP-version, yoy could also fill in the APE in the additional data screen, but that field no longer appears in that customizing screen (you can adapt it using se16 -> table T001Z - party WT_EDI)
    Ik hope this can help you.
    Nele

  • As is study,business blue print - Format for recording MM activity

    hi,
    I need the standard format for recording the AS IS STUDY,Business blue print  relevant to MM.any one can help me..Pl.send to [email protected]
    sri

    Dear Sujan,
    check the below link for GO live strategy.
    http://www.saptechies.com/sap-pdf-books-download/SAP_Go_live_strategy11248141773.pdf
    Search the Google for BBP Document quastions.
    Regards,
    Kishore K
    Edited by: kishore babu on Dec 22, 2009 8:21 AM

  • File formats for graphic standards manual

    I am developing a graphic standards manual for a university and will be providing art files for their logo in a number of formats for both inhouse use (PC Word, Powerpoint, Publisher, inhouse web master) as well as for outside professional vendor use (mac). I am a Mac print designer and know what I need to provide for their outside designers and vendors. Looking for advice on what formats to provide for their internal use. I need to make this as easy as possible for their internal staff to use or they won't use it. So I don't want to overwhelm them with more formats than needed. Do I need to provide separate Illustrator vector eps files for the pc and the mac...or would one version work for both? Do I need to provide separate tiff files for the pc and mac? Should I provide them jpegs as well as tiffs (I will be giving them tiffs at three sizes). pngs or giffs?
    Any suggestions would be greatly appreciated.

    I usually use pdf format for this kind of thing, although it's usually safest to outline fonts before distilling because PC fonts work differently than Mac fonts. Everyone can read pdfs and those that have the technical knowledge can open then in Illy or Freefoot* to extract the vectors and/or pictures.
    *Sorry Freefooters. No offense intended. It's just that "that application" is like Macbeth in the theatre. Not to be named in some circles :-)

  • Oracle Retail standard file format for batches - specification needed

    Is there any accurate specification of Oracle Retail standard file format for batches, such as EdiUpcat.pc (possibly with examples)?
    I am trying to produce a file with supplier cost changes for Cost Change Batch (ediupcat.pc).
    In "Operations Guide - Batch Overviews and Designs - Volume 1" I found some brief description, though it is not clear to me
    1) what should I do with empty values (obviously, pad with appropriate number of spaces?)
    2) What if some string value has less characters than specified? Should I left-pad or right-pad?
    3) What does Number(12,4) means? How many characters exactly? 17? Why then values in some fields are multiplied by 10000 (so that to obtain integer value) while in others they go in Number(12,4) notation?

    Hi Roman,
    I am glad to be of help.
    Try to see it like this:
    A number 20 is of char-length 20 in a flatfile, and the value is what it is 1:1.
    A number 12,4 is of char-length 12 in a flatfile, but needs to be divided by 10^4 (10000) to get its real value.
    Indeed there is a funny asymmetry in the documentation how the decimals are handled - but we needed to read carefully already anyhow... :)
    I always like to construct a file by hand in an editor (vi, whatever) and then run it through the program, and check the errors in the error file.
    Good luck and best regards,
    Erik
    Edited by: ErikYkema on Oct 13, 2011 3:01 PM

  • Formatting for Standard Texts  not Applying

    Hi ,
    Now Ia m working on BTE's . In BTE function module I am  writing some text and saving it By SAVE_TEXT. In that Iam possing all the variables Including Style Name.And I am using this standard text as a body of the email.In that email Body the Formating options are not appying.
    Can anyone throw some inputs on this.
    Regards,
    Eswar

    thanks for you response,I am sending plain text.I am facing formatting issuse .How to do formating for body of email .

  • Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?

    Hi Experts,
    do anybody knows Where to find Crystal Report Formats for SAP B1 8.8 (India Localization) ?
    For example
    Sales Register
    Purchase Register
    Journal Register
    Sales Analysis - Crystal Report
    Purchase Analysis - Crystal Report
    Check Register - Crystal Report
    Production register
    Pending Sales Order
    Outstanding Receivable
    Outstanding Payable
    BankBook
    CashBook
    General Ledger
    BP Ledger (Customer / Supplier)
    Trial Balance
    Balance Sheet
    Profit & Loss Statment
    Cash Flow statment
    Excise reports
       RG 23 A Part I
       RG 23 A Part II
       RG 23 C Part I
       RG 23 C Part II
       Daily Stock Account
       RG 1
       ER 1
       etc....
    Documets Layout
       Incoming Payment
       Outgoing Payment
       Journal Entry
       Transaction Journal Report - Crystal Report
       Sales Quotation
       Sales Order
       Sales Delivery
       Sales Return
       Sales Invoice (A/R Invoice)
       Purchase Order
       Goods Receipt PO
       Purchase Goods Return
       Purchase Invoice (A/P Invoice)
      Inventory Transfer
      Inventory - Goods Receipt
      Inventory - Goods Issue
    Best Regards,
    Samir Gandhi

    Hi Neetu,
    Do you wish that at all customer site all concern involved in implemtation do the same work ?
    I believe ERP is meant for single entry system, and it should be true for implementation also, why to invest man hours for the same task ?
    I expect it standard reports should be released by SAP, so that speed of implementation improve, we have more nos. of satisfied customers.
    customised reports is all together different and it is understood that it is needed to be developed after study the exact requirement.
    Best Regards,
    Samir Gandhi

  • STandard Report for GL Account balances

    Hi,
    I am looking for a standard report for GL Account balances in the following :-
    Opening Blanace          Tranasactions during the month                               Closing Balance                       
                                          Debit                       Credit
    REgards,
    RAJ

    I am looking for LINE ITEM WISE REPORT for GL Accounts in the following format:-
    Opening Balance  
    Transactions during the month (DR  and Credit )        
    Closing Balance
    REgards,
    Raj

  • Is it possible to define specific format for document such as , PO,SO,JV ?

    Hi !
    Actually i am new to EBS. Just we are in the implementation stage now.
    Actually i want to know that whether it is possible to customize the standard format of PO Number or SO Number or GRN No that is there in oracle EBS to My desired format.
    For Example:
    Purchase Order Number format like CO10Y-XXXX
    Sale Order Number format like ES10Y-XXXX
    Journal Voucher like JV10Y-XXXX
    Thanx.

    Hi !
    Actually i am new to EBS. Just we are in the implementation stage now.
    Actually i want to know that whether it is possible to customize the standard format of PO Number or SO Number or GRN No that is there in oracle EBS to My desired format.
    For Example:
    Purchase Order Number format like CO10Y-XXXX
    Sale Order Number format like ES10Y-XXXX
    Journal Voucher like JV10Y-XXXX
    Thanx.

  • Best Hi Def File Format for PE 10 on a PC?

    I am running Premiere Elements 10 on a PC, Windows 7 Professional 64 bit, two internal 1 TB Hard Drives, 16 gigs of RAM, with Blu Ray Burner drive. I have done a fair amount of video editing using PE 10 on this rig with standard def material, but now I hope to do some high def work. I plan to have some old family 16mm home movies transferred to hi-def media and do some minor editing (color / contrast correction and maybe some simple transition effects) and then burn the edited files to Blu ray disc.
    I am all ready to send my 16mm footage off the the transfer house, but I need to know what would be the best file format for my set up. The formats they have available are DPX Image Sequence, TIFF Image Sequence, and Quicktime (either 422 HQ or 4444 HQ). I am assuming the preferred format would be either of the Quicktime files, and I have downloaded short (about 10 to 15 second) sample files in both 422 HQ and 4444 HQ and was able to import each into PE 10 with no problem and successfully do various edits on each.
    But I have read a good number of posts on this and other forums from PC owners who are running Premiere Elements and have had problems either loading Quicktime 422 & 4444, or editing them once they were loaded into PE.
    Can anyone comment on this for me? Basically, all I want to know is what Hi Def file format(s) I can reliably use on my computer with PE 10. I don't want to pay several hundred dollars (or possibly more) for a digital transfer from my 16mm footage that turns out to be useless to me.
    Rob McKay

    ATR -
    Thanks for your very informative reply. I'm afraid the transfer house doesn't offer samples.
    Since you think the ProRes 422 would be best for me, here is what I have done in my own tests:
    1) Downloaded short ProRes 422 HQ clips into files on my computer hard drive from several websites. The longest of these clips is 30 seconds.
    2) Using the "get media" tool in PE 10, I've brought these clips into PE 10.
    3) Dragged the clips into the project timeline. At first I got a popup message saying (and I have paraphrased this) the "file format is not supported by PE 10. Would you like the program to convert it to a format supported by PE 10?"  I clicked "yes" and the clip appeared in the timeline. Later on I stopped getting this popup message. I've no clue what format the program might be converting the ProRes 422 HQ files to.
    4) After I had a couple minutes of short clips in the timeline, I copied and pasted some of them over and over in the timeline until my entire video time was about 30 minutes in length. Reason for this was simply because I am trying to replicate as best I can what my file from the Transfer House will be like - not 2 minutes in length, but closer to 30 minutes.
    5) Did a few minor editing effects on the timeline of the sort I would be doing on my Transfer House file - contrast and color correction, time stretch /speed change, etc.
    6) Went to "Share" tab, clicked on "Disc - Burn to Blu Ray". In the Presets dropdown menu, I chose "H.264 1920x1080i NTSC Dolby" (Note - Only four choices appear. The one I chose, as well as "H.264 1440x1080i NTSC Dolby" and the same two again except in PAL Dolby.)
    7) Burned a BD-R of the project in Blu ray burner.
    I was very pleased with the result - image was nice sharp quality, smooth moving (no dropped frames) and filled my 4 foot x 8 foot screen when played on my Blu Ray player through an Epson projector.
    Rob

  • While doing LSMW standard method for Customer master creation..

    while doing LSMW standard method for Customer master creation.....
    In 13th step I am getting this king of error
    FB012                    Session 1 : Special character for 'empty field' is /
    FB007                    Session 1 session name ZPROJ was opened
    FB109                    Trans. 1 : Transaction xd01 is not supported
    FB016                    ... Last header record ...
    FB014                    ... BKN00-STYPE 1
    FB014                    ... BKN00-TCODE xd01
    FB014                    ... BKN00-KUNNR
    FB014                    ... BKN00-BUKRS
    FB014                    ... BKN00-VKORG A1
    FB014                    ... BKN00-VTWEG 00
    FB014                    ... BKN00-SPART 0
    FB014                    ... BKN00-KTOKD
    FB014                    ... BKN00-KKBER BP01
    FB013                    ....Editing was terminated
    Can anyone help how to solve this?

    Hello TJK,
    <b>FB012 Session 1 : Special character for 'empty field' is /</b>
    This is the special function in LSMW, for empty field system will put / sign automatically, so you need not to worry about that.
    <b>FB007 Session 1 session name ZPROJ was opened</b> It is opening session ZPROJ which is your project name/object name.
    <b>FB109 Trans. 1 : Transaction xd01 is not supported</b>
    Check out your field mapping and conversion rule for object.
    <b>FB013 ....Editing was terminated</b>
    It is not finding proper field mapping rule / file inputs so the sytem terminates the LSMW object.
    Check your field mapping and conversion rule, check your source fields, save the file in tab delimited format.
    Hope this helps.
    Regards
    Arif Mansuri

Maybe you are looking for

  • How to make use of Listener to auto refresh  items in SelectOneMenu

    Hi, I have a transaction jsp page that make use of the SelectOneMenu of which the Selectitems for example consists of all the item_code are added to the dropdownitems through the sessionBean1 ArrayList. The problem started when new item_code are bein

  • Problem with CO Extension

    Hi, I have extended a CO. When i ran the page through JDEV, the page is opening properly. But when i ran the same thing from apps, i am getting the Nullpointer exception. And it is showing the error is at the line in extended CO: super.processRequest

  • Restart of replicat process

    hello I use goldengate 11.1.1.1.2 on Aix 6.1 server and oracle database 10.2.0.4, the retention of trail files is one day on the target, when the replicat process abended, I see that, at restart, it reprocess all the trail files , this generate a hug

  • Find a class under Jar file

    Hi all, If I want to find out a class resides under what jar file, under Linux, I use this command: for i in $(find -name \*.jar) ; do if jar tf $i | grep �q className.class ; then echo $i ; fi ; done Does anybody know how can I do this under Windows

  • Leave request in Work flow

    Dear All Could you please throw a light on this  Leave approval through Work flow    . leave request should goes to concern supervisor how we can configure  in the SAP  could you please tel me  is it relating to functional or technical 1 if the conce