IPhone Delivery options

Hi, I live in Singapore and my wife lives in Bosnia and Herzegovina. I want to buy a iPhone for her and get it delivered to her place. but there is no online store in bosnia and i am not sure from which apple online store i can make a purchase and get it delivered to her. I want it to be a surprise to her so I can't let her buy one by herself.. can anyone help? or give me more information on how it can be done?

You can buy it on any online store like Amazon. I think they can ship anywhere in the world including in Bosnia and Herzegovina.

Similar Messages

  • Email Delivery Option - Simple TEXT Output is coming as an attachment

    Hi All,
    I am trying to use R12.1.3 feature "Delivery Option" while Submitting Concurrent Program "Payables Open Interface Import" using FND_SUBMIT with email Delivery Option and email is coming with an attachment (Concurrent Program Output).
    Email Body is blank (as expected if Output is coming as an attachment), as per documentation if CP Output is in TEXT Format then Email body should show the Output instead of an attachment.
    My Question, is if Output is TEXT why it is coming as an attachment, do I need to Configure something?
    I am using and it is working fine(not sure if any of the argument is required to Set "SMTP_CONTENT_TYPE",
    l_ret := fnd_request.add_delivery_option
    (type => FND_DELIVERY.TYPE_EMAIL
         ,p_argument1 => 'Quick Invoice to Workbench Transfer Details' -- Subject
         ,p_argument2 => '[email protected]' -- From
         ,p_argument3 => l_email_add -- To
         ,p_argument4 => '[email protected]'); -- CC
    In Java Based Concurrent Program example, I foudn this line, not sure how to do that using PL/SQL
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE, "application/pdf");
    Please Help.
    Regards
    Sachin

    Hello Kamath,
    Have you set PARAMETER6 to true or false?
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/add_burst_def.htm#CHEJDGAG
    Please send us your bursting query so we can check it.
    For more info on this, please review section 7.3 Adding a Bursting Definition to Your Data Model
    from Fusion Middleware Data Modeling Guide for Oracle Business Intelligence Publisher
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/add_burst_def.htm#BIPDM347
    Bogdan

  • I recently moved to Australia and received a new iphone with a local AUS number. I have a backup of my US iphone in the icloud. Question: when I activate my new AUS iphone which option should I choose - new phone or restore from backup?

    I recently moved to Australia and received a new iphone with a local AUS number. I have a backup of my US iphone in the icloud. Question: when I activate my new AUS iphone which option should I choose - new phone or restore from backup?  I would like to have all my contacts, email, etc. however wasn't sure that option was appropriate since it is a different/new number and a new phone.

    Yes, as new iPhone then restore from backup.

  • How to default Concurrent Program delivery options to Email.

    As of r12.1.3, we have a new button in concurrent request submission window called "Delivery Opts"
    Clicking that button opens up a new window with delivery options.   Second tab contains the Email option.
    I have a need where a concurrent program is submitted it should email the output  by default without needing to manually enter email details every time.
    I know that this can be done via scheduled concurrent requests. But in my case this concurrent program will be part of the shipping document set and will be submitted through the form and not SRS. 
    In concurrent program definition window under AOL,  we have ability to assign default printer, but we do not have any ability to assign default email functionality.   It would be nicer if we had one.
    That having said,  does any one know how to do this ?  How can I submit a concurrent program from a form and default to email option ?   Where would I control this setup?
    Please advise.
    Darsh

    you may not be able to do that by setup, but if you submit this request using pl/sql code you can do this
    please check example below
    DECLARE
    l_conc_id NUMBER;
    l_user_id NUMBER := xxx ; -- you can assign it from profile option value
    l_resp_id NUMBER := xxx ; -- you can assign it from profile option value
    l_resp_ppl_id NUMBER := xxx; -- you can assign it from profile option value
    l_boolean BOOLEAN;
    BEGIN
    l_boolean :=
    fnd_request.add_delivery_option (TYPE => 'E', -- this one to speciy the delivery option as Email
    p_argument1 => 'Testing the Email option from back end', -- subject for the mail
    p_argument2 => '[email protected]', -- from address
    p_argument3 => '[email protected]','[email protected]', -- to address
    p_argument4 => '', -- cc address to be specified here.
    nls_language => ''); -- language option);
    IF l_boolean = TRUE THEN
    FND_GLOBAL.APPS_INITIALIZE (l_user_id, l_resp_id, l_resp_ppl_id); -- intialize the apps.
    l_conc_id :=
    fnd_request.submit_request (application => 'FND',program => 'XXXXXXX', -- you concurrent program.
    start_time => SYSDATE,sub_request => FALSE);
    END IF;
    END;

  • Could not set reminder on my iphone, edit option is not coming

    could not set reminder on my iphone, edit option is not coming

    I have the same issue.  I don't have, or have never had any Exchange account on the ipad.  A simple yahoo email accout is the only one on it.   I have turned off all restrictions, and restarted several times.  Have yet to reset or restore, would just like to get rid of the passcode, but I can't......Thanks for any advice.

  • Passing Delivery option to child concurrent request

    hi, we have a concurrent request(parent) using SQL to call a new concurrent request (child),
    Since if we run the parant with email delivery option , the parent call the child to execute. But the email sent the parent output, we actually want the child's output.
    So I would like to ask can passing the delivery option from parent to child in the SQL?
    Any sample for references?
    Many thanks.

    user572941 wrote:
    I am using forms personalization to give the user the ability to submit a concurrent request from the 'Actions' menu of the form. I would like to be able to pass a field from the form to a parameter of the concurrent request. I know how to set a global variable using forms personalization. Does anyone know how I could use this variable as the default value for the parameter in the concurrent request? (e.g. The concurrent program uses PO number as a parameter - I'd like to be able to pass the PO number from the form to the concurrent request.)Please see if old threads (which discuss the same topic) help -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Forms+AND+personalization+AND+Parameter&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Question about file extension - using email delivery options in 12.1.3

    So, we had 12.1.1 and we have some existing XML Publisher reports.
    Now we've upgraded to 12.1.3, and there is a new option when running a concurrent request called "Delivery Options".
    This allows, among other things, to deliver the output to an email address.
    In testing this, I tried running a report that typically outputs to Excel....however when it sends the email (again, not using a bursting control file, but the delivery options in the concurrent request), the attachment comes over with an extension of .EXCEL instead of .XLS
    Does anyone know where I can change that extension?
    thanks!
    -jerry

    This seems to be a bug - pl see MOS Doc 1554605.1
    HTH
    Srini

  • Delivery Options Printer Custom Filter

    I am trying to invoke a custom print filter for a Printer Delivery Option and having trouble
    Filter: Customer Filter
    URI: IPP Printer IP address
    Filter Command: c:\mybatchfile.bat {infile} {outfile}
    When the contents of the batch file are
    copy %1 %2
    The file prints fine
    If a perl program is called to alter the output
    as in
    perl alteroutput.pl %1 %2
    The report just has a status of running
    and the Document Process says "Not Started".
    I cant find anything in a log.
    Please help
    Thank You

    Solved
    We had "print" debugging statements in perl script.
    We removed all of these and works fine.

  • Mail delivery option not working as expected

    Hi Jay,
    I am running MS 6.0p1. I am using Sun ONE Delegated Administrator for Messaging and Collaboration
    Version 1.2P2 to create and maintain mailboxes.
    I have a need to run a program when mail is sent to a certain mailbox, so I created the mailbox and went into the Mail Delivery Options screen, checked the "Enable the following programs" checkbox, and put the full path to the command in the box. When I tried to send a message to the specified address, it bounced.
    Thinking that there was something wrong with the program itself, I tried to simplify the test by setting the program to "/bin/false", but that still bounced.
    Here is the LDAP entry for the mailbox in question:
    dn: uid=test, ou=people, o=qisc.com,o=q
    objectClass: top
    objectClass: person
    objectClass: organizationalPerson
    objectClass: inetOrgPerson
    objectClass: inetUser
    objectClass: ipUser
    objectClass: nsManagedPerson
    objectClass: userPresenceProfile
    objectClass: inetMailUser
    objectClass: inetLocalMailRecipient
    mail: [email protected]
    mailUserStatus: active
    dataSource: NDA 4.5 Delegated Administrator
    mailHost: quixote.qisc.com
    givenName: Test
    cn: Test Program
    uid: test
    nsdaCapability: mailListCreate
    sn: Program
    preferredLanguage: en
    inetUserStatus: active
    userPassword: {SSHA}value deleted==
    mailDeliveryOption: program
    mailProgramDeliveryInfo: /bin/falseWhen I send mail to this address, here's the bounce message:
    Your message cannot be delivered to the following recipients:
      Recipient address: test%/bin/false@pipe-daemon
      Original address: [email protected]
      Reason: Address not found in database
    Reporting-MTA: dns;quixote.qisc.com (pipe-daemon)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;test%/bin/false@pipe-daemon
    Action: failed
    Status: 5.0.0 (Address not found in database)What am I doing wrong?
    Thanks,
    Bill

    As it turns out, setting this up was simple, one I figured out the "imsimta program" thing.
    Here's what I did to get this working.
    1. Created the following shell script named "deliver-listserv" in the /var/opt/SUNWmsgsr/site-programs directory:
    #!/bin/ksh
    #       Script to invoke the LISTSERV lsv_amin command when a
    # message is sent to a mailing list.
    LISTSERV_HOME=~listserv
    LSV_AMIN=$LISTSERV_HOME/bin/lsv_amin
    SPOOL_DIR=$LISTSERV_HOME/spool
    listAddress=$1
    listAddress=${listAddress%+listserv}
    if [ "$listAddress" = "" ];then
            exit 1
    fi
    exec $LSV_AMIN $SPOOL_DIR $listAddress2. Set the permissions of the above script to 755.
    3. Added this program to the list of approved programs using the imsimta program command:
    imsimta program -a -m listserv -p deliver-listserv -e postmaster -g "%s"4. For each list in question, created a mailbox for all of the addresses required by LISTSERV (in this case, test, owner-test, test-request, test-search-request, test-server, test-signoff-request, and test-subscribe-request).
    5. For each of the mailboxes created in #5, set the mail delivery options to run the message using the listserv method defined in #3 by checking the "Enable the following programs" checkbox and specifying "listserv" in the command text box. This sets the following attributes in the mailbox's LDAP entry:
    mailDeliveryOption: program
    mailProgramDeliveryInfo: listservThat's all it takes. Since I specified the "-g" option to supply the username when the program is called, the string "test+listserv" is passed to my script, where I simply strip off the "+listserv" and then invoke the lsv_amin program to handle the delivery. Darned if it didn't work on the first try!
    Bill

  • Why I cannot disable the security passcode on my iphone the option is not available?

    why I cannot disable the security passcode on my iphone the option is not available?

    I have the same issue.  I don't have, or have never had any Exchange account on the ipad.  A simple yahoo email accout is the only one on it.   I have turned off all restrictions, and restarted several times.  Have yet to reset or restore, would just like to get rid of the passcode, but I can't......Thanks for any advice.

  • I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    Hi howardw93055634,
    Please tell me where you are seeing this error message. It's not one that I'm familiar with as being related to Acrobat or Reader. Is it coming from your online fax service, or does it appear when you try to open the PDF file that you received in Acrobat or Reader?
    Best,
    Sara

  • How to restore iphone using option 1(restoring iphone to existing software!

    Does anyone know how I can restore my iphone using Option 1. When I tried. I was not given the 4 options to choose from and I do not want to restore to the latest version 3 since I heard that there are some incompatibility issue.
    See:
    Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software available.
    Restore Option 4: Restore and Update - Restores with the latest iPod Software available.

    Those options don't exist for the iPhone. You can only restore to the most recent version (without doing some acrobatics outside of iTunes).
    But the overwhelming majority of iPhone users have no problems with 3.0, and the few that do can almost always fix it. But the ones who can't are naturally (and justifiably) quite vocal.

  • Poor delivery options

    I sent a gift to my neice, expedited by the way, and because she was at school and could not be home to sign for it, UPS said they won't re-deliver it until Monday, when she will be back at school again.  Best Buy customer service says "sorry we cannot change any delivery options", such as picking it up at UPS or not requiring a signature.  Looks like I won't be buying anything from them online again. Sorry!

    Greetings markrjinlv,
    It was very kind of you to purchase a gift for your niece! I’m sure she is very excited to receive it. It is regretful to hear that UPS is only able to deliver the package while she is unavailable.
    After a 3rd failed delivery attempt, UPS will typically send the package back to the original sender. In that case, once it is received, the order will be returned and refunded. In cases in which shipping to a home is not an option, we offer Store Pickup, which allows the order to be fulfilled in stores. For most items, we even offer friends and family pickup as long as it is added during the checkout.
    Unfortunately, at this time we will not be able to modify the fulfillment method and we do not allow for packages to be held at UPS locations. I sincerely apologize for any inconvenience this may cause you. If you should have any questions, please feel more than welcome to reach out to me.
    Regards, 
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Available HTTP delivery options for Flash Access encrypted content

    Dear colleagues,
    Could you please clarify available HTTP delivery options for Flash Access encrypted content.
    Standard HTTP DS scheme with Apache web server getting chunks of video from segmented with f4fpackager file.
    HTTP Progressive Download of encrypted with Flash Access file (non segmented).
    Is it possible to use byte range delivery in this case in order to start playback from custom position (seek)?
    Are there any pitfalls in this case? Is it required to make encryption blocks aligned with keyframe intervals or something like that?

    Thanks for your response, seems though that only the encrypted videos appear to have a problem because when I tried some un-encrypted videos (again from adobe http://drmtest.adobe.com/content/unencrypted/Indesign.f4v ) it played fine.
    Maybe is has something to do with the decryption process and the hardware of the mobile phone after all.
    Again thanks for your response.

  • Delivery Options previously available on AdobeSendNow not available on Adobe Send...Why?

    On AdobeSendNow one had the following delivery options :
    Sign in to access
    Delivery receipts
    Limit downloads to x number of days
    Custome branding
    These options do not appear with AdobeSend.
    Why is this?

    Because when software providers update and change their software they often go about it in a way that ensures what they had before was much more useful then their new version. I have no idea why this happens other than IT employees like changing things for no reason.

Maybe you are looking for

  • Step by step installation for java card kit 2.2.2

    can anyone help me with a complete step by step installation information for java card kit 2.2.2, i already tried to follow the instruction given in the software i download n still stuck in setting the java path. any recommendation thanks for the hel

  • Home sharing is not working across my network since ios 6 and iTunes upgrades. Any ideas?

    I have updated my IPhone 4, ipad 2, and atv2 to ios6 and my win7 pc to the latest iTunes. I have just noticed homesharing is not working on any devices. I have tried the usual disable re enable etc to no avail. Any help is appreciated.

  • Table Header not getting repeated in subsequent pages

    Hi, I have a table and i want to table header to be repeated in subsequent pages but only till 2nd page the table header is repeated from the 3rd page onwards the table header is not repeated. I have selected the Header Row in hierarchy and in Pagina

  • DVD/BD Quality Tradeoff for source movie from SVHS

    I imported a 2.5 GB MP4 home movie into Elements 12 on my Mac.  The original source was a SVHS home movie from over 10 years ago.  I had encoded it to MP4 using a third party application/cable.  I did no editing in PE, just had it add the automatic c

  • 'System Error' when trying to save Form Manager Registry Settings

    Hi, trying to save changes made in the form manager registry settings [Home > Services > Adobe LiveCycle Form Manager > Registry Settings (http://localhost:8080/FormManagerAdmin/registry-cfg-load)], I get an error, which reads: > System Error > The r