Problem in Map to Application screen

Hi all,
I am working in Simulator 8300. In map page when i am selecting back button it gives a blank screen and one more time i select back button it come in to my application ..
 I dont know whts the problem.....
Kindly give comments asap.......
With Regards
 Karthik.J

Use the function module
ARCHIVFILE_SERVER_TO_CLIENT
Pass the values: as download file and destination in the respective fields.
File to be downloaded in :(Pass the exact file name)
PATH :                          
SDEC01\SAPMNT\INT\HR\OUT\FMLA-20080205-0728
and
Destination to download the file in:
TARGETPATH                      C:\DOCUMENTS AND SETTINGS\JILFEM\MY DOCUMENTS\FMLA-20080205-0728
Regards,
Jilly

Similar Messages

  • How to map reporting application to Classic Planning?

    Hi,
    I'm having problem with mapping reporting application this is with reference for Smartlist, Please can you guide me on the steps...

    Have you gone through the steps at - http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_admin/map_man.html
    I also went through the steps in a post - http://john-goodwin.blogspot.com/2010/06/1112-planning-mapping-reporting.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Map coordinate to screen coordinate algorithm

    I am working on a simple 2d RPG, but I ran into a problem while working in NPCs.
    Currently the player is fixed at the center of a panel and the map scrolls below him. The panel the character and map are drawn on is only 1000 by 520 pixels and the map image can be any size (currently testing with a 3000x1565 BufferedImage)
    I tried drawing the NPC's sprite on to the BufferedImage, and quickly realized that wasn't going to work for any kind of smooth animation (you would have to redraw the BufferedImage off screen each time the NPCs AI thread told him to move, which means the BufferedImage may or may not be complete when the panel was repainted by the player's animation thread) . I need to determine weather NPCs are on the screen and then translate or transform their map coordinate to screen (or panel) coordinates.
    I did a search on the forum, but couldn't find a quick answer if someone could help me out I'd appreciate it.

    kevinaworkman wrote:
    I guess I'm still trying to make sense of how you're trying to draw the NPCs that could be causing so much trouble. Is there any way you could provide some pseudocode, or better yet, an SSCCE ?Well, its kind of complex and probably set up all wrong so let me just explain as best I can whats going on.
    First of all Like I said i am trying to make a 2d rpg, but I may want to make it an online multiplayer thing later if I even finish the game. So its a java applet and so far it has two GUI components. What I call the Map an extension of Panel that is in charge of drawing the world that the player moves around on. The other GUI component isn't really important right now its just the console for the game (a text field and a text area you can type in).
    The map class contains a bunch of other stuff the most important things are, an array of Characters for keeping track of NPCs, as well as possible other players, a PlayerCharacter, and most import is the zone. The zone is a Class I created for storing the map itself, and the constructor reads form a text file to create the map. The text contains stuff like the type of tile (grass, sand w/e) to fill the map with, size of the map, and points of interest like where to draw building, zone lines to other zones, and also where all the npcs start at or spawn at.
    the Map classes paint function looks like this:
    public void paint (Graphics g)
            //draw map
            g.drawImage(zone.getMapImage(), 0, 0, getWidth(), getHeight(),
                player.mapX - getWidth()/2, player.mapY - getHeight()/2 ,
                player.mapX + getWidth()/2, player.mapY + getHeight()/2 , this);
            //draw player
            g.drawImage(player.getAvatar(), player.x, player.y, this);
            //draw UI
            g.setColor(Color.darkGray);
            g.fillRect(0, 0, 150, 50);
            g.setColor(Color.blue);
            g.drawString("Player", 5, 5);
            if (player.getTarget() != null)
                g.setColor(Color.darkGray);
                g.fillRect(155, 0, 150, 50);
                g.setColor(Color.blue);
                g.drawString(player.getTarget().name, 160, 5);
            for (int i = 0; i < npcs.length; i++)
                if (npcs.isDraw())
    g.drawImage(npcs[i].getAvatar(), npcs[i].x, npcs[i].y, this);
    }//end paint()
    The Character class controls the animation for the sprites with these method  (now don't laugh, lol, this was my first attempt at making a full game and animating sprites so =P)public void move(String com)
    int zoneW = inZone.getWidth();
    int zoneH = inZone.getHeight();
    int avatW = avat[avatIndex].getWidth();
    int avatH = avat[avatIndex].getHeight();
    if ( com.equalsIgnoreCase("up") )
    mapY= mapY - 5;
    if (direction != 6)
    time = 0;
    direction = 6;
    if (mapY < 0)
    mapY = 0;
    else if ( com.equalsIgnoreCase("right") )
    mapX = mapX + 5;
    if (direction != 9)
    time = 0;
    direction = 9;
    if (mapX + avatW > zoneW)
    mapX = zoneW - avatW;
    else if ( com.equalsIgnoreCase("down") )
    mapY = mapY + 5;
    if (direction != 0)
    time = 0;
    direction = 0;
    //System.out.println("y: " + mapY);
    //System.out.println("y + avat height: "+ (mapY +avat[avatIndex].getHeight()));
    if (mapY + avatH > zoneH)
    mapY = zoneH - avatH;
    else if ( com.equalsIgnoreCase("left") )
    mapX = mapX - 5;
    if (direction != 3)
    time = 0;
    direction = 3;
    if (mapX < 0)
    mapX =0;
    startAnimate();
    * @see java.lang.Runnable#run()
    public void run() {
    // lower ThreadPriority
    Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
    while (/*true */isAnimate)
    if (time == 0)
    avatIndex = direction;
    else if ( time == 3 )
    avatIndex = direction + 1;
    else if (time == 6)
    avatIndex = direction;
    else if (time == 9)
    avatIndex = direction + 2;
    else if (time > 12)
    time = -1;
    time++;
    try
    // Stop thread for 10 milliseconds
    Thread.sleep(animationDelay);
    catch (InterruptedException e)
    e.printStackTrace();
    // set ThreadPriority to maximum value
    Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
    } //end isAnimate loop
    tFinished = true;
    }//end run()
    public void startAnimate()
    isAnimate = true;
    if (animate == null || tFinished)
    animate = new Thread(this);
    if (!animate.isAlive())
    tFinished = false;
    animate.start();
    else
    public void stopAnimate()
    isAnimate = false;
    avatIndex = direction;
    What you don't see is that "avatIndex" is used by the following method to return the correct sprite image for the animation.public Image getAvatar()
    return avat[avatIndex];
    //return sheet;
    Its not giving me too much trouble to draw the NPCs, when I had problems with drawing NPCs to the map image I just figured it would be best to drawing on the screen and not the map.  But I couldn't figure out how to translate the two coordinate systems.
    This post may confuse readers a lot lol,  so possibly just forget you asked.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Centro reboots when hotsync button is pressed or hotsync application is selected on the Applications screen

    I had a Sony CLie (palm compatible) before and was using palm desktop for CLIE. I just bought Centro, installed palm desktop, hotsync worked fine. I had decided to 'copy everything'. All my contacts are now in centro, but now when hotsync is selected, Palm reboots. I rebooted my PC but no use. I tried using hotsync button as well as hotsync application icon in applications screen to the same result.
    The other minor issue is how to take the hotsync cable out of centro? its tightly fitted in centro.
    Post relates to: Centro (AT&T)

    There is no Reset button on a Centro.
    To soft reset a Centro, you remove the battery, wait at least 10 seconds, then replace.
    Sending all the Clie's data and system files into the Centro may be the cause of all the problems!
    Did you follow Palm's guide to updating to a new device?
    How to Upgrade from a Previous Palm device to a Newer One: http://kb.palm.com/ and enter 12926 (General Upgrade guide) or 45175 (Upgrade to Centro) into the "solution ID:" box (lower right).
    I'd try a Soft Reset first, check for normal operation.  If it still malfunctions, you need to Hard Reset the device and rename you /Backup folder before doing another Hotsync.
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Problem with Map Loader 3.0.28.0 and 5800XM

    Hi all, i have a problem with maps upload to my mobile, whenever i start Map Loader i see a message: You have connected at least one phone (Soft) without a Maps drive. Either you are using an old Map version - .. - or have never started your Maps application... I use USB PC-Suite mode, I have had run Maps application on my phone before i try to connect Map Loader, the Maps version installed on the phone is v3.03 10wk01 b05 - so that's obviously not a reason!! Now i can't install new maps anymore - i just can click this error window away and choose some maps, they would be downloaded from the Internet, but  they would not appear on my mobile! With a previous version of the map loader (don't know the version number any more, and previous maps version on the phone, i have no problem)            I also need a link to Maps Updater due the Nokia site malfunction - couldn't find this software anymore.... sorry my poor english :-)
    Nokia users - the biggest beta test community of the world!

    Problem solved! The STUPID software searchs for ALL mass storage devices attached to your computer, so I got error messages all the time until I unplug my USB Hard drive.    
    Thank you Nokia guys, your were great help by solving this problem   .....  
    By the way,  the STUPID software doesn't shows the maps that would be all ready installed on the phone, and you couldn't say that the upload of the maps was really successful  until you waisting your time watching the progress bar to the end.
      I wouldn't be suprise if you can install the same map twice so it takes the twice space....
    regards, and sorry for my poor english
    Nokia users - the biggest beta test community of the world!

  • Your N97 Menu, Application screen please

    Hi, I'm representing a Fortune 500 Mobile Software Apps* company that would like you to assist in a survey that we are conducting the moment. Please be aware that your contribution is voluntarely.
    See the attached Menu and Application screen. All useless additional applications that unfortunately cannot be removed from the N97 are in the folder Rommel.
    Really curious how you have tweaked (maimed) your device.
    *) just kidding
    Attachments:
    Scr000003.jpg ‏54 KB
    Scr000004.jpg ‏54 KB

    Jokuspot, it came installed on my E72 and my wife's N97 mini.
    on my e72, it seems to be  a free version, does not require licence or anything but when i start the application and share my 3netaccess  a few moments later it automatically stops sharing.
    on the N97 mini, it gives a 10 day trial and it shares just fine, but when testing, it came up with a screen lock and nothing could be done to stop it or even power off the phone without taking the battery out!
    incidently, on my old N95, the app not only worked for free but shared without any of these problems, anyone else miss the good reliable N95, I hope really hope they go and take a good hard look at that device before starting let's say the N98 or N87

  • Computer Resatrting when coming Oracle Application screen

    Dear Fiends,
    I am here in Saudi Arabia Riyadh Al-Rajhi Bank, we are using Unix Oracle application (database 10g). Previous three days I am suffering one issue. I have desktop PC and I am using Oracle application . Everything is OK.
    When I lock my pc and come after some time after unlock computer, And when I am going to oracle application screen(browser is internet explorer and Jiniator 1.3.1.22). It beomes black and system restarts. I have experienced lot of times. All time same thing happens. If Oracle application not running on internet exporer everything is OK.
    But everytiime after unlocking computer this thing happening.
    Any person can help me in this case ?
    Ali Haroon Nawaz

    A number of macbook pros have this problem. a quick search of the forums and the support website would have told you this. next time you should try searching because you would get an answer much quicker. I haven't heard of a fix for it, but maybe someone else knows better.

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • Problem with maps on e72

    Hi everyone
    I've got a problem with maps on my E72.
    I've seen advert that Nokia is going to let everyone use maps for free on selected models.
    I was going to buy Sat Nav for whole Europe as I travel a lot and I was going to change my old N95. I thought I could do both in one new phone. Checked all the available models and chose E72. It said it;s got GPS and you don't need to use your network and spend fortune on internet connection. Got it from eBay for £270.
    I installed Ovi Maps from internet and the first thing that surprised me was it had 'only' 7-8MB.
    I thought that something was wrong, maps for 72 countries couldn't be 8MB big.
    After some time I managed to set my e72 up. Put my Maps on and...
    It takes loads of time to find GPS connection, but the worst thing is if I type lets say Paris it doesn't find anything. Map has wholes, like suddenly the roads end and there's nothing there.
    My question is what am I doing wrong? Do I need to download something more? I didn't have any maps on my phone when I bought it. Where can I find them?
    If someone could help I'd appreciate it.
    Thanks a lot.

    I forgot to mention that when I choose a destination it keeps saying Calculating route all the time. I waited about 15 minutesand it didn't calculate anything.

  • Problem with maps in Mavericks on iMac

    I have a problem with my Maps on Mavericks.
    I can open it just fine, no crash or whatever but the map itself just won't load, whatever mode it is on. Here is the screenshot of my Maps:
    As you can see, it just stays blank all the time.
    I'm  also running Parallels 9 and don't know if that has something to do with problem.

    Spent days trying various fixes, but this is the one that did it for me. Thanks!
    livetowin
    Re: Problem with maps in Mavericks on iMac 
    Dec 8, 2013 7:14 PM (in response to robin1943)
    Try this
    Since my date and time were incorrect and imessage was not working as well, I tried this
    1. Go to system preferences and click date and time
    2. Select date and time tab
    3. Uncheck "set date and time automatically" and manually enter the correct time
    4. Go to time zone tab and uncheck the box there too
    5. Go back to date and time tab and now check the box "set date and time automatically"
    6. Then check the box in time zone as well
    Now open maps and see if it works!

  • 11.1.2 Planning – Mapping Reporting Application

    Hi John,
    I was reading one of your blog
    http://john-goodwin.blogspot.com/2010/06/1112-planning-mapping-reporting.html
    I want to know what is the advantage of using "Mapping Reporting Application" over replicated partioning, and also what should be the real use of "Mapping Reporting Application"
    One example of why you may want to use this functionality is you say you have a reporting database such as an ASO database reporting actuals and you want to push a proportion of the forecast/budget data from the planning application into the ASO model. It could also be that you have a number of different cubes that you need to push different areas of data to from your planning application
    When I first read about this new functionality I assumed it would create a replicated partition and push the data to the mapped database, I thought it would manage the partition so it wasn’t destroyed with a refresh, this is not the way it works though but more about that later.Can you please explain me in detail about the way of working of this functionality
    Thanks & Regards,
    Avneet Singh Bhatia

    I don't know if there is any advantage, it is just a different way going about it, the planning method exports and then loads the data, is that better than a replicated partition I am not sure but everybody has there own opinions.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    Can you open the Preview program without loading a file, like by itself?
    If it doesn't load then I suspect a corrupt Preview preference file.
    Deleting the System Preference or other .plist file
    Can you open other files with Preview, like jpg's and images?
    How about other PDFs? or is it just that one you have downloaded?
    Run through this list of fixes
    Step by Step to fix your Mac

  • I am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    i am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    Notes:
    1) Please use the code tags when posting code or JNLP/HTML. It helps to retain indentation and avoids asterisks and plus sings being interpreted as formatting marks. To do that, select the code/JNLP etc. and click the CODE button seen on the Plain Text tab of the message posting form.
    2) That launch file is invalid. You might check it (and the project in general) using JaNeLA.
    3) The only place that SimpleSerial class could be, that the JRE would find, is in the root of aeon.jar. Is it actually there?

  • I am facing a caching problem in the Web-Application that I've developed us

    Dear Friends,
    I am facing a caching problem in the Web-Application that I've developed using Java/JSP/Servlet.
    Problem Description: In this application when a hyperlink is clicked it is supposed to go the Handling Servlet and then servlet will fetch the data (using DAO layer) and will store in the session. After this the servlet will forward the request to the view JSP to present the data. The JSP access the object stored in the session and displays the data.
    However, when the link is clicked second time then the request is not received by our servlet and the cached(prev data) page is shown. If we refresh the page then request come to the servlet and we get correct data. But as you will also agree that we don't want the users to refresh the page again and again to get the updated data.
    We've included these lines in JSPs also but it does no good:
    <%
    response.setHeader("Expires", "0");
    response.setHeader("Cache-Control" ,"no-cache, must-revalidate");
    response.setHeader("Pragma", "no-cache");
    response.setHeader("Cache-Control","no-store");
    %>
    Request you to please give a solution for the same.
    Thanks & Regards,
    Mohan

    However, when the link is clicked second time then the request is not received by our servlet Impossible mate.. can you show your code. You sure there are no javascript errors ?
    Why dont you just remove your object from the session after displaying the data from it and see if your page "automatically" hits the servlet when the link is clicked.
    cheers..
    S

  • Problem while deploying ADF application to standalone WLS server

    Hi,
    I am facing a problem while deploying ADF application to standalone WLS Server.
    Following is the error message that I am getting.
    [07:24:03 PM] ----  Deployment started.  ----
    [07:24:03 PM] Target platform is  (Weblogic 10.3).
    [07:24:07 PM] Retrieving existing application information
    [07:24:08 PM] Running dependency analysis...
    [07:24:08 PM] Building...
    [07:24:13 PM] Deploying 2 profiles...
    [07:24:14 PM] Wrote Web Application Module to D:\WorkSpace3\DashboardUi\deploy\Dashboard.war
    [07:24:14 PM] Wrote Enterprise Application Module to D:\WorkSpace3\deploy\Dashboard.ear
    [07:24:14 PM] Deploying Application...
    [07:24:22 PM] [Deployer:149191]Operation 'deploy' on application 'Dashboard' is initializing on 'msDevServer1'
    [07:24:27 PM] [Deployer:149193]Operation 'deploy' on application 'Dashboard' has failed on 'msDevServer1'
    [07:24:27 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application Dashboard on msDevServer1.: .
    [07:24:27 PM] Weblogic Server Exception: weblogic.application.ModuleException:
    [07:24:27 PM] Caused by: weblogic.common.ResourceException: DataSource DashboardDb already exists
    [07:24:27 PM]   See server logs or server console for more details.
    [07:24:27 PM] weblogic.application.ModuleException:
    [07:24:27 PM] ####  Deployment incomplete.  ####
    [07:24:27 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)Any suggestion how to fix this.
    Thanks
    Ajay

    I logged into console and browsed to 'Home >Summary of JDBC Data Sources' but not able to locate DashboardDb. Please let me know where to find DashboardDB on wls console.
    Also, please let me know how to configure the app to not to auto-deploy JDBC data sources

Maybe you are looking for

  • ADVICE NEEDED-URGENT

    Hi Gurus, My requirment is such that i have to split a single sales data into many records based on material. ( A material 'AA' has some X components, i have to split the data for that material'AA' into X records. Each record corresponding to a parti

  • IPhone 5 - Swap - Warranty problem

    Hi, I bought an iphone 5 in October 2012, last month I send it to legal warranty of 24 months (In Portugal), the iPhone has been replaced, the report from the technical assistance said that the equipment has been "swap", I receive a "new" iPhone, but

  • IPhone 6 rotating issue.

    My iPhone 6 does not rotate on occasion. Only fix is a hard restart. Apple is really losing their edge. Maybe it's time for a change.

  • My i phone 4 has terrible reception how do i fix this??

    My i phone 4 has terrible reception and cant get wireless connection down stairs when my i pod 4 does i have restarted my phone and i cant update with 7.03 because of some reason?? PLEASE HELP!! Its annoying when i ft down stairs

  • The "application" object

    the "application" object can be called within a JSP file. What if I wanna call it within a JavaBean class? How do I instantiate it?