Is there any alternative way to access controls of views from controller?

For Example
I can access TextBox of View from controller like this
sap.ui.getCore().byId("txtBox1").setEnabled(true);
and By passing Parameter.
Can anyone please tell if there is any alternative way to do it..?

Hi Rama,
I tried, But its not working,Am getting Error like this
Uncaught TypeError: undefined is not a function
Regards
Raghu

Similar Messages

  • Is there any alternative way to upadate lumia ?

    I am from India, here in my locality I don't have acess to any Wi-Fi and my phone cant update using GPRS connection so pls let me know about any alternative way to upadate it like any PC software updater or any pc app. And pls provide a link to that app if u can. Thank you.
    IF MY POST IS A SOLUTION FOR YOU THEN HIT THE STAR BUTTON and ACCEPT AS A SOLUTION.

    The official way which is HERE
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Is there any alternative way to add Comments feature to BPC 10.1 Unified model?

    Dear All,
    I understand that BPC 10.1 Unified model does NOT support Comments. Is there any way we can add comments capability? Any help on this would be appreciated.
    I believe Comments are an important feature for both - Planning and Consolidation applications. There should be an alternative way to do this.
    Thanks.
    Regards,
    Peri

    What version of CUCM are you using? Have you considered the free Informacast version that you get with 9+?
    http://info.singlewire.com/singlewire-blog/bid/94815/Cisco-Announces-InformaCast-Basic-Paging-with-Cisco-Unified-Communications-Manager
    I think this is working as designed... using the 'auto answer' as an intercom is kind of a fudge.
    Aaron

  • Is there any other way to transfer all my music from iPad to iPod touch without using a mac or pc?

    I have an iPad which I did use a pc to put music onto my iPad with, i also have an iPod touch but have been buying song from iTunes so it has never been used with a pc before... I want to transfer all my music from my iPad to my iPod without using a pc... How do i do this?

    Download Past Purchases
    http://support.apple.com/kb/HT2519

  • Is there any alternative to console cable for pix 501 firewall?

    I need help on CISCO PIX 501 Firewall, it comes with console cable having serial port, but systems now a days & the one i am having are not having serial port so i am not able to access command-in-line , is there any alternative way, can it be accessed using ethernet or lan wire, if so please provide steps, waiting for your valueable responses, ...

    Hi,
    Have you considered getting an USB adapter for the Console cable?
    I had to get that for my first work laptop since they happened to order a model without the serial port. For the most part it worked just fine.
    I guess depending on your PIX configurations you might be able to boot it up and attach a PC directly to it and manage it.
    - Jouni

  • HT1349 I forgot the answer to my security questions and I don't have a rescue email, whenever I receive a call from apple support it disconnects, is there any other way of resetting security questions?

    I forgot the answer to my security questions and I don't have a rescue email, whenever I receive a call from apple support it disconnects, is there any other way of resetting security questions?

    From a Kappy  post
    The Best Alternatives for Security Questions and Rescue Mail
    1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    An alternative to using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.
    Just wait for Apple/iTunes to reply

  • Is there any alternative for FileConnection in j2me

    hi,
    i want to read and write images from phone memory.i use the Fileconnection for that the pbm for using FileConnection v need the support of JSR-75 in mobile.only few mobiles have the support of JSR-75.Is there any possible way to read and write images from phonememory other than FileConnection and also theRMS .
    thanx a lot

    Hi im write this code to open the image file and show that in canvas :
    as a class
    FileBrowser.java as a example on wtk 2.2 with modification
    import java.util.*;
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.io.file.*;
    import javax.microedition.lcdui.*;
    * Demonstration MIDlet for File Connection API. midlet MIDlet implements simple
    * file browser for the filesystem avaliable to the J2ME applications.
    class FileBrowser implements CommandListener {
        private String currDirName;
        private Command view = new Command("View", Command.ITEM, 1);
        private Command creat = new Command("New", Command.ITEM, 2);
        private Command creatOK = new Command("Oke", Command.OK, 1);
        private Command prop = new Command("Properti", Command.ITEM, 2);
        private Command back = new Command("Kembali", Command.BACK, 2);
        private Command exit = new Command("Batal", Command.EXIT, 3);
        private Command cmOpenCrop = new Command("Open File To Crop", Command.ITEM, 1);
        private TextField   nameInput;  // Input field for new file name
        private ChoiceGroup typeInput;  // Input fiels for file type (regular/dir)
        private Midlet midlet;
        private final static String[] attrList = { "Baca", "Tulis", "Sembunyikan" };
        private final static String[] typeList = { "File Biasa", "Direktori" };
        private final static String[] monthList = { "Jan", "Feb", "Mar", "Apr",
        "May", "Jun", "Jul", "Aug",
        "Sep", "Oct", "Nov", "Dec" };
        private Image dirIcon, fileIcon, photoIcon;
        private Image[] iconList;
        /* special string denotes upper directory */
        private final static String UP_DIRECTORY = "..";
        /* special string that denotes apper directory accessible by midlet browser.
         * midlet virtual directory contains all roots.
        private final static String MEGA_ROOT = "/";
        /* separator string as defined by FC specification */
        private final static String SEP_STR = "/";
        /* separator character as defined by FC specification */
        private final static char   SEP = '/';
        public FileBrowser(Midlet midlet) {
            this.midlet = midlet;
            currDirName = MEGA_ROOT;
            try {
                dirIcon = Image.createImage("/icons/dir.png");
            } catch (IOException e) {
                dirIcon = null;
            try {
                photoIcon = Image.createImage("/icons/photo.png");
            } catch (IOException e) {
                photoIcon = null;
            try {
                fileIcon = Image.createImage("/icons/file.png");
            } catch (IOException e) {
                fileIcon = null;
            iconList = new Image[] { fileIcon, dirIcon};
            new Thread(new Runnable() {
             public void run(){
               RunAplikasi(); }
            }).start();
        public void RunAplikasi() {
            try {
                showCurrDir();
            } catch (SecurityException e) {
                Alert alert = new Alert("Error",
                    "You are not authorized to access the restricted API",
                    null, AlertType.ERROR);
                alert.setTimeout(Alert.FOREVER);
                Form form = new Form("Cannot access FileConnection");
                form.append(new StringItem(null,
                    "You cannot run midlet MIDlet with the current permissions. "
                    + "Sign the MIDlet suite, or run it in a different security domain"));
                form.addCommand(exit);
                form.setCommandListener(this);
                Display.getDisplay(midlet).setCurrent(alert, form);
            } catch (Exception e) {
                e.printStackTrace();
        public void commandAction(Command c, Displayable d) {
            if (c == view) {
                List curr = (List)d;
                final String currFile = curr.getString(curr.getSelectedIndex());
                new Thread(new Runnable() {
                    public void run() {
                        if (currFile.endsWith(SEP_STR) || currFile.equals(UP_DIRECTORY)) {
                            traverseDirectory(currFile);
                        } else {
                            // Show file contents
                            showFile(currFile);
                }).start();
            } else if (c == prop) {
                List curr = (List)d;
                String currFile = curr.getString(curr.getSelectedIndex());
                showProperties(currFile);
            } else /*if (c == creat) {
                 //createFile();
            } else if (c == creatOK) {
                String newName = nameInput.getString();
                if (newName == null || newName.equals("")) {
                    Alert alert = new Alert("Error!",
                    "File Name is empty. Please provide file name",
                    null,
                    AlertType.ERROR);
                    alert.setTimeout(Alert.FOREVER);
                    Display.getDisplay(midlet).setCurrent(alert);
                } else {
                    // Create file in a separate thread and disable all commands
                    // except for "exit"
                    executeCreateFile(newName, typeInput.getSelectedIndex() != 0);
                    Display.getDisplay(midlet).getCurrent().removeCommand(creatOK);
                    Display.getDisplay(midlet).getCurrent().removeCommand(back);
            } else*/ if (c == back) {
                showCurrDir();
            } else if (c == exit) {
               midlet.SelesaiAplikasi();
            } else if (c == cmOpenCrop) {
               List curr = (List)d;
               String currFile = curr.getString(curr.getSelectedIndex());
               midlet.SelesaiOpen("file:///"+ currDirName + currFile,0,0);
        //Starts creatFile with another Thread
        private void executeCreateFile(final String name, final boolean val) {
            new Thread(new Runnable(){
                public void run(){
                    createFile(name, val);
            }).start();
         * Show file list in the current directory .
        void showCurrDir() {
            Enumeration e;
            int Panjang,Count,AdaEkstensi,IndexConcat = 0;
            String SimpanEkstensi,SaveTemp;
            char str[] = new char[10];
            Boolean Ketemu = new Boolean(false);
            FileConnection currDir = null;
            List browser;
            try {
                if (MEGA_ROOT.equals(currDirName)) {
                    e = FileSystemRegistry.listRoots();
                     browser = new List(currDirName, List.IMPLICIT);
                } else {
                    currDir = (FileConnection)Connector.open("file://localhost/" +
                                currDirName);
                    e = currDir.list();
                     browser = new List(currDirName, List.IMPLICIT);
                      // not root - draw UP_DIRECTORY
                     browser.append(UP_DIRECTORY, dirIcon);
                     browser.setSelectCommand(view);
                while (e.hasMoreElements()) {
                    String fileName = (String)e.nextElement();
                    if (fileName.charAt(fileName.length()-1) == SEP) {
                        // midlet is directory
                        browser.append(fileName, dirIcon);
                        browser.setSelectCommand(view);
                    } else {
                        // midlet is regular file
                        //cari tahu si ekstensi jika ada
                        Panjang = fileName.length();                
                        Count = 0;
                        AdaEkstensi = 0;
                        while (Count < Panjang && AdaEkstensi == 0)
                          if (fileName.charAt(Count) == '.')
                            AdaEkstensi = 1;
                            IndexConcat = Count+1;
                          Count++;
                        if (AdaEkstensi == 1)
                          //cari tahu apakah si ekstensi gambar atau bukan
                          SimpanEkstensi = new String("");
                          //SimpanEkstensi.concat(fileName.substring(IndexConcat,Panjang));
                          fileName.getChars(IndexConcat,Panjang,str,0);
                          if (str[0] == 'p' && str[1] == 'n' && str[2] == 'g'){
                             browser.append(fileName, photoIcon);
                             browser.addCommand(cmOpenCrop);
                             browser.setSelectCommand(view);
                          } else
                          if (str[0] == 'j' && str[1] == 'p' && str[2] == 'g'){
                             browser.append(fileName, photoIcon);
                             browser.addCommand(cmOpenCrop);
                             browser.setSelectCommand(view);
                          } else {
                             browser.append(fileName, fileIcon);
                             browser.setSelectCommand(view);
                        } else
                          browser.append(fileName, fileIcon);
                          browser.setSelectCommand(view);
                browser.addCommand(prop);
                //Do not allow creating files/directories beside root
                if (!MEGA_ROOT.equals(currDirName)) {
                    //browser.addCommand(creat);
                browser.addCommand(exit);
                browser.setCommandListener(this);
                if (currDir != null) {
                    currDir.close();
                Display.getDisplay(midlet).setCurrent(browser);
            } catch (IOException ioe) {
                ioe.printStackTrace();
        void traverseDirectory(String fileName) {
        /* In case of directory just change the current directory
         * and show it
            if (currDirName.equals(MEGA_ROOT)) {
                if (fileName.equals(UP_DIRECTORY)) {
                    // can not go up from MEGA_ROOT
                    return;
                currDirName = fileName;
            } else if (fileName.equals(UP_DIRECTORY)) {
                // Go up one directory
                // TODO use setFileConnection when implemented
                int i = currDirName.lastIndexOf(SEP, currDirName.length()-2);
                if (i != -1) {
                    currDirName = currDirName.substring(0, i+1);
                } else {
                    currDirName = MEGA_ROOT;
            } else {
                currDirName = currDirName + fileName;
            showCurrDir();
        void showFile(String fileName) {
            try {
                FileConnection fc = (FileConnection)
                    Connector.open("file://localhost/" + currDirName + fileName);
                if (!fc.exists()) {
                    throw new IOException("File does not exists");
                InputStream fis = fc.openInputStream();
                byte[] b = new byte[1024];
                int length = fis.read(b, 0, 1024);
                fis.close();
                fc.close();
                TextBox viewer = new TextBox("View File: " + fileName, null, 1024,
                TextField.ANY | TextField.UNEDITABLE);
                viewer.addCommand(back);
                viewer.addCommand(exit);
                viewer.setCommandListener(this);
                if (length > 0) {
                    viewer.setString(new String(b, 0, length));
                Display.getDisplay(midlet).setCurrent(viewer);
            } catch (Exception e) {
                Alert alert = new Alert("Error!",
                "Can not access file " + fileName
                + " in directory " + currDirName
                + "\nException: " + e.getMessage(),
                null,
                AlertType.ERROR);
                alert.setTimeout(Alert.FOREVER);
                Display.getDisplay(midlet).setCurrent(alert);
        void showProperties(String fileName) {
            try {
                if (fileName.equals(UP_DIRECTORY)) {
                    return;
                FileConnection fc = (FileConnection)Connector.open("file://localhost/"
                                    + currDirName + fileName);
                if (!fc.exists()) {
                    throw new IOException("File does not exists");
                Form props = new Form("Properties: " + fileName);
                ChoiceGroup attrs = new ChoiceGroup("Attributes:", Choice.MULTIPLE,
                attrList, null);
                attrs.setSelectedFlags(new boolean[] {fc.canRead(),
                fc.canWrite(),
                fc.isHidden()});
                props.append(new StringItem("Location:", currDirName));
                props.append(new StringItem("Type: ", fc.isDirectory() ?
                "Directory": "Regular File"));
                props.append(new StringItem("Modified:",myDate(fc.lastModified())));       
                props.append(attrs);
                props.addCommand(back);
                props.addCommand(exit);
                props.setCommandListener(this);
                fc.close();
                Display.getDisplay(midlet).setCurrent(props);
            } catch (Exception e) {
                Alert alert = new Alert("Error!",
                "Can not access file " + fileName
                + " in directory " + currDirName
                + "\nException: " + e.getMessage(),
                null,
                AlertType.ERROR);
                alert.setTimeout(Alert.FOREVER);
                Display.getDisplay(midlet).setCurrent(alert);
        void createFile() {
            Form creator = new Form("New File");
            nameInput = new TextField("Enter Name", null, 256, TextField.ANY);
            typeInput = new ChoiceGroup("Enter File Type", Choice.EXCLUSIVE,
            typeList, iconList);
            creator.append(nameInput);
            creator.append(typeInput);
            //creator.addCommand(creatOK);
            creator.addCommand(back);
            creator.addCommand(exit);
            creator.setCommandListener(this);
            Display.getDisplay(midlet).setCurrent(creator);
        void createFile(String newName, boolean isDirectory) {
            try {
                FileConnection fc = (FileConnection) Connector.open("file:///" +
                currDirName +
                newName);
                if (isDirectory) {
                    fc.mkdir();
                } else {
                    fc.create();
                showCurrDir();
            } catch (Exception e) {
                String s = "Can not create file '" + newName + "'";
                if (e.getMessage() != null && e.getMessage().length() > 0) {
                    s += "\n" + e;
                Alert alert = new Alert("Error!", s, null, AlertType.ERROR);        
                alert.setTimeout(Alert.FOREVER);
                Display.getDisplay(midlet).setCurrent(alert);
                // Restore the commands that were removed in commandAction()
                Display.getDisplay(midlet).getCurrent().addCommand(creatOK);
                Display.getDisplay(midlet).getCurrent().addCommand(back);
        private String myDate(long time) {
            Calendar cal = Calendar.getInstance();
            cal.setTime(new Date(time));
            StringBuffer sb = new StringBuffer();
            sb.append(cal.get(Calendar.HOUR_OF_DAY));
            sb.append(':');
            sb.append(cal.get(Calendar.MINUTE));
            sb.append(':');
            sb.append(cal.get(Calendar.SECOND));
            sb.append(',');
            sb.append(' ');
            sb.append(cal.get(Calendar.DAY_OF_MONTH));
            sb.append(' ');
            sb.append(monthList[cal.get(Calendar.MONTH)]);
            sb.append(' ');
            sb.append(cal.get(Calendar.YEAR));
            return sb.toString();
        public void view_image(String FileName)
    }and show it on class ClipCanvas
    Class ClipCanvas
    Merupakan Class yang di gunakan untuk membuat area
    Clip Mata
    import javax.microedition.lcdui.*;
    import java.util.*;
    import java.io.*;
    import java.lang.Math.*;
    import javax.microedition.io.file.*;
    import javax.microedition.io.*;
    class ClipCanvas extends Canvas implements CommandListener, Runnable
      private  Command cmSave = new Command("Save Image Area Crop",Command.SCREEN,1);
      private  Command cmSendMMS = new Command("Send MMS",Command.SCREEN,1);
      private  Command cmHelp = new Command("Help",Command.SCREEN,1);
      private  Command cmExit = new Command("Keluar", Command.SCREEN, 1);
      private Midlet midlet;      // Main midlet
      private Image im,ImageCrop,TempImage = null; // Image to display
      //private Graphics TempGraphics;
      private Random random;    // Get random number
      private int clipx = 0,  clipy = 0,  // View port
                  clipw = 200, cliph = 200; // (clipping region)
      private int old_clipx = 0, old_clipy = 0; // Last clipping region
      private int awalx,awaly;
      private String NamaFile;
      //konstruktor
      public ClipCanvas(Midlet midlet,final String NamaFile,int awalx,int awaly)
        this.midlet = midlet;
        this.NamaFile = NamaFile;
        // Create exit command & listen for events
        this.addCommand(cmSave);
        this.addCommand(cmSendMMS);
        this.addCommand(cmHelp);
        this.addCommand(cmExit);
        // Get random values for starting point
        random = new java.util.Random();
        // Make sure the entire clipping region is
        // visible on the display 
           this.clipx = Math.min((getWidth() - clipw),
                         (random.nextInt() >>> 1) % getWidth());
           this.clipy = Math.min((getHeight() - cliph),
                         (random.nextInt() >>> 1) % getHeight());
          // Create immutable image
               new Thread(new Runnable() {
               public void run(){
               //String NamaFile = NamaFile1;
               InputConnection fileConn = null;
               DataInputStream dis = null;
               try{
               fileConn = (InputConnection)Connector.open(NamaFile,Connector.READ);
               dis = fileConn.openDataInputStream();
               im = Image.createImage(dis); 
               TempImage = Image.createImage(im.getWidth(),im.getHeight());
               dis.close();
                catch (java.io.IOException e)
                  System.err.println("Unable to locate or read .png file");
                  e.printStackTrace();
            }).start();
          this.awalx = awalx;
          this.awaly = awaly;
        setCommandListener(this);
      protected void paint(Graphics g)
        if (im != null)
          //putihin layar
          g.setColor(0xFFFFFF);
          g.fillRect(0,0,getWidth(),getHeight());
          // Clear only the previous clipping region
          g.setColor(255, 255, 255);
          g.fillRect(old_clipx, old_clipy, clipw, cliph);     
          g.drawRect(old_clipx, old_clipy, clipw-1, cliph-1);
          g.drawRect(old_clipx+92, old_clipy+92, 8,8);
          // Set the new clipping region
          g.setColor(255, 255, 255);
          g.setClip(clipx, clipy, clipw, cliph);
          // Draw image 
          g.drawImage(im, awalx, awaly, Graphics.LEFT | Graphics.TOP);
          //draw si rectangle kecil
          g.setColor(0xFF001E);
          g.drawRect(clipx,clipy,clipw-1,cliph-1);
          g.drawRect(clipx+92,clipy+92,8,8);
          Graphics TempGraphics = TempImage.getGraphics();
          TempGraphics.drawImage(im,awalx, awaly,Graphics.LEFT | Graphics.TOP);
        } else
          //putihin layar
          g.setColor(0xFFFFFF);
          g.fillRect(0,0,getWidth(),getHeight());
          //draw si rectangle kecil
          g.setColor(0xFF001E);
          g.drawString("Tekan Tombol Arah !",clipx,clipy,Graphics.LEFT | Graphics.TOP);
      public void commandAction(Command c, Displayable d)
        if (c == cmExit)
          midlet.SelesaiAplikasi();
        else
        if (c == cmSave){
          try {
             ImageCrop = Image.createImage(TempImage,clipx,clipy,clipw,cliph,0);
          } catch(NullPointerException ioe){
            System.err.println("Halo !!!!!");
            return;
          midlet.SaveImage(ImageCrop,NamaFile,awalx,awaly);
      protected void keyPressed(int keyCode)
        // Save the last clipping region
        old_clipx = clipx;
        old_clipy = clipy;
        switch (getGameAction(keyCode))
          case UP:
            // Move clipping region up 3 pixels
            if (clipy > 0)
              clipy = Math.max(0, clipy - 3);
            else
              if (awaly+3 <=0)
                 awaly += 3;
            break;
          case DOWN:
            // Move clipping region down 3 pixels     
            if (clipy + cliph < getHeight())
              clipy = Math.min(getHeight(), clipy + 3);
            else
            if (im.getHeight() > getHeight()){
              if (awaly-3 >=(-1*(im.getHeight()-getHeight())))
                 awaly -= 3;
            break;
          case LEFT:
           // Move clipping region left 3 pixels
           if (clipx > 0)
              clipx = Math.max(0, clipx - 3);
            else
                 if (awalx + 3 <=0)
                   awalx += 3;
          break;
          case RIGHT:
            // Move clipping region right 3 pixels     
            if (clipx + clipw < getWidth())
              clipx = Math.min(getWidth(), clipx + 3);
         else
              if (im.getWidth() > getWidth()){
             if (awalx - 3 >= -1*(im.getWidth()-getWidth()))
               awalx -= 3;
           break;
          case FIRE:
          try {
             ImageCrop = Image.createImage(TempImage,clipx,clipy,clipw,cliph,0);
          } catch(NullPointerException ioe){
            System.err.println("Halo !!!!!");
            return;
          midlet.SaveImage(ImageCrop,NamaFile,awalx,awaly);       
          break;
        repaint();
      public void run(){
    }

  • I have photos on my iPad that I want to delete. This is my problem. I synced them from my ex-husband's Mac. We are no longer together therefore I don't have access to his computer or iTunes account. Is there any other way to delete them?

    I have photos on my iPad that I want to delete. The problem is I don't have access to the computer used to sync them. It was my ex husbands computer and iTunes account. Is there any other way to delete them?

    Not sure is any of these methods will work.
    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • Hi there, my phone was recently stolen and I'm gutted that I haven't backed my photos up on iCloud. Only my contact can be accessed. Is there any possible way of getting my photos back?

    Hi there, my phone was recently stolen and I'm gutted that I haven't backed my photos up on iCloud. Only my contact can be accessed. Is there any possible way of getting my photos back?

    Often when plugging a device into a computer (which has not been discussed if this has ever happened) one will be given the auto play option of transferring photos/data from the mobile device to the computer. Did you ever transfer the photos from your device to a computer?

  • HT1386 when I try to backup my iphone I don't get an option to do so when I control click on my iphone in itunes only eject and restore is there any other way to turn on the backup function?

    when I try to backup my iphone I don't get an option to do so when I control click on my iphone in itunes only eject and restore is there any other way to turn on the backup function?

    See Here...
    How to BackUp
    http://support.apple.com/kb/ht1766
    Troubleshooting Backup Issues
    http://support.apple.com/kb/ts2529

  • TS1702 Hi I need to up date my iPhone 4 but don't have access to a computer & my phone docent have it's own system up date in the settings is there any other way to update the software

    Hi I have an iPhone 4 &amp; need to software update but don't have access to a computer &amp; my phone dosent have it own system up date is there any other way of updating it

    The first time to iOS 5 must be done with iTunes on computer.

  • HT1911 My old Apple ID was tied to an email address that I no longer have access to, and for some reason, my security question answers don't seem to be working. Is there any other way to retrieve or reset my password?

    My old Apple ID was tied to an email address that I no longer have access to. My security question answers don't seem to work. Is there any other way to retrieve my password?
    I have a new Apple ID - I would love to be able to merge them. Is that possible?

    You need to contact Apple. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (90031)

  • I am developing a flex web application which needs to access Other domain ,is there any other way other than cross domain policy available ? please help

    i am developing a flex web application which needs to access Other domain (Payment Gateway API),is there any other way other than cross domain policy available ? please help.
    we donot have access other domain thats why we want other solution..

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

  • I recently bought a macbook and im trying yo sync all my 2600 photos to it but my phone is synced to another computer in another country which i cant access!! Will i loose all my photos or is there any other way of keeping them and uploading to my new mac

    I recently bought a macbook and im trying yo sync all my 2600 photos to it but my phone is synced to another computer in another country which i cant access!! Will i loose all my photos or is there any other way of keeping them and uploading to my new mac?????

    Hi jonnywilson78!
    Here is an article that will instruct you on importing your photos from your iOS device to your new computer:
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/ht4083
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Is there an alternative to prevent access to a transaction?

    Hello Everyone!
    Is there an alternative to prevent access to a standard transaction when a user has the S_TCODE value already? A custom program was created through batch input recording and there are transaction calls made to the standard transaction. I had to give the S_TCODE value for the program to run for the user, but one requirement was to force the user to use the custom t-code and not use the standard one. Unfortunately, I have provided the user access to the standard t-code as demanded by the program. Is there a way around this? I assume this has to be manipulated in the program.
    Thanks!

    If no further intervention is needed, then you can execute the processing as a batch job with the SYSTEM type jobsstep user?
    If the dialog user is processing the session in SM35 themselves or the job is executed in their name, then must also have been able to process the data manually.
    In the stead of Batch Input, you should also consider redesigning the process to call a BAPI locally or via a group to process the data. This way they typically need the application authorizations but do not need an entry point to them such as S_TCODE or S_RFC.
    Or reconsider the transaction code used in the Batch Input call?
    Or reconsider the person (job function) who executes this processing?
    Or give the originator of the data a webservice to process the data real time?
    Lots of options...
    Cheers,
    Julius

Maybe you are looking for

  • Install exception

    Dear all, I got exception during my installation of Forte UDS with error code 23: Invalid service account name. OS: win2000 professional running nodemgr.exe error below: SYSTEM ERROR: Failed to connect or lost connection to the environment manager at

  • Java Heap not clearing

    All, We have weblogic running on a sun ultra 450. The general design of the system is we have jsp pages that have session variables that are instances of java classes that we use to hold our business logic. My current issue is that as the system is s

  • French accents - empty text messages

    Is anyone experiencing this? I'm a French Canadian so I use the "French (Canada)" keyboard, but that keyboard auto inserts some accents in the text le "é" or "ç". When I send those messages they appear as empty messages... and if I use the English ke

  • Label column in metadata display always on left

    I just downloaded the new pp cc 2014 and opened up my project file.  In the project panel metadata display bar I cannot click and drag either the "label" or "name" column.  I would like the labels to be on the right side of the file names but cannot

  • DLU profle being removed

    We have NetWare 5.1 and 6 and have been happily using DLU for about 3 years now. We have the DLU policy set for our teachers and students to manage a local profile called "Workstation". We have set the Volatile user cache in the workstation manager t