HT201209 Help needed to Redeem an app

Hi, I'm brand new to Apple iPad. I was given three iPad cards worth $10.00 each. Someone helped me redeem a couple apps but I cannot remember how to do it. I'm showing $17.04 credit under my Apple ID. When I select the app that I want,"in this case Numbers", I scroll to the bottom of (Featured) and click Redeem, I'm prompted to enter the code.
I know I'm doing something stupid. I clicked buy on a couple apps and it was charged to my credit card. I can't afford that especially when this is work related. Can you please help me with this?
Thank You,
Mike Morris
<Personal Information Edited by Host>

You only use the "Redeem" if you've been given the gift of that specific app and have a code to redeem. If you wish to buy an app using your credit balance, going through the normal "buy" process usually works. Assuming you were not buying a gift for someone else - gifts cannot be purchased using a credit balance - another user in the forums posted the information I quote below as the reply from the iTunes Store when this issue was brought up. Perhaps it will help you. If problems persist, contact the iTunes Store:
http://www.apple.com/emea/support/itunes/contact.html
Regards. 
I'm sorry you weren't able to make a purchase using your store credit. To purchase items on the iTunes Store with your store credit, your account information in your user profile needs to be corrected. I'll walk you through this process to get you back up and running in no time. 
1) Visit the My Apple ID website at:  http://appleid.apple.com 
2) If the site is not displayed in your preferred language, click the Change Language link in the upper-right corner, type the name of your language in the field that appears, then click the Save button. 
3) Click the "Manage your account" link. 
4) Type your iTunes Store account name (which is your Apple ID) in the Apple ID field, type your password in the password field, then click the Sign In button. 
5) Click "Addresses" in the column on the left. If you have multiple shipping addresses, remove any out-of-date or duplicate addresses by clicking Delete. Also, make sure the state or province field is filled out correctly for each address. To edit an address, click Edit. Edit all of your shipping addresses and make sure the appropriate state is selected in the State drop-down menus. 
6) Now click "Phone Numbers" on the left. The area codes should be in the area code fields and the phone numbers should be in the phone number fields. If an area code is missing, or if it is in a phone number field, your account information may not save properly. 
7) Make any other necessary corrections, then click the Save Changes button. 
8) Click Log out in the upper-right corner.  When you make your next purchase on the iTunes Store, you will be asked to review your billing information. At this point, you can change your information or simply click Done at the bottom of the screen to proceed. Once you click Done, you should be able to purchase on the iTunes Store using your store credit. 

Similar Messages

  • Help needed abou SNAPit SEEit app

    Dear all
    I have Lenovo s 580,I need to install SNAPit app for camera as the stock can app sucks, so any help please

    Hi Moustafa
    Did you contact Lenovo dedicated support as I previously recommended?
    Regards.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as ''ACCEPT AS SOLUTION"! 
    Unsolicited PM's will not be answered! ....Please post your question/s in the appropriate forum board.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • HT201209 Please help, tried to redeem an App Store gift card for $15.00.  It worked when I put it in earlier but I was still charging purchases to my credit card.  I did not see how to switch over to the gift card.  Credit is gone and code now invalid.  W

    I need help with redeeming a $15 App Store certificate.  I tried to redeem earlier in the day and it was credited to my account.  I could not figure out how to switch payment from my credit card to the gift card credit.  Later on in the day I see the credit is completely gone and now the card is invalid.  Nothing was purchased with the gift card so I want to know where the credit went.  I also have$5 credited to my Apple ID from a past gift card that I can't access.  What can I do.  Is there a customer service number???

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Code troubleshooting help needed - buttons spawning 2 apps

    Hi,
    I'm trying to do a question out of my Java text book and I'm a little confused why its not working correctly. There's 2 buttons on a frame that when clicked start the app behind them... one is a basic calculator, the other is a little applet to compute a mortgage. The second button is not reacting like the first does AND the Mortgage applet behind that button does not start-up properly... the box opens but nothing in the frame is visible.
    The first thing I need to be explained is that in the Mortgage section why I can't change it into an application from an applet without receiving an error. On my separate Mortgage applet (standalone) I switched it from applet to application by adding the following:
      public static void main(String[] args) {
         //create a frame
         JFrame frame = new JFrame (
              "Running a program as applet and frame");
         //create an instance of MortgageApplet
         MortgageApplet applet = new MortgageApplet();
         //add the applet instance to the frame
         frame.getContentPane().add(applet, BorderLayout.CENTER);
         //invoke init and start
         applet.init();
         applet.start();
         //display the frame
         frame.setSize(300, 300);     
         frame.setVisible(true);
         }But when I add that code to this exercise with the 2 buttons kicking the 2 sub apps off I get the following error...
    Exercise12_17.java:130: cannot resolve symbol
    symbol  : method start ()
    location: class MortgageApplet
            applet.start();So because of that I have that section of the code commented out below.... I copied that straight from my book and[b] it works when its standalone but not within this bigger app I'll paste below.
    The second thing I need explained is why does the second button not behave like the first button...
    If you click the first button it starts the calculator and then shows a "hide calculator" button to hide the calculator application. And if you click that hide button you return to the original menu with the 2 buttons (Calc & Mortgage) to choose from. But if you click the Mortgage button it brings up the Mortgage app (which currently is not working correctly in here) BUT does not show me the "Hide Mortgage" button... it jumps to the "Simple Calculator" button.
    My assumption is it has something to do with the If-Else if actionPerformed argument I have in the code below but I'm not entirely sure.
    Does anyone have answers to me 2 questions??...
    (1) do I need to change the mortgage applet to application & why am I getting that error when trying to do so? ...... and ......
    (2) why does my 2nd button on the main menu not get the "hide mortgage" button after starting the mortgage app & how would I correct it? (I assume that if I solve problem #1 it'll spawn the app correctly in part 2 when it starts).
    Any help would be greatly appreciated... thank you. :-)
    Rob
    -------------------------entire app below--------------------
    // Exercise12_17.java: Create multiple windows - Simple Calc & MortgageApplet
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.TitledBorder;
    public class Exercise12_17 extends JFrame implements ActionListener {
      // Declare and create a frame: an instance of MenuDemo
      MenuDemo calcFrame = new MenuDemo();
      // Declare and create a frame: an instance of MortgageApplet
      MortgageApplet mortgageAppletFrame = new MortgageApplet();
      // Declare two buttons for displaying frames
      private JButton jbtCalc;
      private JButton jbtMortgage;
      public static void main(String[] args) {
        Exercise12_17 frame = new Exercise12_17();
        frame.pack();
        frame.setTitle("Exercise 12.17: Multiple Windows Demo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
      public Exercise12_17() {
        // Add buttons to the main frame
        getContentPane().setLayout(new FlowLayout());
        getContentPane().add(jbtCalc = new JButton("Simple Calculator"));
        getContentPane().add(jbtMortgage = new JButton("Mortgage"));
        // Register the main frame as listener for the buttons
        jbtCalc.addActionListener(this);
        jbtMortgage.addActionListener(this);
      public void actionPerformed(ActionEvent e) {
        String arg = e.getActionCommand();
        if (e.getSource() instanceof JButton)
          if ("Simple Calculator".equals(arg)) {
            //show the MenuDemo frame
            jbtCalc.setText("Hide Simple Calculator");
            calcFrame.pack();
            calcFrame.setVisible(true);
          else if ("Hide Simple Calculator".equals(arg)) {
            calcFrame.setVisible(false);
            jbtCalc.setText("Simple Calculator");
          else if ("Mortgage".equals(arg)) {
            //show the Mortgage frame
            mortgageAppletFrame.pack();
            jbtMortgage.setText("Hide Mortgage");
            mortgageAppletFrame.setVisible(true);
          else if ("Mortgage".equals(arg)) {
            mortgageAppletFrame.setVisible(false);
            jbtMortgage.setText("Mortgage");
      class MortgageApplet extends JFrame implements ActionListener {
      // Declare and create text fields for interest rate
      // year, loan amount, monthly payment, and total payment
      private JTextField jtfAnnualInterestRate = new JTextField();
      private JTextField jtfNumOfYears = new JTextField();
      private JTextField jtfLoanAmount = new JTextField();
      private JTextField jtfMonthlyPayment = new JTextField();
      private JTextField jtfTotalPayment = new JTextField();
      // Declare and create a Compute Mortgage button
      private JButton jbtComputeMortgage = new JButton("Compute Mortgage");
      /** Initialize user interface */
      public void init() {
        // Set properties on the text fields
        jtfMonthlyPayment.setEditable(false);
        jtfTotalPayment.setEditable(false);
        // Right align text fields
        jtfAnnualInterestRate.setHorizontalAlignment(JTextField.RIGHT);
        jtfNumOfYears.setHorizontalAlignment(JTextField.RIGHT);
        jtfLoanAmount.setHorizontalAlignment(JTextField.RIGHT);
        jtfMonthlyPayment.setHorizontalAlignment(JTextField.RIGHT);
        jtfTotalPayment.setHorizontalAlignment(JTextField.RIGHT);
        // Panel p1 to hold labels and text fields
        JPanel p1 = new JPanel();
        p1.setLayout(new GridLayout(5, 2));
        p1.add(new Label("Annual Interest Rate"));
        p1.add(jtfAnnualInterestRate);
        p1.add(new Label("Number of Years"));
        p1.add(jtfNumOfYears);
        p1.add(new Label("Loan Amount"));
        p1.add(jtfLoanAmount);
        p1.add(new Label("Monthly Payment"));
        p1.add(jtfMonthlyPayment);
        p1.add(new Label("Total Payment"));
        p1.add(jtfTotalPayment);
        p1.setBorder(new TitledBorder("Enter interest rate, year and loan amount"));
        // Panel p2 to hold the button
        JPanel p2 = new JPanel();
        p2.setLayout(new FlowLayout(FlowLayout.RIGHT));
        p2.add(jbtComputeMortgage);
        // Add the components to the applet
        getContentPane().add(p1, BorderLayout.CENTER);
        getContentPane().add(p2, BorderLayout.SOUTH);
        // Register listener
        jbtComputeMortgage.addActionListener(this);
      //*********ADDED THIS SECTION below TO MAKE APPLET AN APPLICATION***********
    //  public static void main(String[] args) {
         //create a frame
    //     JFrame frame = new JFrame (
    //          "Running a program as applet and frame");
         //create an instance of MortgageApplet
    //     MortgageApplet applet = new MortgageApplet();
         //add the applet instance to the frame
    //     frame.getContentPane().add(applet, BorderLayout.CENTER);
         //invoke init and start
    //     applet.init();
    //     applet.start();
         //display the frame
    //     frame.setSize(300, 300);     
    //     frame.setVisible(true);
      //*********ADDED THIS SECTION above TO MAKE APPLET AN APPLICATION***********
      /** Handle the "Compute Mortgage" button */
      public void actionPerformed(ActionEvent e) {
        if (e.getSource() == jbtComputeMortgage) {
          // Get values from text fields
          double interest = (Double.valueOf(
            jtfAnnualInterestRate.getText())).doubleValue();
          int year =
            (Integer.valueOf(jtfNumOfYears.getText())).intValue();
          double loan =
            (Double.valueOf(jtfLoanAmount.getText())).doubleValue();
          // Create a mortgage object
          Mortgage m = new Mortgage(interest, year, loan);
          // Display monthly payment and total payment
          jtfMonthlyPayment.setText(String.valueOf(m.monthlyPayment()));
          jtfTotalPayment.setText(String.valueOf(m.totalPayment()));
    class MenuDemo extends JFrame implements ActionListener {
      // Text fields for Number 1, Number 2, and Result
      private JTextField jtfNum1, jtfNum2, jtfResult;
      // Buttons "Add", "Subtract", "Multiply" and "Divide"
      private JButton jbtAdd, jbtSub, jbtMul, jbtDiv;
      // Menu items "Add", "Subtract", "Multiply","Divide" and "Close"
      private JMenuItem jmiAdd, jmiSub, jmiMul, jmiDiv, jmiClose;
      /** Main method */
      public void main(String[] args) {  //Change-was public static void main(String[] args)
        MenuDemo frame = new MenuDemo();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
      /** Default constructor */
      public MenuDemo() {
        setTitle("Menu Demo");
        // Create menu bar
        JMenuBar jmb = new JMenuBar();
        // Set menu bar to the frame
        setJMenuBar(jmb);
        // Add menu "Operation" to menu bar
        JMenu operationMenu = new JMenu("Operation");
        operationMenu.setMnemonic('O');
        jmb.add(operationMenu);
        // Add menu "Exit" in menu bar
        JMenu exitMenu = new JMenu("Exit");
        exitMenu.setMnemonic('E');
        jmb.add(exitMenu);
        // Add menu items with mnemonics to menu "Operation"
        operationMenu.add(jmiAdd= new JMenuItem("Add", 'A'));
        operationMenu.add(jmiSub = new JMenuItem("Subtract", 'S'));
        operationMenu.add(jmiMul = new JMenuItem("Multiply", 'M'));
        operationMenu.add(jmiDiv = new JMenuItem("Divide", 'D'));
        exitMenu.add(jmiClose = new JMenuItem("Close", 'C'));
        // Set keyboard accelerators
        jmiAdd.setAccelerator(
          KeyStroke.getKeyStroke(KeyEvent.VK_A, ActionEvent.CTRL_MASK));
        jmiSub.setAccelerator(
          KeyStroke.getKeyStroke(KeyEvent.VK_S, ActionEvent.CTRL_MASK));
        jmiMul.setAccelerator(
          KeyStroke.getKeyStroke(KeyEvent.VK_M, ActionEvent.CTRL_MASK));
        jmiDiv.setAccelerator(
          KeyStroke.getKeyStroke(KeyEvent.VK_D, ActionEvent.CTRL_MASK));
        // Panel p1 to hold text fields and labels
        JPanel p1 = new JPanel();
        p1.setLayout(new FlowLayout());
        p1.add(new JLabel("Number 1"));
        p1.add(jtfNum1 = new JTextField(3));
        p1.add(new JLabel("Number 2"));
        p1.add(jtfNum2 = new JTextField(3));
        p1.add(new JLabel("Result"));
        p1.add(jtfResult = new JTextField(4));
        jtfResult.setEditable(false);
        // Panel p2 to hold buttons
        JPanel p2 = new JPanel();
        p2.setLayout(new FlowLayout());
        p2.add(jbtAdd = new JButton("Add"));
        p2.add(jbtSub = new JButton("Subtract"));
        p2.add(jbtMul = new JButton("Multiply"));
        p2.add(jbtDiv = new JButton("Divide"));
        // Add panels to the frame
        getContentPane().setLayout(new BorderLayout());
        getContentPane().add(p1, BorderLayout.CENTER);
        getContentPane().add(p2, BorderLayout.SOUTH);
        // Register listeners
        jbtAdd.addActionListener(this);
        jbtSub.addActionListener(this);
        jbtMul.addActionListener(this);
        jbtDiv.addActionListener(this);
        jmiAdd.addActionListener(this);
        jmiSub.addActionListener(this);
        jmiMul.addActionListener(this);
        jmiDiv.addActionListener(this);
        jmiClose.addActionListener(this);
      /** Handle ActionEvent from buttons and menu items */
      public void actionPerformed(ActionEvent e) {
        String actionCommand = e.getActionCommand();
        // Handle button events
        if (e.getSource() instanceof JButton) {
          if ("Add".equals(actionCommand))
            calculate('+');
          else if ("Subtract".equals(actionCommand))
            calculate('-');
          else if ("Multiply".equals(actionCommand))
            calculate('*');
          else if ("Divide".equals(actionCommand))
            calculate('/');
        else if (e.getSource() instanceof JMenuItem) {
          // Handle menu item events
          if ("Add".equals(actionCommand))
            calculate('+');
          else if ("Subtract".equals(actionCommand))
            calculate('-');
          else if ("Multiply".equals(actionCommand))
            calculate('*');
          else if ("Divide".equals(actionCommand))
            calculate('/');
          else if ("Close".equals(actionCommand))
            System.exit(0);
      /** Calculate and show the result in jtfResult */
      private void calculate(char operator) {
        // Obtain Number 1 and Number 2
        int num1 = (Integer.parseInt(jtfNum1.getText().trim()));
        int num2 = (Integer.parseInt(jtfNum2.getText().trim()));
        int result = 0;
        // Perform selected operation
        switch (operator) {
          case '+': result = num1 + num2;
                    break;
          case '-': result = num1 - num2;
                    break;
          case '*': result = num1 * num2;
                    break;
          case '/': result = num1 / num2;
        // Set result in jtfResult
        jtfResult.setText(String.valueOf(result));
    }

    Okay here is the fixed code... I commented the changes...
    basically I changed public void init() to public MortgageApplet() so that the section is a contructor not a method. ( since this class no longer extends Applet, public void init() becomes a method called "init" which has no relation to Applets' init method...)
    Then I move most of the variable declarations in the contructor ( formally the init() method ) and declared them as class variables... then initialized them in the construtor "MortgageApplet()"
    And now the second button works and you can see the MortgageApplet with textfields and buttons...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.TitledBorder;
    class MortgageApplet extends JFrame implements ActionListener {
       // Made all these class variable, originally they were under public void init()
       private JTextField jtfAnnualInterestRate;
       private JTextField jtfNumOfYears;
       private JTextField jtfLoanAmount;
       private JTextField jtfMonthlyPayment;
       private JTextField jtfTotalPayment;
       private JButton jbtComputeMortgage;
       JPanel p1,p2;
       // end variable declaration
       public MortgageApplet() {    // originally was public void init() so it thought is was a method
                                    // now it is a contructor...
          jtfAnnualInterestRate = new JTextField();
          jtfNumOfYears = new JTextField();
          jtfLoanAmount = new JTextField();
          jtfMonthlyPayment = new JTextField();
          jtfTotalPayment = new JTextField();
          jbtComputeMortgage = new JButton("Compute Mortgage");
          jtfMonthlyPayment.setEditable(false);
          jtfTotalPayment.setEditable(false);
          jtfAnnualInterestRate.setHorizontalAlignment(JTextField.RIGHT);
          jtfNumOfYears.setHorizontalAlignment(JTextField.RIGHT);
          jtfLoanAmount.setHorizontalAlignment(JTextField.RIGHT);
          jtfMonthlyPayment.setHorizontalAlignment(JTextField.RIGHT);
          jtfTotalPayment.setHorizontalAlignment(JTextField.RIGHT);
          // JPanel p1 and p2 declared as class variables
          p1 = new JPanel();
          p1.setLayout(new GridLayout(5, 2));
          p1.add(new Label("Annual Interest Rate"));
          p1.add(jtfAnnualInterestRate);
          p1.add(new Label("Number of Years"));
          p1.add(jtfNumOfYears);
          p1.add(new Label("Loan Amount"));
          p1.add(jtfLoanAmount);
          p1.add(new Label("Monthly Payment"));
          p1.add(jtfMonthlyPayment);
          p1.add(new Label("Total Payment"));
          p1.add(jtfTotalPayment);
          p1.setBorder(new TitledBorder("Enter interest rate, year and loan amount"));
          p2 = new JPanel();
          p2.setLayout(new FlowLayout(FlowLayout.RIGHT));
          p2.add(jbtComputeMortgage);
          getContentPane().add(p1, BorderLayout.CENTER);
          getContentPane().add(p2, BorderLayout.SOUTH);
          setVisible(true);  // added this also...
          /* the rest is the same - MaxxDmg...*/
          // Register listener
       jbtComputeMortgage.addActionListener(this);  }
       /** Handle the "Compute Mortgage" button */
       public void actionPerformed(ActionEvent e) {
          if (e.getSource() == jbtComputeMortgage) {
             // Get values from text fields
             double interest = (Double.valueOf(
             jtfAnnualInterestRate.getText())).doubleValue();
             int year =(Integer.valueOf(jtfNumOfYears.getText())).intValue();
             double loan =(Double.valueOf(jtfLoanAmount.getText())).doubleValue();
             // Create a mortgage object
             Mortgage m = new Mortgage(interest, year, loan);
             // Display monthly payment and total payment
             jtfMonthlyPayment.setText(String.valueOf(m.monthlyPayment()));
             jtfTotalPayment.setText(String.valueOf(m.totalPayment()));
    }Have fun...
    - MaxxDmg...
    - ' No Side '

  • Help needed with building Flex App without FlexBuilder

    Hi Guys,
    I was building my application on Struts framework with JSPs
    as the front end. I just got a new requirement to try and build my
    application's GUI with Flex (completely replacing JSPs). I cannot
    use FlexBuilder as my company won't buy it. I've been trying to dig
    through all articles and documentation to find out how to write
    MXML files and compile them without a FlexBuilder. I have learnt
    that I can write MXML files using plain notepad, but I am totally
    lost when it comes to understanding how to compile my MXML files
    with FlexBuilder. I know about the ant compiler and web compiler
    but How do I use them? I want to use the web compiler but how can I
    configure the Web Compiler to compile my MXML files when I run my
    app? Can someone kindly help me out.
    Thank You,
    TNJ

    You can use mxmlc to compile your mxml files into swfs.
    Google for mxmlc and there should be plenty information.

  • Help Needed...Oracle Apps Inventory

    Hi,
    I am new to this forum. My email id is [email protected]
    I need some help in inventory module
    1)Mult-org
    2)Item Setup
    3)All inventory Setups.
    Can you guide be so that I could be knowledgable in this module.
    Thanks in advance,
    sandra

    Inventory is an item referential and it also allows stock replenishment.
    There is no ‘standard’ flow for using Inventory.
    You will find all setup instructions in document that Vinod Subramanian sent to you. I mean : Organization definition, Item definition, Subinventory definition, Stock definition …
    Basic steps for item creation :
    -     check the pre-requisites (organization must be defined …). You must have at least one master organization (it is your item referential). Item type must exist. You have to define at which level (Master or Organization ) item attributes are defined …
    -     Then you create your item in the Master organization.
    -     After that, you can assign item to one or several organization
    Then, Inventory management depends on the business of your company : do you manage stored items or not; if yes, how do you manage replenishment ? ….
    If you need more help, please ask precise questions and you will get all information you need.

  • Help need to put in app to different ipod

    hi i downloaded the call of duty game for my friend as a surprise birthday present but it said for me to put on the game it has to sync all the other apps out or something anyway i can bypass this i dont want to delete all of his apps to put in the game i bought

    Too bad you DL'd it using your ituens store account.
    The only way to give it now, is to put it on his PC and authorize his PC for your itunes store account.
    By that I mean, copy the call of duty IPA file over to his PC using a USB stick. Or get on his PC and download it again for free after you have signed into the itunes store with your account.

  • HELP NEEDED ON BUILDING HTMLDB APP

    Hello,
    I am very new to HTMLDB and building an application. I have the HTML already developed using Macromedia and I have some styles and Javascripts, I would like to use this piece of HTML and HTMLDB's functionality,
    The first thing I wanna do is I want to create a login for users of my site, I have many questions here, would appreciate if someone can answer me,
    1. I would prefer using the login process from the sample application, but at the same time, my application would require concepts like users mapped to groups, that I create and only people in certain groups should be able to see certain pages or links, is it better to use HTMLDB's admin or should I create a custom process? would appreciate if someone can point me on a doc or help to implement the login process with custom html page.
    2. Where will I input all my CSS, UI images, and what would the src to the files be in html if I upload the same using HTMLDB, I know its done some where but not able to figure out,
    3. Would really be great, if someone can first get me started with rendering an HTML page with above criterias and it would be awsome if I can have a login page working. Thanks

    Hello,
    Take a look at the howtos section
    http://www.oracle.com/technology/products/database/application_express/howtos/index.html
    or the studio
    http://htmldb.oracle.com/pls/otn/f?p=18326:1
    or the wiki
    http://wiki.shellprompt.net/bin/view/Apex/
    or the Oracle By Example
    http://www.oracle.com/technology/obe/obe10gdb/develop/htmldb/htmldb.htm
    There's quite a bit of info out there that should help get you going in the right direction.
    For your second question it how you link in your files depends if you have access to the filesystem or not. If you have access to the filesystem it's usally somethign like #IMAGE_PREFIX#, if you've uploaded through the UI it's either #WORKSPACE_IMAGES# or #APP_IMAGES# followed by the image name.
    Carl

  • Help needed with Trigger - ORACLE APPS OM

    Hi,
    I am trying to place a hold on order if the status become 'BOOKED'. The actual problem is we are getting orders from outside oracle with status code 'BOOKED' when they comes to oracle first they are getting inserted with 'ENTERED' status and after that they are getting update with 'BOOKED' seamlesly by oracle workflow. Our requirement is to get the final status and apply hold once they become 'BOOKED'. i have writen after insert trigger but it is getting failed as initially they were loading with status code 'ENTERED'. i have written update trigger but that is also not not getting picked up.Please help me.....
    Best Regards
    Ram

    Created a update trigger on oe_order_headers_all
    create a concurrent program "SSSSSSS" with pl/sql program as executable
    i have used Order Hold API inside the procedure
    Called above concurent program using fnd_request.submit_request inside the trigger
    commit
    make sure while definig your update trigger it should be pragma autonomous transaction
    reply me if you have any doubts

  • HT201209 Hey guy I need to help please set balance my app id = 0

    I need to change location my id but I can't make because I have  point
    In store please help me set my point app id to null thk
    <Subject Edited by Host>

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • I have tried everything I know to retrieve the iPhoto Library app.  I detest this new Photo app, which obviously wasn't designed with photographers in mind.  I desperately need help in retrieving the old app and have not been able to do it so far.

    I have tried everything I know to retrieve the iPhoto Library app.  I detest this new Photo app, which obviously wasn't designed with photographers in mind.  I desperately need help in retrieving the old app and have not been able to do it so far.  I have gone to my app folder and tried to update my iPhoto Library.  I have gone to my trash and brought it over to my desktop and still cannot use it.  Please help!

    Try this fix discovered by User photosb189:
    From Finder, hold down the option key on your keyboard and click on the Go menu at the top of the screen
    Select Library from the drop down menu
    Then navigate to Application Support > iLifeAssetManagement > assets
    Right click on the 'sub' folder and choose Compress
    Drag the resulting zip file to your Desktop (as a backup)
    Go to your System Preferences and choose iCloud
    Turn OFF the iCloud Photos option
    Go back to Library > Application Support and DELETE the iLifeAssetManagement folder
    Now, in System Preferences, turn the iCloud Photos option ON
    iPhoto should now be able to launch. Give it enough time to re-download your Photo Stream content. if you are missing any of your My Photo Stream photos (more than 30 days old), unzip the sub folder on your desktop and drag that into iPhoto.

  • HT3702 I am unable to add my bank/card details in my apple account, every time i am getting a message that it has been declined. kindly help me in authorise my bank card in my apple account i need to purchase few apps, pls help me

    Hi,
    I am unable to add my bank/card details in my apple account, every time i am getting a message that it has been declined. kindly help me in authorise my bank card in my apple account i need to purchase few apps, pls help me

    What sort of card are you trying to use ? If it's a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management

  • HT1338 Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help neede

    Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help needed !

    Hello:
    I would trot back into the Apple store and have them fix the problem (or call Applecare with a warranty issue).  There is no sense in you wasting your time trying to troubleshoot things on a new computer.
    Barry

  • Guys i need to get m itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    guys i need to get my itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    If you've tried to buy something and your've been charged for it (and it's not a temporary store holding charge) but haven't received it then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for

  • Now all CS4 applications will not launch

    I have been working with cS4 for sometime now. I worked in dreamweaver last night and tried to open a file but it took forever so I tried to force quit  it. Still it was not responding so I shut my computer down and waited for 30 minutes. I tried to

  • Authorization BI 2004s  : restricting access to infoproviders in multi prov

    Hi I have a multiprovider that contains 5 DSOs. Is there a way I can setup security such that user 1 has access to all 5 DSOs, however user 2 has access to only 2 DSOs. Thus, when user 1 runs a report off the multiprovider, they will have access to d

  • Oracle XML source code

    Does Oracle plan to make the XML parser source code available to developers any time in the (near!!) future? Donald Wheeler null

  • Slow work after update to 10.6

    Hello. I have macmini 2.1 Core Duo 1.8 GHz 1 GB Ram. Earlier macmini worked on OS 10.5, but i needed 10.6 Macmini work in Domain Windows 2008 R2. After upgrade to 10.6.8 sometimes i have slow work during login, open separate menu in General Setting.

  • Cursor does not change with tool selection

    Has anybody experienced this?  My cursor suddenly does not change with the selection of tools when working on photos.  Once I roll over the picture the arrow is lost and becomes a strange 3 small things, so can't do any work accurately.  Still using