Suppressing Bex Messages

Hi,
I have a condition in my query and because of this I got a message popping-up when running the query.  The instruction said i can deactivate the message using RSRT1.  So That's what I did.  I took note of the BRAIN no. 144 and and tick on the suppress message in RSRT1.  The problem is, after doing this the message still continue to pop out.  Does anybody knows if I missed out something?
Thanks for helping.
Best Regards,
Rose

Hi Ravi, Diogo and Alok,
Thank you very much for the immediate reply. 
Yes I checked the condition.. statement and I need to have it that way. 
I did not forgot to save after ticking on the suppress check box in RSRT1. 
Infact I save it several times.  I also tried saving the query after that and
it still it doesn't work.
Then I tried out one more thing.  Within Bex (Excel) I disconnect from
the server reconnect and run the query again.  That is the time that it worked.
Anyway thank you all for your help.
Regards,
Rose

Similar Messages

  • Where do I suppress Bex Query Message

    Experts -
    My users are getting an error message on their Bex Query "Characteristic xxxxx was changed in InfoCube xxxxx. Adjust the query".
    I searched SDN and I found out that if you go to TCODE RSRT and then TCODE SUPPR_ALL, you can then suppress the message globally.  Well, this above message is not found anywhere in TCODE SUPPR_ALL.  
    I then found out that if you go to TCODE SE91, you can find your message there. I did...its Message #651.  But, how do suppress this message from ever showing up on the users BEX Query?
    Thanks!!

    Suresh -
    "Go to RSRT -- give the query name click on the messages tab and try to supress there."
    Result:  I did this too and I dont see message #651 for my specific query
    "In Bex tool bar click the last but one icon.There you can suppress warnings from the server"
    Result:  what Bex tool bar?  I am using the portal to display this report.

  • Suppress Warning Messages

    Each time i make any change to the query and execute the query on Web I see message like the Query has chnaged etc.I tried to suppress these message by making the "Warning Visble" and "System Messages" to OFF in WAD. But still i get these messages.We are on NW2004s.Any suggestions?

    Have you tried this:
    How to suppress BEx warning messages…
    1)     transaction RSRT
    2)     transaction SUPPR_ALL
    3)     check message to be suppressed
    4)     save
    5)     this must be done in all clients where message needs to be suppressed.
    This affects all warning messages.
    You can suppress a BRAIN message for ALL queries. It is included in Support Pack 12 in Netweaver 2004s. If you are not to SP 12 yet, you can implement OSS note #1009903.

  • Suppressing Substitution messages in SQL

    I have a SQL script which generates activity report for a user specified date. User inputs a date which is then stored in a variable. When this variable is substituted in a sql statement by its valus it displays message
    old: .......
    new: .......
    There must be a way to suppress this message so it will not appear within the report. Please help.
    Following is the script which user will invoke throug a menu menu outside of SQL:
    /*     test.sql     */
    prompt Enter a date in format YYYYMMDD (for example: 20030122)
    accept reqd_date number prompt 'DATE:>'
    select 'US ACTIVITY LOG REPORT FOR', to_char(&reqd_date) from dual;
    prompt =====================================
    prompt
    prompt USERID ID ACTIVITY COUNT
    prompt ------ -- -------- -----
    prompt
    break on userid
    select userid, us_id, type_of_activity, sum(number_records)
    from us_activity_log
    where to_char(start_time, 'YYYYMMDD') = to_char(&reqd_date)
    group by userid, us_id, type_of_activity;
    prompt
    prompt END OF REPORT

    set verify off;

  • Suppressing warning messages

    Hi there
    I'm working on an FAPI client at the moment, and the client needs to be scriptable.
    Unfortunately, problems arise if FrameMaker has to display certain modal error or
    dialog boxes like "This file was created with an earlier version of FrameMaker," or "Cannot display some imported graphics" or
    "Document named X uses unavailable fonts, to reformat the document using available fonts, click ok". The script will hang pending user input.
    I'm wondering is there anyway to programmatically suppress these errors to avoid this scenario?
    Thanks
    Eric

    Hi Eric,
    You should be able to suppress these messages with the proper open parameters, used with F_ApiOpen(). I've pasted the general-purpose file-opener function that I use below. If you study it, you should be able to get the idea of what is going on. Except for XML problems, this function will open just about anything without errors if the ignoreErrors and ignoreLock parameters are set to False. At the least, I'm pretty sure it will suppress all the errors you mentioned.
    Russ
    // To open a document, send openCopy = False, a path, and copyDocId = 0.
    // To open a copy of a document, send openCopy = True, then either the path or
    // the ID of a currently-open document to copy
    F_ObjHandleT ws_OpenFile(StringT path,
                             F_ObjHandleT copyDocId,
                             IntT openCopy,
                             IntT ignoreErrors,
                             IntT ignoreLock,
                             IntT hidden)
      F_PropValsT openScript, *returnp = NULL;
      UIntT sn;
      F_ObjHandleT docId;
      StringT tempPath;
      IntT fileType;
      if(copyDocId && openCopy)
        tempPath = F_ApiGetString(FV_SessionId, copyDocId, FP_Name);
      else tempPath = F_StrCopyString(path);
      //If we can, determine the file type from the extension
      //DEPRECATED, doesn't seem necessary.
      if(ws_IsSuffix(tempPath, ".xml", False))
        fileType = FV_TYPE_XML;
      else if(ws_IsSuffix(tempPath, ".sgml", False))
        fileType = FV_TYPE_SGML;
      else if(ws_IsSuffix(tempPath, ".mif", False))
        fileType = FV_TYPE_MIF;
      else if(ws_IsSuffix(tempPath, ".txt", False))
        fileType = FV_TYPE_TEXT;
      else
      fileType = FV_AUTORECOGNIZE;
      openScript = F_ApiGetOpenDefaultParams();
      sn = F_ApiGetPropIndex(&openScript, FS_AlertUserAboutFailure);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = False;
      else
        openScript.val[sn].propVal.u.ival = True;
      sn = F_ApiGetPropIndex(&openScript, FS_BookIsInUse);
      if(ignoreLock)
        openScript.val[sn].propVal.u.ival = FV_ResetLockAndContinue;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_DisallowMIF);
      openScript.val[sn].propVal.u.ival = False;
      sn = F_ApiGetPropIndex(&openScript, FS_DisallowXml);
      openScript.val[sn].propVal.u.ival = False;
      sn = F_ApiGetPropIndex(&openScript, FS_DontNotifyAPIClients);
      openScript.val[sn].propVal.u.ival = True;
      sn = F_ApiGetPropIndex(&openScript, FS_FileIsInUse);
      if(ignoreLock)
        openScript.val[sn].propVal.u.ival = FV_ResetLockAndContinue;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_FileIsOldVersion);
      openScript.val[sn].propVal.u.ival = FV_DoOK;
      sn = F_ApiGetPropIndex(&openScript, FS_FontChangedMetric);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_FontNotFoundInCatalog);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_FontNotFoundInDoc);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_LanguageNotAvailable);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_LockCantBeReset);
      if(ignoreLock)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_MakeVisible);
      if(hidden)
        openScript.val[sn].propVal.u.ival = False;
      else
        openScript.val[sn].propVal.u.ival = True;
      sn = F_ApiGetPropIndex(&openScript, FS_NewDoc);
      if(openCopy)
        openScript.val[sn].propVal.u.ival = True;
      else
        openScript.val[sn].propVal.u.ival = False;
      sn = F_ApiGetPropIndex(&openScript, FS_OpenAsType);
      openScript.val[sn].propVal.u.ival = fileType;
      sn = F_ApiGetPropIndex(&openScript, FS_OpenBookViewOnly);
      openScript.val[sn].propVal.u.ival = False;
      sn = F_ApiGetPropIndex(&openScript, FS_OpenDocViewOnly);
      openScript.val[sn].propVal.u.ival = False;
      sn = F_ApiGetPropIndex(&openScript, FS_OpenFileNotWritable);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_RefFileNotFound);
      if(ignoreErrors)
        openScript.val[sn].propVal.u.ival = FV_DoOK;
      else
        openScript.val[sn].propVal.u.ival = FV_DoCancel;
      sn = F_ApiGetPropIndex(&openScript, FS_UseAutoSaveFile);
      openScript.val[sn].propVal.u.ival = FV_DoNo;
      sn = F_ApiGetPropIndex(&openScript, FS_UpdateTextReferences);
      openScript.val[sn].propVal.u.ival = FV_DoNo;
      sn = F_ApiGetPropIndex(&openScript, FS_UpdateXRefs);
      openScript.val[sn].propVal.u.ival = FV_DoNo;
      sn = F_ApiGetPropIndex(&openScript, FS_UseRecoverFile);
      openScript.val[sn].propVal.u.ival = FV_DoNo;
      sn = F_ApiGetPropIndex(&openScript, FS_UseAutoSaveFile);
      openScript.val[sn].propVal.u.ival = FV_DoNo;
      //open the document
      docId = F_ApiOpen(tempPath, &openScript, &returnp);
      F_ApiDeallocateString(&tempPath);
      //we are done with these structures, so deallocate
      F_ApiDeallocatePropVals(&openScript);
      F_ApiDeallocatePropVals(returnp);
      //if something went wrong, ensure the return value is zero
      if(!docId) docId = 0;
      else if(hidden)
        F_ApiSetInt(FV_SessionId, docId, FP_IsOnScreen, False);
      return docId;

  • How to Suppress information message from Function module ?

    Hello Every one ,
    I have a problem when executing the function module in RF Tranasaction ,   I have a requirement to create a handling units through COPAWA transaction, i am using few function modules  which is using by transactions ,  in that  the function module it is giving an information message from FM COHU_EXBEREIT_LINE_CHECK, i need to use this function module becuase it will validate the entries . that is the reason i am using it    
    but I want to suppress the message .,
    Any suggestions , please.
    Thanks in Advance.
    Nags

    Add an Exception error_message while calling your function module in the program. It will suppress S, I, W messages
    EXCEPTIONS
       CHECK_ERROR      = 1
       OTHERS           = 2
       ERROR_MESSAGE    = 3.                 "  Add this line also

  • Suppress the message do you want to save the changes you have made

    hi all
    i have written a rollback
    it clears my record
    but gives me the message
    do you want to save the changes you have made
    i have written
    :system.message_level :=25;
    rollback;
    :system.message_level=0;
    but still it is giveing me the message
    can you please tell me how to suppress this message
    please help me
    thanks
    mandar

    try in reverse

  • Suppress a message

    Hello,
    I use the triggers "ON MESSAGE" and "ON ERROR" and write null in the triggers to suppress the messages. So it works fine. But if I change for example make a an alter table I get the Message if I want to save the changes! How can I suppress this Message, too!
    thanks

    I'm not sure what you mean by null trigger, but here is a message handler I created that has proven effective for all my needs so far.
    At the form level...
    create trigger for 'ON-ERROR'
    PR_HANDLE_MESSAGE( 'ERROR' );
    create trigger for 'ON_MESSAGE'
    PR_HANDLE_MESSAGE( 'MESSAGE' );
    In the Program Units...
    .PROCEDURE PR_HANDLE_MESSAGE (MSG_TYPE VARCHAR2) IS
    . ALERT_BTN NUMBER;
    . errtype VARCHAR2(3) := MESSAGE_TYPE;
    . errcod NUMBER := MESSAGE_CODE;
    . errtxt VARCHAR2(80) := MESSAGE_TEXT;
    .BEGIN
    .--* Generic system and error messages handler.
    . IF errcod IN ( 40100, 40102, 41000, 40200, 41051 ) THEN
    . -- Suppress these user messages
    . ----------------------------------------------------------- -- ErrNo Message text
    . -- 40100 At first record.
    . -- 40102 Record must be entered or deleted first
    . -- 40200 Field is protected against update
    . -- 40212 Invalid value for field xxxx.
    . -- 40350 Query caused no records to be retreived
    . -- 40400 Transaction complete. N records saved.
    . -- 40401 No changes to save
    . -- 41000 This function not currently available
    . -- 41026 Field does not understand operation
    . -- 41045 Cannot find item: invalid ID.
    . -- 41051 You can't create records here
    . NULL;
    . ELSIF errcod IN (-1) THEN
    . -- Show these on status line
    . -- ErrNo Message text
    . MESSAGE(errtype||'-'||to_char(errcod)||': '||errtxt);
    . ELSE
    . IF MSG_TYPE = 'ERROR' THEN
    . MESSAGE( errtype||'-'||to_char(errcod)||': '||errtxt );
    . RAISE FORM_TRIGGER_FAILURE;
    . ELSE
    . MESSAGE( errtype||'-'||to_char(errcod)||': '||errtxt);
    . END IF;
    . END IF;
    .END;

  • Suppressing error messages from stderr

    I am using JNI to connect to some C++ code (which I did not write myself) that has been compiled into DLLs. The writers of the C++ code found it necessary to spam a lot of status messages to stderr (using fprintf(stderr, "spam message")) and I want to suppress that output so that it doesn't show up in the console when my Java application is running. I have tried the following but it hasn't worked:
    PrintStream out = System.out;
    PrintStream err = System.err;
    System.setOut(new PrintStream(new OutputStream() {
    public void write(int arg0) throws IOException {}
    System.setErr(new PrintStream(new OutputStream() {
    public void write(int arg0) throws IOException {}
    // call native methods
    System.setOut(out);
    System.setErr(err);
    Does anyone else know how I can suppress the messages? Thanks

    redirect stderr to /dev/null ?

  • Suppressing Information messages

    Hi,
    I need to suppress the information messages which I was getting while creating the sales order in VA01 with reference to the Billing document.
    VA01 >> Order number >> CREATE WITH REF >> BILLING DOC NUMBER >> CLICK COPY >> getting Information Msg (Needs to suppress)
    Getting Information messages saying that  copying Items from Billing to Sales order is not defined.
    This is a copy control procedure . in VTAF transaction no line items were mentioned for the specific Order.
    I just want to suppress the messages which I was getting while copying the line items
    Thanks
    Abdul.

    Why are you doing this via BDC, since you can delete several tables in one go via the repository information system (SE90)?
    Thomas

  • Suppress error message in 10g

    using
    :system.message_level:=25;
    commit;
    :system.message_level:=0;
    i can suppress error message in froms 9i but when i run that form in iAS10g
    the message "no changes to save" does not suppress.

    It's not a good idea to suppress error messages. If there is a problem, then you (or user) won't know.
    If you are using the system.message_level only to try and suppress, the "no changes to save" message, then a better way is to check if there are changes before doing the commit. Like this:
    IF :System.Form_Status = 'CHANGED' THEN
    Commit_Form;
    END IF;

  • Suppress a message from

    Hi All!
    Is it possible to suppress a message from Backend on webdynpro appplication?
    bye
    sas

    Hi malyala and the others !
    There are two output messages
    The second line belongs to me.
    ( msgMgr.reportWarning(" xxxxxxxx");     
    The first one in the first line comes from backend. All what I need is
    to suppress the first line .
    reagards
    sas

  • How to suppress forms Message?

    When I use NEW_FORM from within a form, before exiting the
    current form it asks me to save the changes, how do I supress
    this message?
    I tried on-message, but doesn't work!
    Any help is appreciated.
    Thanks!
    null

    Dennis Bourgeois (guest) wrote:
    : geek (guest) wrote:
    : : When I use NEW_FORM from within a form, before exiting the
    : : current form it asks me to save the changes, how do I supress
    : : this message?
    : : I tried on-message, but doesn't work!
    : : Any help is appreciated.
    : : Thanks!
    : Here's a couple of ideas,
    : - Try setting system.message level to a higher number (maybe
    : 20) prior to calling your new form and then set it back when
    the
    : new form has been established.
    : - Try using clear_form(NO_VALIDATE) just before calling your
    new
    : form.
    : - Try using the on-error trigger instead of the on-message
    : trigger
    : Good luck.
    Actually, the only way to "suppress" this message is to either
    reset the :SYSTEM.FORM_STATUS or (much recommended) set the
    message level to 25 and commit the form before the new_form.
    After all, the reason for this message is that the user has
    supposedly made changes to the data that need to be committed. If
    you are getting this message w/o making changes, then you need to
    check your code because something is setting a base table value.
    null

  • How to suppress IDOC message

    Hi
    I am calling an outbound transaction CC92 for change master from RFC. Now once IDOC gets created i get a message that IDOC created.
    Now i do not want this pop up. How do i suppress this message pop up.
    Edited by: Rohit Kadage on Dec 15, 2008 8:23 PM

    Dennis Bourgeois (guest) wrote:
    : geek (guest) wrote:
    : : When I use NEW_FORM from within a form, before exiting the
    : : current form it asks me to save the changes, how do I supress
    : : this message?
    : : I tried on-message, but doesn't work!
    : : Any help is appreciated.
    : : Thanks!
    : Here's a couple of ideas,
    : - Try setting system.message level to a higher number (maybe
    : 20) prior to calling your new form and then set it back when
    the
    : new form has been established.
    : - Try using clear_form(NO_VALIDATE) just before calling your
    new
    : form.
    : - Try using the on-error trigger instead of the on-message
    : trigger
    : Good luck.
    Actually, the only way to "suppress" this message is to either
    reset the :SYSTEM.FORM_STATUS or (much recommended) set the
    message level to 25 and commit the form before the new_form.
    After all, the reason for this message is that the user has
    supposedly made changes to the data that need to be committed. If
    you are getting this message w/o making changes, then you need to
    check your code because something is setting a base table value.
    null

  • Suppressing warning messages from RSRT

    How can I suppress warning messages globally using RSRT? Thanks

    You can suppress a BRAIN message for ALL queries. It is included in Support Pack 12 in Netweaver 2004s. If you are not to SP 12 yet, you can implement OSS note #1009903.
    Go to Transaction RSRT, then enter SUPPR_ALL in the tcode box again and hit enter. This brings up the maintain messages screen and it suppress the messages globally.
    This solved my problems...hope it helps you!

Maybe you are looking for

  • How do you load images from a Win7 machine to iPhone?

    Hi. How do you load images from a Windows 7 PC to an iPhone 4? I'd like to load the pictures to use as wallpapers. Thanks.

  • Go live with Release

    Hello friends, what does this question mean, "when will you go live with your Release?" and why would someone on the other team who shares the same instance ask this to me. thanks.

  • Security risks through Facebook integration?

    Facebook (as well as Google) are known to track all of a user's web surfing habits, URLs and paths through the net, as long as their cookies and data are on the machine. So anybody loving privacy and freedom can delete such cookies / caches after acc

  • Can't combine some files

    I am trying to combine about 30 PDFs but am getting 3 error messages. Two files says they are restricted and can't be combined. The 3rd file is a form fillable and the error message says something about XML. How can I fix this? These files really nee

  • Trouble with ios 5

    last update stopped me from downloading audio books from my community library. I think it has something to do with ios 5.