Issues with Textfield with Autocomplete

Hello,
I am presently working on APEX 4.0 and i used the text field with autocomplete to create an item using the list of values query below
select r_d from v_200_00_lv_stt
I need to know the return value,before inserting into the table.How can this be achieved?. When I was creating the textfield I tried to include the return value in the query but all effort prove abortive.Can anyone please help.
Regards,

i don't know if these can return and id. Had a look on the forum look at this thread.. Text Field with Autocomplete

Similar Messages

  • Query for create manual tabular form using apex collection using item textfield with autocomplete

    can we create a manual tabular form inside item textfield with autocomplete ?
    how it is possible?
    with Apex_item API used for this item.
    i used this code for creat  cascading select list
    select seq_id,
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
            p_idx                       =>   1,
            p_value                     =>   c001,
            p_query                     =>   'SELECT C001 D
         , C002 R
      FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = ''col1''',
            p_attributes                =>   'style="width:150px" onchange="f__name(this,parseInt(#ROWNUM#));"',
            p_show_null                 =>   'Yes',
            p_null_value                =>   null,
            p_null_text                 =>   '- Select name -',
            p_item_id                   =>   'f01_'|| LPAD (ROWNUM, 4, '0'),
            p_item_label                =>   'Label for f01_#ROWNUM#',
            p_show_extra                =>   'NO') name,
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
            p_idx                       =>   2,
            p_value                     =>   c002,
            p_query              =>   ' SELECT null d, null r FROM dual WHERE 1 = 2
            p_attributes                =>   'style="width:150px"',
            p_show_null                 =>   'Yes',
            p_null_value                =>   null,
            p_null_text                 =>   '- Select name -',
            p_item_id                   =>   'f02_'|| LPAD (ROWNUM, 4, '0'),
            p_item_label                =>   'Label for f02_#ROWNUM#',
            p_show_extra                =>   'NO')name2,
    from apex_collections
    where
    collection_name = 'COLLECTION1'
    It is fine .
    but i want item in tabular form  textfield with autocomplete and remove select list. my requirement is using textfield with autocomplete select a employee name and second item textfield with autocomplete display dependent perticular employee related multiple task.
    how it is created.i have no idea related textfield with autocomplete.Please help me....

    pt_user1
    I understand that the add row button is currently doing a submit.
    To not submit the page you need a dynamic action on the page.
    Does the javascript function addRow do what you want?
    Otherwise have a look at the following two threads Add row in manual tabular form using dynamic action and Accessing Tabular Form & Add Elements to Collection without Page Submit.
    You're process could be something like:
    Add the new values to the collection using the idea's in the second thread and at the same time add the new row.
    And as second action refresh your tabular form.
    If you get stuck set up what you have done on apex.oracle.com using the tables from the demo application.
    Nicolette

  • Textfield with autocomplete and a report

    Hello,
    i have a page with item "textfield with autocomplete" and a report. The report shows a query with the value from the textfield in the where part.
    Before, the textfield was a "select-list" with page redirect. The report show allways the correct data after the page refreshed.
    Now, with "autocomplete" the page has no submit for the page and the report doesn't refresh.
    How can i refresh the report, after the user enter a text in the item "textfield with autocomplete"? I try it with a dynamic action: Event: OnChange on the item, Action: Refresh the report-region. But nothing.
    If the page onload a request get the data from db in this item. The user enter the new data in this item. Thats the reason i can't use a complete page-refresh. The new data from userinput are lost.
    Any idea?

    Choosing an entry from the auto-complete list doesn't trigger the change event , it is a "result" event.
    But that event is not available in the list of triggering action in Dynamic Action.
    You can add the following JS code so that a change event is triggered when choosing an autocomplete entry.
    $('#<ITEM NAME>').bind('result', function(){
      $(this).trigger('change');
    });+<ITEM NAME> is the Autocomplete Item, replace it with your own+

  • Textfield with LOV and Jtable

    hi...
    i am using swing and jdev 11
    is it possible to use textField with LOV as column type in jtable ?
    if yes...how?
    if not....? is there any solution? tnx (i dont want to use combo box because my lov is very big and i need to seach)
    thnx

    Choosing an entry from the auto-complete list doesn't trigger the change event , it is a "result" event.
    But that event is not available in the list of triggering action in Dynamic Action.
    You can add the following JS code so that a change event is triggered when choosing an autocomplete entry.
    $('#<ITEM NAME>').bind('result', function(){
      $(this).trigger('change');
    });+<ITEM NAME> is the Autocomplete Item, replace it with your own+

  • Transparent TextField with Synth Look and Feel

    I am trying to use synth to implement a textfield with a transparent background, and having some problems with it. I can see my panel and the transparent field fine enough in the beginning, but when the text in the field changes, it writes right over the previous text and becomes a pile of unreadable white marks. I've experimented with varying degrees of transparency, but you can still see the old field underneath slightly. Does anyone have any suggestions? My code is below.
    Thanks.
    synth.xml
    <synth>
    <!-- PANEL -->
    <style id="panelStyle">
        <state>
            <imagePainter method="panelBackground" path="../../../lafImages/papyrus_bkgd.gif" sourceInsets="10 15 10 15"/>
        </state>
    </style>
    <bind style="panelStyle" type="name" key="PAPYRUS_PANEL"/>
    <!-- TEXTFIELD -->
    <style id="textFieldStyle">
        <font name="Kudasai" size="12"/>
        <state>
            <color type="TEXT_FOREGROUND" value="#FFFFFF"/>
            <!-- set the alpha value for transparency in 1st two digits -->
            <color type="BACKGROUND" value="#00000000"/>
        </state>
        <opaque value="false"/>
    </style>
    <bind style="textFieldStyle" type="region" key="TEXTFIELD"/>
    </synth>
    my tester
    class SynthTester {
        private JTextField field;
        public SynthTester(){
            initLookAndFeel();
            JFrame main = new JFrame();
            JPanel panel = new JPanel();
            panel.setName("PAPYRUS_PANEL");
            field = new JTextField(3);
            field.setText("0");
            panel.add(field);
            JButton button = new JButton("+");
            button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    int val;
                    try {
                        val = Integer.parseInt(field.getText());
                    } catch( Exception ex ) {
                        val = 0;
                    val++;
                    field.setText(Integer.toString(val));
            panel.add(button);
            main.add(panel);
            main.pack();
            main.setVisible(true);
        private void initLookAndFeel() {
            SynthLookAndFeel lookAndFeel = new SynthLookAndFeel(); 
            try {
                InputStream is = getClass().getResourceAsStream("synth.xml");
                if( is == null) {
                    System.err.println("unable to load resource stream");
                } else {
                    lookAndFeel.load(is, getClass());
                    UIManager.setLookAndFeel(lookAndFeel);
            } catch (Exception e) {
                System.err.println("Couldn't get specified look and feel ("+ lookAndFeel+ "), for some reason.");
                System.err.println("Using the default look and feel.");
                e.printStackTrace();
                System.exit(1);
    }

    As its name implies, an imagePainter element creates a SynthPainter that paints from an image. For example:
    <synth>
    <style id="example">
    <state>
    <color value="white" type="BACKGROUND"/>
    </state>
    <imagePainter method="panelBackground" path="background.png"
    sourceInsets="5 6 6 7" paintCenter="false"/>
    <insets top="5" bottom="6" right="7" left="6"/>
    </style>
    <bind style="example" type="region" key="Panel"/>
    </synth>

  • Issue using SharePoint 2010 with IE10 with MS Office Excel Viewer

    Hello,
    We are experiencing an issue with MS SharePoint 2010 Foundation and computers who have Internet Explorer 10 and the Microsoft Office Word Viewer 2003.  When opening Word documents from SharePoint, the Word Viewer opens, but no document is displayed.
     The MS Excel Viewer 2007 works and does open the Excel documents.
    Computers with MS Word Viewer 2003 and IE 9 works fine, it's just the IE10 PCs.  PCs that have the full version of Office it works fine with both IE9 and IE10.
    We have a segment of our PCs that need only read-only access to the Word and Excel files.  We tried Office Web App but found functionality issues (printing, etc.) and issues where the other segment of our PCs that have MS Office had to open the files
    in a specific way to manipulate them.
    Does anyone know of something that would be affecting the MS Word Viewer with IE10 with SharePoint?  Or know of an alternate viewer? 
    Thanks in advance.

    Hello Anthony,
    In IE10, please click F12 to open the DEV toolbar.
    Now search for Browser- and Document Mode.
    Set Browser Mode to Internet Explorer 8, that should work.
    This setting can be edited in your Masterpage.
    This is what you should put in:
    <meta
    http-equiv="X-UA-Compatible" content="IE=8" />

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

  • Is it possible to export interactive textfields with data?

    Hey guys,
    I have following problem. I´m creating our variable price list for our customers. "variable" means an interactive pdf for our customers where they can edit the prices, product discription etc.
    I can paginate our catalogue with "Easy Catalogue" including all interactive textfields. It looks like this:
    https://www.dropbox.com/s/kn81v9db69dx0a7/screenshot_pagination_incl_interactive_textfield s.png?dl=0
    The problem now is, when I export it as an interactive pdf, the data of the textfields will not be exported -> Dropbox - screenshot_exported_interactive_form.png
    it`s just blank
    Does anybody have a solution for this problem. I need the fields to be preset with the data!
    Is it generally possible to export interactive textfields with data?
    Any idea is appreciated!
    cheers from Austria,
    Chris

    I´m using Easy Catalog http://www.65bit.com/software/easycatalog/
    But I think it has something to do with indesign interactive pdf export properties.
    What I also tried:
    Converted an ordinary textfield with text into an interactive textfield -> then exported as an interactive pdf -> also blank editable field!

  • Secure connection failed: The Certifying Authority for this certificate is not permitted to issue a certificate with this name. (Error code: sec_error_cert_not_in_name_space) PLEASE HELP ME!!

    I have gone to this website almost everyday for years and I have not changed anything in my internet settings, but now I'm getting this message: secure connection failed: The Certifying Authority for this certificate is not permitted to issue a certificate with this name. (Error code: sec_error_cert_not_in_name_space) The only thing I KNOW I did differently, was I installed a CAC reader to my computer, since then, this has been happening. Is there a setting I can change?? E-mail is: [email protected] Thanks! Megan

    There were recently several users getting this error code who use AVAST 2015. If you recently got that program, please see:
    * [https://support.mozilla.org/questions/1029578 Can NOT access https://www.google.com for google voice, mail etc.]
    * [https://support.mozilla.org/questions/1028985 Avast Forum connection failed - works in Chrome etc.]
    * [https://support.mozilla.org/questions/1028190 Since last FF update I can't sign out of Yahoo and when I close FF it tells me it has crashed.]

  • Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Contact facebook to address the facebook issues.

  • Setting for issue subcontract material with ME2O

    Hi,
    In our system presently we are issueing all the material to subcontract with MB1B movement type 541,  I wan tto knowthe settings and process of issue the material with ME2O, what settings are needed this is to control some that we can see the issue qunaity against that PO to the vendor.
    regards,
    zafar

    Hi,
      I have created a Subcontract PO now in ME2O I can see that POthen I select the PO number and click on Post goods issue,  but system is giving error message
    Please select header line(s) or reservation(s)
    Message no. ME152
    but which is the this header line or reservation i have not found reservation number in ME2O screen in our system.
    regards,
    zafar

  • Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi has anyone else had the same issues works fine with BigPond WiFi

    Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi (this connection is working on other devices) has anyone else had the same issues, works fine with BigPond Wifi

    and now, when i tried to check again my network preference below the airport tab is showing a message that
    "my airport does not have an IP address and cannot connect to the internet!"
    then after seconds it will goes back to the first message that
    "airport has the self assigned IP address etc....."
    i don't know whats going on now!
    airport tab is not showing green color anyway! i'ts always in yellow!
    i tried turning it on and off but nothing happen! HEEELLLLPP!!!!

  • Issues With Syncing With Outlook Calendar, Please Help...

    Windows Vista
    DM 6.0 (latest Version)
    BlackBerry Bold 9000 4.6 (Latest version of 4.6 before it came 5.0)
    Outlook 2007 Calendar
    I am currently have a Intellisync Issue with syncing with my Outlook Calendar.
    When I try to go and set it up, it asks me which way I would like to sync (two ways, from BB to outlook, from out look to BB)
    When I click on next, this error message comes up. Then the program just crashes and then I get back to the DM 6.0 software.
    Anyone can give me pointers on trying to fix this.
    Thanks!

    FIRST click on “reset settings” (if it is grayed out and does not allow you to reset; just go to next step) Click on Configure settings; check off calendar; as soon as you check it the next screen just pops up It says select a device application; then scroll and select Microsoft Outlook; Click Next and then pick which way you are going to sync If it is the first time just use One way sync from outlook to device. Click next; Click transfer only future items selected; click next then finish; Should see the final screen with top box out of three checked off. Click ok Click sync at bottom right of page. I found that if I went to slow (since I was making this sheet) that I would get the error message sometimes. I would just start over; FIRST ALWAYS RESET SETTINGS; then just follow all the steps again . Then should sync Once it is finished you will be back where you started from It is a good idea to click on Reset settings now before you close out. When you go in again click follow the steps from the top of the page. FIRST click on “reset settings” (if it is grayed out and does not allow you to reset; just go to next step) Click on Configure settings;

  • AS fails to identify an image placed in html text via an img tag in a TextArea, while doing so correctly with textField.

    A best-efforts session with identifying, in ActionScript, an
    image placed in a TextArea and identified with id, leads me to
    wonder whether the id attribute is supported.
    I have on disk a jpeg file of the amazom.com logo, a small
    image.
    In a scene, I have a TextArea with instance name
    TextAreaPane, and a Dynamic textField with instance name
    DynamicPane. Both of the html attributes in their properties panes
    are set to true. There is a button onstage with instance name
    "ShowIt".
    If my script reads:
    copyToShow = 'This is one place to see it: <img
    src="D:/Imgs/amazon.jpg" id="nineties"><br>'
    TextAreaPane.text = copyToShow;
    DynamicPane.htmlText = copyToShow;
    ShowIt.onPress = function( )
    trace ("Via TextArea, I can identify: " +
    TextAreaPane.nineties);
    trace ("Via the textField, I can identify: " +
    DynamicPane.nineties);
    After the movie loads both in the Player and in the Windows
    Projector, the image and text show correctly in both text panes.
    When I hit the button, I get:
    Via TextArea, I can identify: undefined
    Via the textField, I can identify:
    _level0.DynamicPane.nineties
    Hitting the button after the scene starts playing allows the
    very short asynchronous access time to elapse, so this isn't a case
    of loading a textfield in one line of script, and then in the next
    line expecting for ActionScript to have access to it.
    Of course for the Projector I send these statements to a
    textField on stage to see what trace gives me, and they're the
    same.
    I tried placing the two fields inside a movie clip (and
    adding that movie clip instance name to the head of their dot
    addresses), wondering if being a sub-object of a movie clip would
    help, but the same results -- the textField handles it, while
    TextArea doesn't.
    ... Does anyone have a means of getting better results?

    Tim,
    Many thanks for the clue and the amendments -- once I had
    finished a late night of it, a cleanup chore unearthed a magazine
    that's had me engrossed for a day and a half and produced the
    appearance of ignoring your replies; actually the computers have
    been off.
    I won't be back to it for another few hours at least, but
    wanted to acknowledge the support; the hints in your message look
    like they'll be the beginning of another day at it; I'll send word
    when there's some kind of results.
    I sent the same message to Adobe in their LiveDocs section, a
    forum where they variously now tolerate people saying 'How d'ya do
    this', 'How d'ya do
    that', then now reply that that isn't the right forum for
    how-to's, but rather for documentation problems. Well, since the
    intro to TextArea says that it supports all the html that Flash
    does, I added in the message that the inability to do the
    dot-addressing-image-access that they explain under id is a
    discrepancy, so qualifies to post even if they're in their
    rule-adhering mood, but it hasn't appeared yet -- either under
    review or discarded.
    The reason I'd chosen TextArea was that the text column will
    sometimes be long, and it would be nice to get the overage out of
    sight by having a window that shows only the window's worth, hiding
    what's above and below. (As you probably know, since attempting to
    cover text in a dynamic field with a mask causes all of it to
    disappear, that isn't an option.) The other night I felt I'd hit an
    impassable wall with Flash; in resigning myself to use the Dynamic
    Text field, I decided to cover the text overage with a translucent
    screen of color, and be it due to having no choice that it may, the
    desaturated stretches of text above and below would add ornament
    and atmosphere to the screen, a faintly techno note. Since there
    will often two to four of these scrolling fields going, an
    intricate, happenstance pattern would develop that might turn out
    to be nice.
    But if the avenue you've opened starts working, I'll have my
    choice between the two objects.
    Quantainne

  • HT201401 I am writing to bring to your attention a serious issue I had with your product. My brother  bought one iPhone 4, 16 gb mobile phone from US last year and gifted me in India. but it couldnt be serviced in India why ?

    Hi,
    I am writing to bring to your attention a serious issue I had with your product. My brother  bought one iPhone 4, 16 gb mobile phone from US last year and gifted me in India. In few months it had a problem with its home key. I took the phone to service service center and they told me that your phone is having hardware problem and as the phone is under warranty cannot be replace in India. You can come back when this is out of warranty. Now few days back when i walk again to the service center they stated that this phone we cannot repair here in India because of this phone purchased from US. 
    This a total disgraceful service from such a big brand like apple.
    I hope to hear back from you about this incident.
    Sincerely,
    Niranjan
    <Personal Information Edited by Host>

    No iPhone has a international warranty. Warranty is valid only in
    country of original purchase. Since iPhone was bought in the US,
    you must return the iPhone to the US. That means you must personally bring
    the iPhone to Apple in the US or send it to a friend/relative in the US for them
    to take to Apple. After replacement, your friend can ship it back to you. Shipping
    and insurance costs are your responsibility.
    Apple does not accept international shipments for evaluation/repair
    and will not ship replacements out of the country.

Maybe you are looking for