Cells contain the word "ERROR"

Hi,
A report runs without any problems. The only strange thing is that some cells contain the amounts followed by the word ERROR (e.g.: 1.332,00 ERROR).
This doesn't seem to be related to aggregation behaviour or different currencies/ units of measure (in that case you'd get a [], X, or *). I  don't recall having ever seen this in BEx.
I already tried debugging it ("no parallel processing", "do not suppress warnings", breakpoint at message handler) but I couldn't find anything...
Thanks,
Gerrit

Hi Gerrit,
Pls. check the currency of the Amount field. if its not there then it will display with ERROR. or to remove the error use NODIM...
Thanks,
Vachan

Similar Messages

  • Calculated key figures are returning the word "ERROR"

    Hi All,
    the calculated key figures which i used in one query are displaying the word  "ERROR" at the end of the results as part of each cells formatting.But when i copied the same query to my system then its not showing the word error and even i created one more query which is a replica of the first one and then also iam not getting the error .
    what might be the cause of this issue . kindly suggest me how to control the word error in the out put
    regards,
    jayakrishna

    Hi,
    you can control the way BW displays exceptions with customizing (SPRO) transaction RSCUSTV4.
    identify differences of these settings in your systems and apply them accordingly.
    hope this helps...
    Olivier.

  • "This page contains the following errors: error on line 1 at column 1: error on line 1 at column 1: Encoding error Below is a rendering of the page up to the first error"

    I am getting this error since purchasing my latest book:
    “This page contains the following errors: error on line 1 at column 1: error on line 1 at column 1: Encoding error
    Below is a rendering of the page up to the first error”
    This message also appears on some, but not all books I purchased earlier.
    I've tried to restart my iPhone (5) and downloaded iBooks (and the books itself) again several times but nothing has changed. I’m also synced the iPhone via iTunes without luck.
    It’s the latest version of iBooks from Appstore. The same books on iBooks for iPad and Mac working fine!
    iOS 7.0.6
    iBooks 3.2 (2083)

    Did you Reset your iphone?

  • Ibooks Error This page contains the following errors: error on line 1 at column 1: Document is empty error on line 1 at column 1: Encoding error Below is a rendering of the page up to the first error

    I am getting this error with my latest Ibook,
    This page contains the following errors:
    error on line 1 at column 1: Document is empty error on line 1 at column 1: Encoding error
    Below is a rendering of the page up to the first error
    Can anyone offer a fix?
    Thanks
    Paul

    I have the same problem. I've tried to restart my Ipad and downloaded the book again several times but nothing has changed. There aren't any reviews on the book with that problem and I've got the latest version of iBook so I don't know what else I can do to get the book which I've paid for. Does anyone have another idea what I could do? (maybe one of the above might help you, Paul)
    Thanks

  • This page contains the following errors:

    More and more often I'm getting this message in Safari. I don't recall every getting this message at all until recently and every day it seems to have more and more. What's the issue and is there anything I can do about it?
    This page contains the following errors:
    error on line 1 at column 1: Extra content at the end of the document

    Hi,
    www.logitech.com/revolution works fine on my version of Safari (2.0.4 v419.3) so it's not specifically a Safari bug as such.
    One quick test you can do to help narrow down things is to try Safari in another user account.This will help us to know whether your problem is local to your account or system wide. If you don't have another account you can use System Preferences -> Accounts -> [+] to create a test one (and [-] to remove it if needed)
    For your your internet connections are you using any proxies? (You can check in the System Preferences -> Network pane)
    Also, what Safari add-ons have you both added in the past? Maybe we can track it down to a common add-on between you both.

  • I have two fields and I would like the 2nd field to display the word "Error" if the number is smalle

    I have two fields and I would like the 2nd field to display the word "Error" if the number is smaller than the number in field 1.
    can any one help?

    The code for the field? Sure, it's simple.
    You can use something like this as its custom calculation code:
    var v1 = this.getField("Field 1").valueAsString;
    var v2 = this.getField("Field 2").valueAsString;
    if (v1 && v2 && Number(v2)<Number(v1)) event.value = "Error";
    else event.value = "";
    Edit: Fixed code

  • Getting an error message "this page contains the following errors" after downloading books to I pad from bookstore. Also now getting same message on previously downloaded books. What gives?

    Getting an error message starting with "this page contains the following error" and continuing with various details in books recently downloaded from the Books app on an I Pad. Also now getting the same message on previously successfully downloaded books. Anyone know whats happening/how to fix? thanks

    Try rebooting your iPad. To reboot your iPad, hold down the sleep/wake button and the home button simultaneously until the screen goes black and the Apple logo appears. If, during this process, a slider appears on the screen to power it off, ignore it and keep holding the buttons down.
    Rebooting your iPad can solve a lot of problems. Try it and report back.

  • The SQL statement "SELECT * FROM "SDBAH"" contains the semantics error[s]:

    Hello all together,
    actually I try to implement an user interface for using BRTools from a J2EE Application.
    I created a datasource-alias "BRTOOLS" using netweaver administrator.
    inside the implementation i execute the following code:
    DataSource ds = (DataSource) ctx.lookup("jdbc/BRTOOLS");
    Connection con = ds.getConnection();
    String query = "select * from SDBAH;";
    Statement stmt = con.createStatement();
    try {
       ResultSet rs = stmt.executeQuery(query);
    As the result I get the following message:
    The SQL statement "SELECT * FROM "SDBAH"" contains the semantics error[s]: - 1:15 - the table or view >>SDBAH<< does not exist.
    Using SQLplus or dbconsole I can see and use the table SDBAH. The table scheme is "SAPSR3DB"which is the standard scheme for J2EE.
    If I try:
    select * from SAPSR3DB.SDBAH;
    I get the same result.
    What is wrong in my constellation?
    Thank you very much in advance.
    Greetings Stephan

    Dear Yordan,
    yes I did a restart of the whole system.
    If I do a wrong lookup:
    e.g:
    DataSource ds = (DataSource) ctx.lookup("jdbc/BRToolsFailure");
    where Alias  "BRToolsFailure" does not exist, I get
    Object not found in lookup of BRToolsFailure.
    So I think that the Alias of the default data source is right and visible.
    Next try:
    I use an already existing alias "ADS" in my code and get the same message:
    The SQL statement "SELECT * FROM "SDBAH"" contains the semantics error[s]: - 1:15 - the table or view >>SDBAH<< does not exist.
    If I extend the tablename with the scheme-name "SAPSR3DB" I get the following:
    The SQL statement "SELECT * FROM "SAPSR3DB"."SDBAH"" contains the semantics error[s]: - 1:24 - the table or view >>SDBAH<< does not exist
    When I use SQLPLUS SAPSR3DB/password and call:
    select * from SDBAH;
    I get a result like expected.
    Thanks a lot,
    Stephan

  • Store Tile has the word "error" under it for 1 user

    I have 1 user that the "Store" tile does not work, it has the word "error" inside the tile.  Any suggestions?

    Hi,
    Thank you for your posting in windows Server Forum.
    Please refer below articles might helpful for your case.
    1.  Help! My Live Tiles aren’t Working!
    2.  Windows 8 Store tile not working (2 &3 are different threads)
    3.  Windows 8 store tile not working
    Hope it helps! 
    Thanks,
    Dharmesh

  • How to find a word and copy the phrase containing the word without using the mouse

    I am using a macro to fill in a form and select fields in the form. The fields are titled and i want to use the field title to select the field and thus need to copy the name to compare with the search text and tab to the next requested field.

    Ctrl+f opens the search in page feature. However, the result is not automatically selected and ready for copying. And since you already typed the query, you wouldn't really save any time that way...
    Firefox has some accessibility features you could explore: [[Accessibility features in Firefox - Make Firefox and web content work for all users]]. These include placing a movable cursor into the page, or searching/selecting using / and other possibly useful items. Maybe between them you can find a good workflow. If not, maybe an add-on?
    ''Edit: Here's an example of how to select the word accessibility in this post:''
    Type:
    /acce
    Press:
    Esc, Ctrl+Shift+right
    ''Edit: Actually it works with Ctrl+f as well, and that might be better if the word is common so you can use Next/Previous.''
    Press:
    Ctrl+f
    Type:
    acce
    Press:
    Esc, Ctrl+Shift+right

  • When emailing from iPhoto, the recipients address comes up incorrect, even though it is correct in both my email accounts.  How do I edit it?  I have changed it, but the next time it appears it contains the same errors.

    When emailing from iphoto with a template, the recipients' address comes up incorrect (a couple of letters are wrong).  The addresses are correct in both my email accounts, including the one I am using for the iphoto email.  I have corrected the address prior to sending the email, but they come up with the same errors the next time I choose them in the iphoto 11 program.  How do I correct thes email addresses?  thank you

    In Mail Preferences/Accounts/each GMail account, set up the SMTP Outgoing Server for each account separately, going into SMTP name/edit/Advanced and specify the Username of each account.  The Outgoing servers must be two different servers, authenticated by the Username and Password of each.
    Otherwise, the GMail SMTP server will change the from address to that of the account where the SMTP server was setup.
    Ernie

  • My book on iBooks on my pad: "this page contains the following errors: error on line1 column 1"

    I'm trying to continue reading my book and I get the above Msg

    Assuming that the book is still available in the store, then have you tried deleting it from yoru bookshelf and then re-downloading it via the Purchased tab in the ibookstore in the iBooks app ?

  • Since I updated to the latest version, I keep getting a message that the server can't connect with urls containing the word "file" . I just want the messages to stop. It's working just fine otherwise.

    See above. Message comes up every hour or so. Three times in a row.

    Restart the iPad by holding down on the Sleep button until the red slider appears and then slide to shut Off. To power up hold the Sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the Sleep and Home buttons at the same time (for about 10-15 seconds) until the Apple logo appears (ignore the red slider), then let go of the buttons.
    If the proble is associated with not being connected via wireless, look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Turn Off your iPad. Then turn Off the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    On your iPad go to Settings > General > Reset > Reset network settings and see if that enables you to connect.
     Cheers, Tom

  • Cannot send to Youtube. The words? How is this fixed? ALERT errors come up

    Cannot send to You Tube. ALERT comes up and the word error. Why? What can be done to correct this?

    Check to see if you main hard drive is getting full.  Do a repair permissions on your hard drive with the Disk Utility.  Check to make sure your username and password are correct for your Youtube account.  If those don't work, a $3 solution is to use Veescope Video Converter to convert your Quicktime movie to Youtube.  You'll need to share your video to a Quicktime file from iMovie and them drag it into Veescope Video Converter to upload it to Youtube.

  • I can not print a report from my quicken program because the printer name has the word on in it

    I recently purchased and installed a HP Officejet Mobile L411 printer. For all apps. on my computer (Window&) the printer name is as follows: HP officiate Noble L411. On my Quicken program the printer name is as follows: HP Officejet Mobile L411 on USB001. In checking Quickens help/troubleshooting guide, Ifound thirst statement, make sure the printers name doesn"t contain the word "on". My question is how do I get my printers name in Quicken changed so it doesn't contain the word "on"

    Try opening the PDF in Preview and see if it will print out of it.

Maybe you are looking for

  • Reg Query For Multiple Text Fields

    Hi all I am New to this forum.. I am developing an application for generating reports. In my application i have multiple text fields. The user might enter any of the textfields or even enter all the fields. In those cases how to use the query when so

  • Why does my iPod Classic keep pausing while playing music in a dock?

    Hi, can anyone help with this? I am playing music through the iPod Classic on a Philips docking speaker and every few minutes it pauses. This is so maddening, what can I do to stop it. Thanks

  • Problem connecting database

    after some time my system show message ('Oracle Shutdown or intializaion is in progress' is there is any solution for this problem because i have to install new windows to rectify this problem so kindly help me out regards

  • SIGSEGV (11)  during offscreen only rendering

    Hello! I've got some troubles during offscreen only rendering, I've used OffScreenCanvas3D.java from PrintCanvas3D example and added some code to use it: public void test()         GraphicsConfiguration config = SimpleUniverse.getPreferredConfigurati

  • Writting exception within cursor for loop

    I have two cursor for loop as for rec1 in () loop --loop 1 for rec2 in () loop --loop2 <statements> end loop; end loop Now I want to handle exception within my second for loop so that after terminating the loop it will again go to the first loop... H