Cursor remains in the selectionscreen even after giving the possible inputs

I am working for an Upgrade project (upgradation from 4.6 version to ECC 6 version) and the problem is in the ECC 6 Version.
When I press on the execute button or F8 from the selection screen by giving all the possible inputs, cursor position still remains in the same screen giving some status message in some different language other than English which i cannot understand i.e. Program is maintained in some other language other than English.
This program is giving output for the same inputs in the 4.6 version.
can anyone help me regarding this issue by letting me know some possible solution.

Hi,
execute in debigging mode and analyse the results. you can find out the problem were it is coming from.
regards.
sriram.

Similar Messages

  • Protect The Cells in the Excel Sheet Even After giving the password.

    Hi All,
    I need to protect the cells in the report even after unprotecting the sheet after giving password.
    That is, i have used some excel formulas in some cells, these cells are to be protected.
    In Reports using EVDRE all the cells are getting, "Locked" option selected in the Protection tab by default. Even if we change that Option and refresh the sheet Locked is getting selected again.
    So once we Protect the sheet using password all cells are getting locked. But once we remove password all cells are free to enter.
    I want the user of the Sheet to use only certain columns in the Sheet. and all the other columns should not be user editable.
    Please help me out in solving this issue.
    Thanks in Advance,
    Regards,
    G.Vijaya Kumar

    Hi Vijaya,
    I tested in my test environment and even after refresh , the range cells are still editable, they didnt get locked. I did the following:
    1. Selected the range or column in Excel, then Tools - Protection - Allow users to edit range. I selected the range and gave the password.
    2. Next I protected the complete sheet.
    3. Now entire sheet is protected. Now again I selected the range in which I want to edit, first time it will ask for password which you gave for the range. So I gave and I was able to edit the cells.
    4. I selected other cells and was not able to edit it so they are still locked.
    5. I tried to refresh the report , and then I selected the range cells to edit and still I was able to edit it. Those cells didnt get locked.
    So did you do the same things?
    Thanks.

  • Lightroom crashed and now I can't open the catalog - even after deleting the lock file.

    Lightrooms crashed, which is a common occurrance. But, this last time was different. After I restarted it my catalog was not linked and all my settings were gone. I tried opening the catalog through the file menu, but absolutely nothing happens. I tried going to the folder and clicking on it but this only opens lightroom with no catalog. After having scanned this forum I found that I need to delete the .lock file, but after doing that the same things happen. Any suggestions on how to open my catalog? Will reinstalling Lightroom help?

    The problems mostly happen when I am using X-Y compare in Library mode. It shows black rectancles over the tops of the sections that contain the photos and these flash. They aren't always the same size, but are only on the top of the section - never big enough to completely cover the photos. Then I get anywhere from one to about four or five extra windows stacked on top of the Lightroom Icon at the bottom of my screen (I use Windows 8) opening and closing, though there isn't enough time for me to click on them and read them because my computer gets so slow that my mouse actin is delayed by a few seconds. And, to shut Lightroom down, I need to use Windows task manager because clicking on the little red box with the X in the upper right corner accomplishes nothing. I have a new Sony Vaio i5 chip and 8Gb RAM. This also hapened on my old computer, though not as often

  • Hi, my iphone 4 has diaplay priblems. that is once in a while the display gets distorted, fuzzy or in other words blurry. it happens with all the applications. even after eastrting the phone it works fine for few minutes and again the problem reappears.

    please help me fix the problem with my iphone 4. the display becomes distorted, fuzzy and blurry once in a while. i have no idea whi this is happening. how can i fix my phone?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use..
    If necessary...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414

  • Optimizer not using index even after giving the hint

    Hi All,
    I am wondering why Optimixzer is not using the index in the below query
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    SQL> select column_expression
      2  from ALL_IND_EXPRESSIONS
      3  where table_name like 'GTXN_DTL_V1'
      4  and index_name = 'IDX_TXN11_V1';
    COLUMN_EXPRESSION
    TO_DATE("BOOKING_DATE",'YYYYMMDD')
    SQL> select num_rows from all_tables
      2  where table_name like 'GTXN_DTL_V1';
      NUM_ROWS
      29020867
    SQL>  explain plan for select * from gtxn_dtl_v1 where to_date(booking_date,'yyyymmdd') = to_date('030109','DDMMRR');
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3140624094
    | Id  | Operation         | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |             | 55489 |    15M|   215K  (4)| 00:43:08 |
    |*  1 |  TABLE ACCESS FULL| GTXN_DTL_V1 | 55489 |    15M|   215K  (4)| 00:43:08 |
    Predicate Information (identified by operation id):
       1 - filter(TO_DATE("BOOKING_DATE",'yyyymmdd')=TO_DATE('030109','DDMMRR
    14 rows selected.
    --Giving Hint..
    SQL> explain plan for select /*+ index(gtxn_dtl_v1 IDX_TXN11_V1) */ *
      2  from gtxn_dtl_v1
      3  where to_date(booking_date,'yyyymmdd') = to_date('030109','DDMMRR')
      4  /
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3140624094
    | Id  | Operation         | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |             | 55489 |    15M|   215K  (4)| 00:43:08 |
    |*  1 |  TABLE ACCESS FULL| GTXN_DTL_V1 | 55489 |    15M|   215K  (4)| 00:43:08 |
    Predicate Information (identified by operation id):
       1 - filter(TO_DATE("BOOKING_DATE",'yyyymmdd')=TO_DATE('030109','DDMMRR
    14 rows selected.Please suggest.
    Thanks in advance,
    Jeneesh

    porzer wrote:
    Hi!
    Why are you using the to_date ont the booking_date column? Is it a varchar2 column, what type is it.
    Because if it's a varchar2 column you could simply use
    select * from gtxn_dtl_v1 where booking_date = '20090103';
    So you wouldn't even need a function based index.
    On the other hand if it's a date you shouldn't do a to_date as well.
    Best regards,
    PPThat is not the original qury used in production. I am investigating on the prformance of the below query.
    select  txn.account_number,to_number(txn.amount_lcy) txn_amt,to_date(booking_date,'yyyymmdd') TXN_DATE,
          sal.latest_sal,sal.sal_date,customer_name,employer_name,
           decode(COMMUNICATION_TYPE_1,'MOBILE',COMMUNICATION_NO_1,decode(COMMUNICATION_TYPE_2,'MOBILE',COMMUNICATION_NO_2)) mob,
           txn.CURRENCY, CHEQUE_NUMBER,trans_dets,trans_reference,target,teller_id,acc.category,acc.inactive_marker,acc.posting_restrict,cus.sector,cus.industry
    from coreadmin.Gtxn_dtl_v1 txn,
                   (select account_number,round(to_number(nvl(amount_lcy,0)),2) latest_sal,TXN_DATE sal_date,rr
                    from
                      (select to_date(booking_date,'yyyymmdd') TXN_DATE,batch_id,account_number,amount_lcy
                             ,row_number() over (partition by account_number order by to_date(booking_date,'yyyymmdd') desc NULLS LAST,batch_id desc nulls last) rr,
                             CURRENCY, CHEQUE_NUMBER,trans_dets,trans_reference
                        from coreadmin.Gtxn_dtl_v1
                        where transaction_code = '204'
                    and to_number(amount_lcy) > 0)
                        where rr = 1
                     ) sal,customers_live cus,accounts_live acc
    where to_date(booking_date,'yyyymmdd') between to_date('030109','DDMMRR') and to_date('030209','DDMMRR')
    and txn.account_number = sal.account_number
    and txn.CUSTOMER_ID = cus.CUSTOMER_number(+)
    and acc.id = sal.account_number
    and target in ('30','31','32')Edited by: jeneesh on Mar 25, 2009 12:38 PM
    Corrected the query.
    The column is of VARCHAR2 type. This is because, the table is loaded, through sqlldr, every day from flat files generated form GLOBUS banking system. Column is kept as VARCHAR2 to minimize the loading issues.

  • Firefox 4.0 will not open at all. It shows that the process is running in the task manager but will not open the window even after closing the prcess and restarting.

    I have had firefox since an earlier 2. version and have been able to upgrade as normal. After the installation is done it will not open at all. I have restarted and even uninstalled all previous version .exe and still nothing. I am using windows 7 OS. I am still running 3.6.8 and would love to see the new one running on my laptop.

    hello, this crash is caused by Websense Endpoint security software that is running on the system. please try to install all the updates for this program that are available...

  • In my preferences on my mac mini when i click it, i find the lock the open even after changing the password what would cause this?I use my home wifi network and have never given the password out,as I asked what could cause this?

    What could cause the lock in my preferences to seemingly to click open on there own,I use my home wifi network which is private and have never given out that password either for my network or preferences password.....help,Thank you

    You're welcome.
    Voicemail is left at your carrier's server. That will continue to work unless you report your iPhone as lost or stolen with your carrier.
    You may never find it again and you can't if the iPhone remains offline or out of service which means the iPhone is powered off or doesn't have cellular reception.

  • I want to turn my macbook air off. the shut down button already appeared but the mouse/cursor just hang and won't work. even after pressing the enter button to shut my mac off won't work. what will i do?

    i want to turn my macbook air off. the shut down button already appeared but the mouse/cursor just hang and won't work. even after pressing the enter button to shut my mac off won't work. what will i do?

    This is not a reply. I just want to elaborate on this problem.
    My computer freezes occasionally when it is used after being sleep for a while. The spinning ball appears and everything is totally disabled. Nothing on the keyboard works.
    The mouse moves, but does not work.
    The only solution is to turn the power off and on (losing all data in open applications.)
    I kept the System monitor running on the side to find out which program was running when the computer froze. The Monitor as well as all other applications froze, but the data showed:
    Firefox 18.4%
    Activity Monitor 0.9%
    Firefox Plugin 0.2%
    This is all the information I have. By the way, I am using iMac with OS 10.6.

  • I am trying to open iPhoto 9.3.2 on my iMac with OSX 10.7.4 and even after downloading the iPhoto updater it still will not open.  Any suggestions.

    I am trying to open iPhoto 9.3.2 on my iMac with OSX 10.7.4 and even after downloading the iPhoto upgrader it still will not open.  Any suggestions.

    Resetting Printing System helps OS X recognize new printers.
    http://support.apple.com/kb/HT1341
    When you add the printer, make sure you use IP > Jetdirect and the correct printer IP address.

  • Why is the Lightroom preview folder so big, even after purging the 1:1 previews?

    1:1 or full-size previews take up a large amount of HD space, often many 10's of GB's. This is why building them on demand is an alternative to building them up front, and why you have options for auto or manually purging them. That said, it may not always be possible to delete 1:1 previews - more later. 
    Standard-sized previews are based on the pixel size option you chose in Catalog Settings. You have 4 choices: 1024, 1440, 1680 and 2048. If all you want is standard-sized then choose a size equal to or greater than your screen size. Lr also builds smaller versions at the same time. These are used for the thumbnail, 1:2, 1:3 and 1:4 zoom levels. Adobe call this the "preview pyramid". 
    1:1 previews will not be deleted unless your chosen standard-sized preview is less than half the size of the full-sized preview. For example, you have images with pixel dimensions of 3072 by 2048 pixels (6MP camera such as Canon 10D) and have selected 1680 pixels for standard-sized previews. Since a 1680 pixel preview is more than half the size of the original the full-sized preview will be kept, even after using the purge 1:1 preview command. Had you chosen 1440 pixel for standard-sized previews then the full-sized would have been purged (i.e. 3072/2=1536, which is greater than 1440). Now take the example of a larger camera, say a 8MP camera such as the Canon 1DMKII with an image size of 3504 by 2336 pixels. With the standard-sized set at 1680 pixels the full-size will again be purged (i.e. 3504/2=1752 pixels, which is greater than 1680 pixels). 
    Another thing worth mentioning - Lightroom will usually delay purging previews for deleted images until after the application has been closed and reopened, even then it might take a few minutes to clear the purged previews. The idea here is to ensure the previews don't get deleted whilst there's still a chance that they may be needed (e.g. you removed images by mistake then use Undo command to reinstate them). 
    Hopefully above explains why Lightroom doesn't behave as you expect. If it makes your head spin, think how much mine spun when writing it.

    The chance of an answer is inversely proportional to the length of the posting. ;)
    You do not indicate what your preview setting was while you accumulated a 12Gb preview folder. Nor do you indicate how many images are in your catalog.
    Given your screen size of 1280 (laptp?) I would set the preview size to 1440 since this is still far less than half of your D3 images.
    Cropping - I'll safely guess - has no effect on your preview size choices.
    I confess that preview sizing and purging is confusing. I avoid the confusion by shouting "more disk, mama".

  • I had original iPhoto app from 2007, but in the last year it stopped working seemingly out of nowhere.  Now I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater.  My pictures are lost in the abyss.

    I had original iPhoto app from 2007 or 2008, but in the last year it stopped working seemingly out of nowhere.  Now I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater.  My pictures are lost in the abyss.
    I'm using OS Extended 10.9.5.  I don't know what the original version of iPhoto was.

    I just installed iPhoto 9.5.1 but it won't open even after downloading the iPhoto Library Updater
    Have you run the iPhoto Library Upgrader? You need to direct it to the location of your old iPhoto Library by clicking the "Choose Library" button in the lower right corner of the panel you are seeing when the upgrade starts.

  • I dropped my ipad and the screen blacked out and could not be turned on even after pressing the sleep and home button

    I dropped my ipad and the screen blacked out and could not be turned on even after pressing the sleep and home button.
    I tried connecting the device to my computer and itunes said that it could not identify my device.

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • Why FF usaes 25% of CPU, even after closing the application..?

    After opening two or more browser, automatically FF stars using 24/25% of CPU.
    Even one tab having Youtube running.
    As well as using huge amount of memory, and this gradually increases.
    Closing the application doesn't solves the problem.
    After that the application doesn't opens. A window appears and shows.. Firefox already running and is not responding.
    Going to Task manager and kill the process solves the problem.
    And it's happening every time.
    In cyclic order need to follow the annoying process.
    .....Tried the processes but NO result found.....
    Re-installation of FF didn't worked.
    Re-installed Flash player.
    No malware found by Malwarebytes.
    Even tried running FF in safe mode. (disabling all plugin and extensions)
    And the result is.... NO progress. CPU 25% usage and had to kill the task.
    Please some one help.
    (OS: windows 7 professional)

    Your computer isn't getting slower, it's other things demanding faster.  If you are installing all the possible updates to software those will be designed for newer computers.  Once you start browsing you're browsing a web designed by people who because they spend all their time designing pages they themselves have powerful machines with fast connections because it is their job.  It's like if all city streets were designed by racecar drivers.  A 2008 computer is already considered vintage by Apple and close to no longer being supported in any manner.  Vintage and obsolete products - http://support.apple.com/kb/HT1752  I have an even older computer than you and it is annoying but that's the way things are.
    Frankly 4-6 icon bounces doesn't sound long to me.  Don't forget that for applications such as iTunes how long it takes to open will also depend upon the size of the library.
    I don't think CPUs wear down.  Conceivably some slow-down could be the result of excessive bad sectors on a hard drive but you say you replaced that (and I would expect it to have shown more serious symptoms were that happening).
    You can use Activity monitor to check your RAM usage.  Newer applications and newer OS versions will require much more RAM than posted "minimum"  If a computer doesn't have enough RAM it starts using the hard drive which is slower than chips.

  • SAPgui.exe is running even after closing the GUI components

    Hello All,
    Even after closing the SAP GUI components like Bex, WAD or RSA1 etc... i am able to see these processes are running under the Task Manager--> Processes....
    even if i try to restart the system, error messages are occuring...saying that SAP is still opend...
    Why it is happening, any ideas?
    Thanks,
    Ravi

    Hi Dirk,
    Thanks for your infomation. Infact, apart from this problem, i have the problem with saving the webtemplate. As it is taking much time to save a template after modifications, i had to terminate the wad process. It seems above 2 problems are related....any ideas?
    Thanks
    ravi
    Message was edited by: Ravi Pasumarty

  • Problem: Video on slide one continues to play and can be heard in the background, even after the user has navigated to another slide.

    Problem: Video on slide one continues to play in the background, even after user has navigated to another slide.  This only happens on a fresh reload of the page.
    Has anyone else had this problem, or found a solution?
    If you refresh the page and start over, the problem doesn't happen.  But on the first page load it always seems to happen.
    Here is a link to the module I am working with.  If you let the video play for a couple seconds on the first slide, and then click a navigation link to another slide, you will still hear the audio from the first slide playing.
    http://www.thepettitgroup.com/tn/module_01_unit_01A/multiscreen.html

    To clarify - this happens in both IE and Chrome, and is the Flash version of the content.

Maybe you are looking for

  • How do i write a if statement in SQL?

    say, I have a table has 3 fields: item, invoice, cost In report, if invoice='123', show cost1, if ivoice='456', show cost2 thanks.

  • Arch thinks sound is working, but it's not (Guest in KVM / QEMU)

    Hi chaps, I have an Archlinux virtual machine running the very latest Arch-goodness. It's running inside Kvm-Qemu on a Ubuntu system (don't hate me plz!! ) I have setup the sound to emulate an Intel AC97: <sound model='ac97'/> And when I load the Arc

  • GUI_DOWNLOAD give 2 bytes for each chinese character - I need fixed length

    Due to the Unicode system takes each Chinese character as a byte, the field(10) can take 10 Chinese Characters, not like before only 5 characters allowed. The problem is when the data is downloaded to a txt file. Some records contains only Western Eu

  • Title and Credit template question

    Is it possible to create a "master" title/credit template, so that when a change is made to the master, it's reflected in all the titles/credits upon which it's based? I have a project with 16 clips, each with a title and a credit. I'd like not to ha

  • Word 2004 Help

    ok, i dont want to ask microsoft for help on this and i dont know where else this would fit... i have a bunch of photos in a word document in Word 2004 for Mac and I would like to know how I can take those photos and send them to iPhoto quick respons