How do mobile applications help to increase your business conversion?

We are launching a series of interviews with our IT engineers on the most contemporary and engaging subjects from the IT world.Today we interviewed Alexander Bogdanovich, the head of the mobile applications development department, XIM Wireless. Alexander embellished on the benefits of mobile applications for business, shared somesecrets on how to succeed with a mobile application, and explained whyit is profitable to develop exactly the cross platform applications.Please, tell us a bit about your experience. Why have you decided to throw in your lot with mobile development?A. B.: It’s pretty simple. The story begins with Flash development and development for social networks. Afterwards, along with the growth of the mobile applications market and with new platforms being introduced I considered it to be interesting and lucrative to...
This topic first appeared in the Spiceworks Community

Hello Bob,
I really appreciate your input.  I hope the correct department finds your post useful as well.  Since I handle printer support, one thing I noticed while reading over this is perhaps a problem with your fax setup.  Are you still having problems and is there anything I can help you learn in regards to your new Officejet 8600?
Here are a few links to help you with your new system.
--Learn Windows 8 in 8 minutes (video)--
--60 Windows 8 Tips, Tricks and Secrets--
--CNET's Complete guide to using Windows 8 (roundup)--
Lastly, here is a link to HP Printer Support on Youtube regarding your Officejet 8600.  If you have a question, just type it in the search bar on this page and hopefully there will be a video on it.
--Officejet 8600 Overview--
I am not in the business of trying to make money but rather providing the best help I can so that consumers like you can easily enjoy your product for years to come.
If you have any questions about any of your HP products, you are welcome to ask me anything and I will do my best to assist you.
Although I work for HP I speak for myself as well when I say "Thank you."
Kind Regards,
--Cass--  
Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
When a solution is found please mark the post that solves your issue.
Every problem has a solution!

Similar Messages

  • How to implement "Application Help" for activated Businiess Functions & Add Ons?

    Dear all
    I am setting up a SAP NetWeaver System with Business Function INSURANCE activated (for the use of FS-CD) and the reinsurance Add On FS-RI installed.
    I am able to set up "Application Help" in transaction SR13 for the "ERP/ECC part", meaning: When I open some "normal" ECC/ERP transaction, like MM03 oder PA20 and click on ("Help" in menubar >) "Application Help" in SAP Gui, a browser opens an shows me the context sensitive online help page for the corresponding transaction. (For PA20, this is "Displaying HR Master Data", for MM03 it's "Displaying Material Master Records")
    If I open an FS-RI transaction (like "/MSG/H_BORD1" oder "/MSG/R_V3"), I am only forwarded to the general SAP Library. But there is an online documentation available ("SAP for Industries" > "SAP Insurance Management" > ...)
    So, how to link the Business Functions and Add Ons with the Online Help?
    Is there a simple way to set up "Application Help" for activated Business Functions and installed Add Ons?
    I found some (online) documentation, but this is all more confusing than helping...
    Thanks for any help!
    Frank

    Second, when you create a Core Data Document Based application, XCode generates the MyDocument class, derivating from NSPersistentDocument. This class is dedicated to maintain the Managed Object Model and the Managed Object Context of each document of your application.
    There is only one Context and generally one Model for each Document.
    In Interface Builder, the Managed Object Context must be bound to the managedObjectContext of the MyDocument instance: it's the File's owner of the myDocument.xib Nib file.
    It's not the case in your Nib File where the Managed Object Context is bound to the invoiceID of the Invoice Controller.
    It's difficult to help you without an overall knowledge of your application, perhaps could you create an InvoiceItem Controller and bind its Content Set to the relationship of your invoice.

  • Problems with a mobile application help!

    im having difficulty getting this game to work. its a simple black jack game. what ive done is generated a random number, then if its this number put this image on the screen, if its this number put that image on the screen, etc etc etc. only problem is nothing happens when the program runs. itll start, the music will play and all that will work. but it wont show any images when buttons are clicked. I dont know whether its something wrong with the drawing sprite images, or the buttons not actually responding. can anyone see why its not working? any help would be greatly appreciated. here is the code
    /* import all neccessary java packages */
    package GameCanvas;
    import SpaceGame.SpaceGame;
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    import java.util.*;
    import java.util.Random.*;
    import java.io.*;
    import javax.microedition.media.*;
    import javax.microedition.media.control.*;
    public class MyGameCanvas extends GameCanvas implements Runnable {
    /* initialize all the variables needed */
    private Display myDisplay;
    private Random newcard1;
    private Random newcard2;
    private Sprite enterprise;
    private Integer range;
    private Integer result;
    private boolean over21;
    private Sprite card1;
    private Sprite card2;
    private Sprite card3;
    private Sprite card4;
    private Sprite card5;
    private Sprite card6;
    private Sprite card7;
    private Sprite card8;
    private Sprite card9;
    private Sprite card10;
    private Sprite cardjack;
    private Sprite cardqueen;
    private Sprite cardking;
    private int player1Score;
    private int player2Score;
    private Player musicPlayer;
    /* Create a new instance of MyGameCanvas */
    public MyGameCanvas(Display d) {
    super(true);
    myDisplay = d;
    player1Score = 0;
    player2Score = 0;
    /* method to start the game */
    public void start() {
    myDisplay.setCurrent(this);
    over21 = false;
    /* load all the sprite images */
    try {
    try      {
                        enterprise = new Sprite(Image.createImage("/Images/Enterprise.png"));
                        enterprise.setPosition(this.getWidth()/2, this.getHeight()/2);
    enterprise.setVisible (true);
              catch (IOException e) {
                   System.err.println("Failed loading sprites");
    InputStream is = getClass().getResourceAsStream("/Sounds/GTA_Vice_City.mid");
    musicPlayer = Manager.createPlayer(is, "audio/midi");
    musicPlayer.prefetch();
    musicPlayer.setLoopCount(-1);
    musicPlayer.start();
    } catch (IOException e){
    System.err.println("Failed loading sprites");
    } catch(MediaException me){
    System.err.println("Media error");
    Thread t = new Thread(this);
    t.start();
    public void stop() {
    /* The method for running the game */
    public void run()
    Graphics g = this.getGraphics();
    public void player1Turn()
    /* assign key values and commands */
    int keyState = this.getKeyStates();
    if ((keyState & this.LEFT_PRESSED) !=0)
    newcard1 = new Random ();
    int range = 13;
    int result = newcard1.nextInt(range);
    if (result == 1);
    try {
    card1 = new Sprite(Image.createImage("/Images/ship.png"));
    card1.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=1;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 2);
    try {
    card2 = new Sprite(Image.createImage("/Images/ship.png"));
    card2.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=2;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 3);
    try {
    card3 = new Sprite(Image.createImage("/Images/ship.png"));
    card3.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=3;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 4);
    try {
    card4 = new Sprite(Image.createImage("/Images/ship.png"));
    card4.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=4;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 5);
    try {
    card5 = new Sprite(Image.createImage("/Images/ship.png"));
    card5.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=5;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 6);
    try {
    card6 = new Sprite(Image.createImage("/Images/ship.png"));
    card6.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=6;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 7);
    try {
    card7 = new Sprite(Image.createImage("/Images/ship.png"));
    card7.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=7;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 8);
    try {
    card8 = new Sprite(Image.createImage("/Images/ship.png"));
    card8.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=8;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 9);
    try {
    card9 = new Sprite(Image.createImage("/Images/ship.png"));
    card9.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=9;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 10);
    try {
    card10 = new Sprite(Image.createImage("/Images/ship.png"));
    card10.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 11);
    try {
    cardjack = new Sprite(Image.createImage("/Images/ship.png"));
    cardjack.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 12);
    try {
    cardqueen = new Sprite(Image.createImage("/Images/ship.png"));
    cardqueen.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 13);
    try {
    cardking = new Sprite(Image.createImage("/Images/ship.png"));
    cardking.setPosition(this.getWidth()/2,this.getHeight()/2);
    player1Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if ((keyState & this.RIGHT_PRESSED) !=0)
    if (player1Score > 21);
    over21 = true;
    if (over21 == true)
    player2Score = -100;
    public void player2Turn()
    /* assign key values and commands */
    int keyState = this.getKeyStates();
    if ((keyState & this.LEFT_PRESSED) !=0)
    newcard2 = new Random ();
    int range = 13;
    int result = newcard2.nextInt(range);
    if (result == 1);
    try {
    card1 = new Sprite(Image.createImage("/Images/ship.png"));
    card1.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=1;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 2);
    try {
    card2 = new Sprite(Image.createImage("/Images/ship.png"));
    card2.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=2;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 3);
    try {
    card3 = new Sprite(Image.createImage("/Images/ship.png"));
    card3.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=3;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 4);
    try {
    card4 = new Sprite(Image.createImage("/Images/ship.png"));
    card4.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=4;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 5);
    try {
    card5 = new Sprite(Image.createImage("/Images/ship.png"));
    card5.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=5;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 6);
    try {
    card6 = new Sprite(Image.createImage("/Images/ship.png"));
    card6.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=6;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 7);
    try {
    card7 = new Sprite(Image.createImage("/Images/ship.png"));
    card7.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=7;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 8);
    try {
    card8 = new Sprite(Image.createImage("/Images/ship.png"));
    card8.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=8;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 9);
    try {
    card9 = new Sprite(Image.createImage("/Images/ship.png"));
    card9.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=9;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 10);
    try {
    card10 = new Sprite(Image.createImage("/Images/ship.png"));
    card10.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 11);
    try {
    cardjack = new Sprite(Image.createImage("/Images/ship.png"));
    cardjack.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 12);
    try {
    cardqueen = new Sprite(Image.createImage("/Images/ship.png"));
    cardqueen.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if (result == 13);
    try {
    cardking = new Sprite(Image.createImage("/Images/ship.png"));
    cardking.setPosition(this.getWidth()/2,this.getHeight()/2);
    player2Score +=10;
    catch (Exception e){
    System.out.println("An Error Has Occured!");
    if ((keyState & this.RIGHT_PRESSED) !=0)
    if (player2Score > 21);
    over21 = true;
    if (over21 == true)
    player2Score = -100;
    public void whoWins() {
    if (player1Score < player2Score)
    System.out.println ("Player 2 wins!");
    if (player2Score < player1Score)
    System.out.println("Player 1 wins!");
    }

    first of all try update the firmware if that dont work try the following
    cred for rad 24
    With all these operations I recommend you TAKE OUT MEMORY CARD and DO A BACK UP OF YOUR STUFF!!!
    NOTE: In front of the hash key ( #) there is also a STAR key that people often miss and state that the code does not work.
    1.. *#7780# - Restore factory settings - resets all the settings to the default ( you will not lose any data) Make sure you back up your data as you will lose all of it when you perform option 2 or 3 on this list. The default code for ALL operations listed here is 12345.
    2.*#7370# - Reformat your phone (out of the box, tho keep in mind that most newer nokia phones at least n series, e series and s60 based phones have udp - user data preservation so not ALL data may be lost. still it is a good idea to always do a back up of your stuff.)3. This you perform as a last resort. Nothing else is working.If the phone is not showing any activity, proceed with hard formatting , turn off your phone, hold the following buttons while pressing the power button. (the default code is 12345)
    3. hard reset - hold the following buttons * (star key), 3 (number button) and talk/green key. turn on the phone and do not release those buttons until you see the Nokia boot up screen. once you feel the phone power up you can let go off the power button while still holding all three buttons ( for Nokia 5800XM - use the following buttons to do a hard reset, /GREEN/RED/CAMERA keys pressed all at once on power up. this will only work on 5800's that have firmware version 20... and up. ) For Nokia N97 (unofficial version but works) is SHIFT /SPACE BAR / BACKSPACE while holding the power button. Again do not let go until you see the handshake screen.
    If these codes are not working the only thing for you to do is contact your Nokia Care Center/Service for assistance.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How to show application help in 10g?

    We are in process of upgrading forms from 6i to 10g. One of the form is calling menu, which have menuitem 'help'. The code for 'help' item in menu is
    DO_KEY('help');
    The form compiled fine in 10g. When the form is run in 10g, and i pressed 'Help' in menu, there is no action. But, it works fine in 6i.
    Can anyone help with this.
    Thanks.

    Because it was considered a security risk.
    See MetaLink Note:202987.1 (SYS.LINK$ Shows all Database Link Password in Clear Text (Unencrypted)) for some additional information as well as the bug number under which this was processed.
    - Mark

  • How Does Time Machine Help If... iCal Data Lost?

    Hi,
    How does Time Machine help if, say, your iCal database gets messed up? Or, how does it help if you accidentally delete all your playlists from iTunes? I'd be interested to know.

    That's a very good question (although probably better directed at Apple than us). Because Time Machine is new and Apple's in house programs handle data in different ways, there are a range of different means of recovering data for different applications. Not very user friendly and iCal is one of the least user friendly ones.
    As an experiment, because I don't make much use of iCal and have no real idea how it works, I tried to find out how to restore its data. Starting with working with the application: nope, not TM aware at present. OK, where does it restore its data? Next step Spotlight where, as it happens, the obvious search "Calendars" brings up a folder in ~/Library labelled that with a whole lot of mysterious stuff in it. I'm pretty sure that restoring that folder would do the trick. No doubt, if you could figure out which Calendar belongs to what in the above folder you could restore a single calendar that was causing problems. Still, Apple's clearly got some work to do to make this more transparent. Roll on iCal4!
    (By the way Mail also restores from within the program).

  • RFID integrated Mobile Application

    Hi Experts,
    I'm woking on developing a simple mobile application.
    In the scenario, application will be developed using NWDS and data for the fields of the application will be fetched from a RFID tag.
    Experts, kindly forward a simple tutorial on developing Mobile Application integrated with RFID.
    Regards,
    Romi Malik

    Dear Romi,
    Refer to the NWDS - MDK help/ Developing mobile applications help under Help->Contents for how to use the RFID api. Development of the RFID integrated smart sync mobile application is in no way different to developing other smart synce mobile applications.
    Check out the following notes for released drivers and hence supported models and specific installation instructions:
    853397 - Additional Information for the PIOS Architecture. 
    1057759 - Delivered Drivers for Peripherals in SAP DOE
    761833 - Delivered Drivers for Peripherals in SAP MI
    Depending on the device you are planning / have use the above notes when in need.
    Regards,
    Veera

  • RH9 application help "Contents & Index" broken

    I have been using RH9 for months now and I still fail to grasp how the RH9 application help is supposed to work.
    When I click the Help button in the main toolbar, I am supposed to choose from the available options. The option that looks TO ME like "normal" application online help functionality is the first one, called "Contents & Index".
    So I click it, and what happens? After a wait, what happens is that our default IE browser home page opens (which is our corporate intranet home page).
    So what the blazes am I supposed to do with THAT? Does that sound like "Contents & Index" to you? Well it doesn't to me either.

    And if you are on a 64 bit system, the path is likely to be:
    C:\Program Files (x86)\Adobe\Adobe Help\
    Personally I'd be shocked if the AIR runtime wasn't installed. I believe it gets installed when RoboHelp (or the Tech comms Suite) is installed.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Application Help for Query Designer for Netweaver 2004S

    Does anyone know how to install the Help Files for the Business Explorer Tool for Netweaver 2004S?  When I click on the Help>>Applicaton Help from any of these tools, it states it can't find the files.  I have it setup and working within ABAP.
    Thanks,
    Jeff Cook

    The help dvd that came with upgrade explains how to setup for the ABAP side, not the Query Designer.  Do you know the parameter settings?  Does Query Designer help use the sapdoccd.ini file?
    Thanks ,
    Jeff

  • HoW to ChaNGE the text in the mobile application to be in MulTi-CoLoR text

    _*  Do anyone can tell me how to change the text in the mobile application to be in multi-color text, to make it more interesting and increase readability?
    Is it using the Graphic's paint() method? or any better suggestion?
    Please give the short example if can?
    Please help... "_"
    Hearing from u all soon...@_@
    thanks....

    Go into outline view. If you can see the outlines of the letterforms, you can't just change the text. If the letterforms are solid black, take the type tool, select the text and type yours.
    Anyway you can just select the letters, take the type tool and type new text.
    Working with the type tool is a basic. Please see the manual for details

  • How do I clean up iTunes Mobile Applications folder that has old versions of apps?

    I am using the latest iTunes 11.0.3 on my recently new iMac. Previously I had iTunes on my MacPro. The media folder was located on one of the extra (non-boot) volumes on the MacPro (MP). When I got my iMac I changed (in the Advanced section of Preferences) the location of the media folder to point to the same folder on the MP volume as I had been using. Everything seems to work fine. I can plug in my iPhone 4s and sync which goes thru a backup step.
    I was then poking around in the iTunes media folder on the MP and found that the Mobile Applications (MA) folder was full of older versions of the apps on my iPhone. They dated back to 2009, 2010 and most were 2011. A few were 2012 or 2013. I would like to get rid of the old versions as they take up space. Being that old I doubt they are useful for anything anyway. But my question is how?
    I have read and searched for other threads on this topic and have not found a solution. It appears that iTunes is supposed to toss old versions into the trash. I suspect it is doing that now but for some reason has lost track of these older version. The problem here is I don't know what happened.
    My inclination is to take all these app .ipa files and dump them... then do an iPhone sync and have it repopulate this MA folder. But I wasn't sure iTunes would do that. So I selected one app that is currently installed on my iPhone, found several older .ipa files in the MA folder that correspond to that app and deleted all of them. I then sync'd my iPhone and watched it go thru the Backup step. When it was done I checked my MA folder but it still had NO .ipa file for that app. Why is that? To make sure the backup step didn't place it someone unexpected, I did a system wide search for that app name (the core part of the name, not including any version numbers, etc) but it found only one match. It was old (2011) located on an all-together different MA folder so did not come from this iPhone sync.
    I wish someone would clearly document what goes on during an iPhone sync when the backup location is iTunes (not iCloud). Does iTunes store the current version of each app in the MA folder? I didn't see that happen in my example above.
    What does it mean to remove all .ipa files from your MA folder? It would seem that it doesn't matter EXCEPT for apps no longer available in the App Store. Otherwise I could re-install them, right?
    What can I delete safely without ill consequences?
    How can i indentify what to remove if I should keep the latest version around?
    Help would be appreciated.
    To be clear:
    * I use iTunes to store my Backups, not iCloud.
    * I have used Consolidate after making sure that Keep iTunes Media Folder Organizaed is checked and Copy File to iTunes Media folder is checked. It did not help here.
    * Given the dates of the .ipa files in my MA folder, this problem pre-dated my recent addition of my iMac.
    * I believe I'm using a new local (to my iMac) iTunes library file but my media folder is on the MP as described above. When I access iTunes app on my MP it too accesses the same media folder. It is used primarily for adding music and movies to, not iPhone apps as I now sync on the iMac.

    ITunes has been a disaster for me.  It is filled with all sorts of things and there is no way to reorganize any of it.  I'm forced to use iTunes because I have an iPhone but the experience has convinced me that it is best to avoid Apple products and I would recommend that course for others.
    The operative word here is "avoid."  For products like the iPhone and iPad for which Apple has a superior product there is no choice.  The problem is Apple control.  That means that everything is compatible with everything else which is good.  It also means that everything is limited to products that serve Apple's bottom line, which is questionable.
    Hopefully, now that Apple's creative genius has sadly left us, other companies will step forward to create products that will allow us to avoid the complications of Apple.  I have found iTunes to be the principal complication.  iTunes regularly updates itself, practically every Sunday, and then I have to restart my computer which interrupts all the tasks that I have underway.
    Despite all these updates I don't use iTunes except for the iPhone and even that is problematic.  The entire experience makes me glad that I don't have an Apple since it must be very difficult for Apple users to work with Apple constantly demanding updates and restarts and proprietary software and the like.
    If you're not an Apple customer, but you've been listening their hype with their execs pacing a stage clad in jeans, then read this and heed.  My experience with iTunes is a warning for all.  Watch out.  Apple is not your friend.  It's a corporation bent on control, monopoly power and coerced profiteering.  We may all soon need nets to save us when Apple drives us out the window.

  • How can I create a mobile application to connect with my php system

    II have few question to ask all expert here :
    1. Im using Netbeans IDE, how can I compile the .java file to .jar ?
    2. Currently, I have created a point of sales application using php and I hope to create a Mobile application to connect with tis system. So, anyone can let me know what I need to start ?
    3. Im using postgresql database, anyone here know how to connect with mobile application?

    !. When you build java application in NetBeans (standard one) you just click 'Build' or 'Clean and Build' and your jar file is waiting for you inside 'dist' directory of your project
    2. Connecting MIDP application to the server running PHP scripts is not a problem, just connect using simple HTTP with GET or POST and you are done, google on it!
    3. You can connect to the database using some kind of PHP/JSP/ASP or whatever application you want and then using method from point 2 to send and retrive values, you can do it with web services as well, possibilities are endless
    Hope this helps!
    Kris

  • Help for a MOBILE application...

    Hello friends,
    I am working on a mobile application that would be similar to dictionary. We need to store words in form of database. User would have to type a word to get all related stuff stored in database.
    I am unable to figure out what technologies to use for developing this. Can anybody please help with some suggestions of how to approach this application. Also how to store database. I am a bit aware that we would have to use Java ME. but what part of it should we explore???
    Thanks...

    Hi
    I'm not some J2ME specialist but i think i can help you :)
    If I have undestood you correctly, you want to have a database in your MIDlet, that has some Objects inside.
    What I would suggest you to do:
    User would have to type a word to get all related stuff stored in database.You can create that in two ways:
    1. By using TextBox. In this way the TextBox will be the only visible Object on the screen.
    2. By Using TextField and Form. This way you can put many visible Objects into Form and make the Form visible.
    I think this sums the VIEW content. Now few words about database
    We need to store words in form of database.You have to use RMS (record management system)
    Some links:
    http://developers.sun.com/mobility/midp/articles/databaserms/ (in this tutorial you can find everything, from what is RMS, how to add, delete data, also i recomend you to read the CustomData types mapping into byte[])
    For further notice. If you want to store some complex Objects like:
    class SomethingX
    SomethingY somethingY;
    SomethingZ somethingZ;
    String someString;
    int someInt;
    }I would recomend you to create a group of methods that return fields from thoose objects as String. Then in a method that converts the "main" Object to byte[], you just simply execute those methods. By doing so you can create a byte[] from complex Object and Object from a byte[] very easily.
    Hope i could help :)

  • When I purchased a music app from itune store. This got downloaded in Itune maedia/Mobile applications.How to get the songs in that app to my  itune library or on to IPAD?

    I  or tranfer to my librarypurchased from Itune store a Music app. It is downloaded into intune media/mobile applications. How to get the full album msic/songs into my itunes library or on tomy IPAD? It doesnot open out. Can anybody suggest a way?

    If you have a music downloader app (depends on which you have), plug your iDevice into iTunes, go to your device (on itunes), go to your apps, scroll down, and select the app thats holding your music, click on "Save As" (should be located bottom right corner), save the music to your specific folder. Once done, follow through this: Adding music and other content to iTunes and you should have your music on your iDevice music app.
    Hope this helps.

  • HELP: Duplicate copies of apps shown in Mobile Application Folder

    I've poured over the "interwebs" and this forum searching for an answer, and to my surprise... I haven't found one yet! Unreal! Especially when you consider how many people have begged for a solution.
    Essentially, the problem is this:
    http://forums.macrumors.com/showthread.php?t=546769
    OR... if you don't feel like clicking on the link... Here is a picture:
    It appears that every time an application gets updated, it creates a sequential copy of the previous one, leaving your iTunes/Mobile Applications folder filled with unneeded versions, thus increasing the size of the folder needlessly.
    I found that highest numbered file is the newest, and that deleting all of the others, then renaming the existing file from IAMNINJA 6.ipa to IAMNINJA.ipa doesn't necc fix the problem because then iTunes has to be redirected to the newly renamed file. That's a LOT of work if you have a lot of apps!!
    It just bothers me that I have an app folder that is 13.5 gigs in size, and could probably be cut in half!
    It also bothers me that I don't think you can move that directory to a different drive? I'll have to research that one.
    So, does anyone have any idea what the solution to this is??? Or are we to just live with it?
    Thanks!
    Jason
    Message was edited by: Count Rockula

    Hey TT...sorry for the long delay in following up. But you were right on the money! I ONLY download app's via my iPod because I have two iMac's... one at home and one at work. And early on, I found that unless iTunes sync set up exactly between the two computers, my sync's would be off, games removed, highest record in the world gone, etc.
    So, my work around was to always manage my app's on the device and NEVER sync app's via iTunes. However, I "transfer purchases" all the time, just to make sure each computer has the same app's on it, but never sync.
    So, this is why I'm seeing so many duplicates! Your answer was right on the money! Look like I can safely delete any of the renumbered ones. I don' think I need to worry about pointing iTunes the correct version, because I never use iTunes to sync app's.
    If I only had one computer, then sure. But this is the only way that I can think of to make sure my device stays the way I want it, and avoid a sync messing it up.
    Thanks!
    Jason

  • How to get pop up window in mobile application using jquery

    i am trying to implement jquery in my mobile application.iam not getting how to get a popup window

    Ram,
    Write ur code in event <b>AT USER-COMMAND.</b> Create ur own screen and call that screen for example call screen 100 at 10 10. And after entering the date call the secondary screen.
    AT USER-COMMAND.
    Effect
    Event in interactive reporting
    This event is executed whenever the user presses a function key in the list or makes an entry in the command field.
    Some functions are executed directly by the system and thus cannot be processed by programs. These include:
    PICK
    See variant AT LINE-SELECTION
    PFn
    See variant AT PFn
    System command
    System command
    PRI
    Print
    BACK
    Back
    RW
    Cancel
    P...
    Scroll function (e.g.: P+ , P- , PP+3, PS-- etc.)
    Instead of this functions, you can use the SCROLL statement in programs.
    Since many of these system functions begin with "P", you should avoid using this letter to start your own function codes.
    Otherwise, the effect is as for AT LINE-SELECTION; also, the current function code is stored in the system field SY-UCOMM.
    Regards,
    Prakash.

Maybe you are looking for

  • Email icon and function disappears 3 seconds after opening a PDF in Acrobat 8.

    Using Adobe Acrobat 8 with updates applied, when opening .pdf files the email function disappears 3 seconds after the file opens.  I have had this program in my PC for years, and this functionality worked up until last week when it disappeared. I hav

  • Re-installation of Acrobat fails for allegedly wrong serial number

    Hi. I have problems re-installing Acrobat 8 (CS3) on Windows 7 64bit, the program claims a wrong serial number. By mistake of course, since I use the original DVD. The history seems to be important. History: I installed CS3 years ago, including Acrob

  • Batch change to description does not work

    I have a IMac27" Intel i7 using IPhoto 09 I am trying to batch update the description on multiple photos. I shift click on a series of photos then go to batch update> change description. It appears to start with a message and blue line that says " up

  • BSP Question

    Hi All, I am basically a bw developer and new to BSP. I had developed a BSP report for my users along with other existing bw web reports, it was an ABAP report which we converted to a BSP page. From the user point of view it is an R/3 transaction the

  • EHPI install - Error in phase MAIN_SHDINST/SUBMOD_SHDALIASCRE/SCEXEC_GRANT!

    I am trying to install EHPI and this is the error I am getting: Severe error(s) occured in phase MAIN_SHDINST/SUBMOD_SHDALIASCRE/SCEXEC_GRANT! Last error code set: 1 error during parallel execution of processes, check 'SQLEXEGR.LOG' for details > 2 p