Avoid Error message

Dear all,
i want to hide error message generated by code inspector.
plz. help me

Hi,
First you need to find the pseudo comment
Just go to code inspector
Program-> check-> code inspector.
There you can expand the root node till you find the error screen.
There you can click on the information icon .
below it shows the pseudo comment.
Just pass that pseudo comment at the end of that particular line where it is showing the error message.
I think it is useful for you.

Similar Messages

  • How do I avoid error message when saving combined files?

    I combined about 350 .pdf files into a single .pdf file using Acrobat 8 Pro.  Total file size is about 3.5GB.  I can assemble them in a correct order but saving them results in the following error message:  "The document could not be saved.  A file I/O error has occured."
    I tried doing a "Save As" with no luck.  However, I was able to save about half the files (1.6GB) with no problem as a separate combine process.  I suspect it's a file size problem.  Is there a file size limit?  More important, is there a solution/work around?

    Thank's tyr67.  I'm using Vista.  My work-around will probably require me to
    break the file in two parts.  Not a great solution, but on that will allow
    me to move forward.
    Thank you for responding.
    C

  • Avoid error message being displayed

    Hi all,
    When I navigate through the records returned by my query a get the following error popup when a navigate to the last record with the down (arrow) key:
    FRM-40352: Last record of query retrieved.
    Is their a way to avoid displaying this message as a popup. Message may stil be diplayed at the bottom of the screen.
    Thanks.

    In the forms designer help search for
    Working with Forms Runtime Messages
    use the SYSTEM.MESSAGE_LEVEL system variable to suppress specific "severity levels" of messages use On-Error and On-Message triggers to replace the standard processing of messages use the SYSTEM.SUPPRESS_WORKING system variable to prevent the update of an end user's screen (by suppressing the "Working..." message)

  • How to avoid error message re: an exception that I don't care about

    I written a script that allows a user to click on a thumbnail image and then the script will change the html in order to play a particular video. It works, except that it throws some kind of error and I don' t know what it is. Since it works, I don't care what it is, but I would like to catch it. The popup error window says "An error occurred inside a plug-in contained on this page." Any ideas on what the error might be? Below is my code.
    <script type="text/javascript">
    function PlayVideo($Thumbnail)
    // Then there is a PHP section where I look up the video file, $VideoFile, in a database with $Thumbnail as my criteria. For now, I have a file hardcoded into the param.
    var $NEWhtml; // variable to build new script to swap with
    $NEWhtml ='<object id="MP4player" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="400" height="250" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n';
    $NEWhtml +='<param name="src" value="VideosApproved/Toad Singing.mp4">\n';+
    +$NEWhtml+ ='<param name="autoplay" value="true">\n';
    $NEWhtml +='<param name="loop" value="false" >\n';+
    +$NEWhtml+ ='<embed width="400" height="250" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" autoplay="true" controller="true"></embed>\n';
    $NEWhtml +='</object>\n';
    // REMOVE OLD ELEMENT
    var specialzone = document.getElementById('MP4section');
    var element = document.getElementById('MP4player');
    element.parentNode.removeChild(element);
    // ADD NEW ELEMENT
    var specialzone = document.getElementById('MP4section');
    var change = document.createElement('MP4player');
    change.innerHTML = $NEWhtml;
    specialzone.appendChild(change);
    return true;
    </script>

    This site supports java
    Java != javascript

  • Plan Driven Procurement - Error message  "Structure 01 CP 10170237 CP-S-O

    Hi SRM Experts,
    Iam seeking your help to avoid error messages in the Plan driven procurement scenario.
    I have configured Plan driven procurement scenario as described in the ref. material. The objective of this scenario is transferred PR in EB/SRM should create a entry in sourcing cockpit.
    Back end (R/3)configuration steps completed:
    1. Entries maintained in V_T160EX, V_T160PR
    2. RFC communication established using RFC user
    3. As soon as PR (Purchase Requisition) is created from Projects, Network the PR is available in EPRTANS table with Procurement profile.
    4. Manually executed PR Transfer program BBP_EXTREQ_TRANSFER
    5. Outbound Queue got generated but with below error message.
    Error Message: Structure 01 CP 10170237 CP-S-O: No agent found
    SRM/EBP Settings maintained:
    Direct procurement attribute maintained.
    Entry channel created under Company code org. structure
    RFC user is assigned to the entry channel.
    Assigned Product categories and entries channel to the respective purchase group.
    Defined sourcing for product categories.
    After maintaining all above configuration, iam still getting error message.
    Please provide your expert guidence to complete this scenario setup.
    Regards,
    Karnati

    Hi Nagi,
    This is related to Parner determination process with both systems in CRM & ECC.
    Error Details:  "Partner Function" in CRM is not there in ECC.
    We mapped in ECC by creating a ZB copied from "SB" Partner function in ECC & reprocessed the order in CRM, Henceforth rectififed the error.
    Many Thanks !!!
    Sany.

  • Error message MH084 Assignment of material to material group missing in classification system

    hi dear expert
    we are encounter some issues, when we are edit/display a generic article, error message popup show MH084, as below picture
    we has been search this issues from our forum, some thread like this:http://scn.sap.com/thread/1027185, but we are ensure that we are create generic article by IDoc: ARTMAS06, some guys mentioned do this can avoid this error.
    and yet, we found something maybe this why error message popup, when we are display article & merchadise group & charct. profile relationship by transaction code WGUS, all of the article popup error message, there are no relationship with profile relationship .
    so, our question is how can we create generic article to avoid error message (using idoc), and how can we to fix relationship between article & charact prifile.
    thx.

    We are receive replied from SAP, Customizing-functional is the root cause of error. This function interfere SAP standard function module CLAP_DDB_INIT_CLASSIFICATION to update classification table.
    sorry and thx all of you reply.

  • Avoid from the error message: "FRM-41816: Attempt to create existing timer"

    Hi,
    I create a timer in "on-insert" trigger in data-block level, like this:
    timer_id := Create_Timer ('saving_inserting_timer' , 1 , NO_REPEAT);
    in the trigger "when-timer-expired" in form level,  I use this timer, like this: 
    timer_id := FIND_TIMER('saving_inserting_timer');
    I know  that I should write:
    DELETE_TIMER('saving_inserting_timer');
    to avoid the error message frm-41816, and I tried to  write this line in a several places in the code (in both triggers).  But I still get this error message.
    Thanks in advanced,
    Elad

    Hi Elad,
    in ON-INSERT trigger write
    timer_id := FIND_TIMER('saving_inserting_timer');
    IF NOT Id_Null(timer_id) THEN
      Delete_Timer(timer_id);
    END IF;
    timer_id := timer_id := Create_Timer ('saving_inserting_timer' , 1 , NO_REPEAT);
    in WHEN-TIMER-EXPIRED trigger wrote the below code
    IF NOT Id_Null(timer_id) THEN
      Delete_Timer(timer_id);
    END IF;
    No two timers can share the same name in the same form instance, regardless of case.
    Hope this will help

  • I was told by Borders customer service that I have to add them as a "trusted site" to avoid an error message when sttempting to use the shopping cart. Is this true, and how do I do it?

    When I go to "checkout" on Borders.com, I get an error message. The message is as follows:
    [ServletException in:/ConsumerDirectStorefrontAssetStore/ShoppingArea/ShopcartSection/body.jsp] null'
    I have tried refreshing, clearing cookies, and everything I can think of. Customer service told me it had to do with security settings, and that I had to add it to my trusted sites. I have never had to do this before, so I'm jsut wondering if this was true, and how to do it.

    Are they multi-function units? Do they include a scanner? Most people call these multi-function copiers, not printers. Printers don't have a scanner in them.
    Give us some specifics as to the brands and models you have tried.

  • I am not able to activate my iPhone 3GS after upgrading it to IOS 5.1.1 since it shows the error message "your iPhone could not be activated because the activation server is temporarily unavailable. I am asked to retry after some time. How can I avoid thi

    i am not able to active my ipone 3gs after upgrat to ios5.1.1. it show error message " your iphone could not be activted because the activation server is temperarily unavailable.try connecting you iphone to itunes to activate it, or try again in a couple of munutes" i retry many time, could not sold problem.

    You had a jailbreak and unlock.
    When you updated you cooked it.
    Your phone is done.
    Time for a new one.

  • Using Windows 7 Professional, as soon at I try to start a system restore, I receive error message "Incorrect function. (0x80070001)" and "Catastrophic failure (0x80000FFFF)." How can I avoid this and perform my system restore?

    Windows Explorer has stopped responding for the most part and I found http://support.microsoft.com/kb/2694911 list of solutions. After working through all of the first options on the list, I tried a system restore three different points
    but got the same two errors: "Incorrect function. (0x80070001)" and "Catastrophic failure (0x80000FFFF)."

    Hi TAS,
    Regarding the error message, I recommend you try to this :
    "0x8000ffff" error message when you try to restore a Windows 7-based computer by using System Restore
    http://support.microsoft.com/kb/2695585/en-us
    If your issue persists, let me known.
    Best regards,
    Karen Hu

  • How to avoid 'duplicate data record' error message when loading master data

    Dear Experts
    We have a custom extractor on table CSKS called ZCOSTCENTER_ATTR. The settings of this datasource are the same as the settings of 0COSTCENTER_ATTR. The problem is that when loading to BW it seems that validity (DATEFROM and DATETO) is not taken into account. If there is a cost center with several entries having different validity, I get this duplicate data record error. There is no error when loading 0COSTCENTER_ATTR.
    Enhancing 0COSTCENTER_ATTR to have one datasource instead of two is not an option.
    I know that you can set ignore duplicates in the infopackage, but that is not a nice solution. 0COSTCENTER_ATTR can run without this!
    Is there a trick you know to tell the system that the date fields are also part of the key??
    Thank you for your help
    Peter

    Alessandro - ZCOSTCENTER_ATTR is loading 0COSTCENTER, just like 0COSTCENTER_ATTR.
    Siggi - I don't have the error message described in the note.
    "There are duplicates of the data record 2 & with the key 'NO010000122077 &' for characteristic 0COSTCENTER &."
    In PSA the records are marked red with the same message (MSG no 191).
    As you see the key does not contain the date when the record is valid. How do I add it? How is it working for 0COSTCENTER_ATTR with the same records? Is it done on the R/3 or on the BW side?
    Thanks
    Peter

  • HT1218 I am getting just yesterday an error message from the TimeMachine "Error......Pro.sparsebundle is already in use.......latest successful backup at 4:17PM yesterday (4/9/13). Does anyone know cause and what action should be taken to avoid not backin

    Getting error message and do not know how to address....."Time Machine error" Pro.sparsebundle is already in use       (Latest successful backup @ 4:17PM yesterday April 9 2013.
    Looking for best actions to take to continue automatic backups without getting this message?
    I do not know if it is related but also got an error code #6584.....not sure if it is related or something different?
    Minnesota Andy

    Pull the power cord from the back of the Time Capsule
    Count to 10
    Plug the power cord back in to the back of the Time Capsule
    This simple reset will fix this Lion and Mountain Lion 98% of the time. If you are in the 2% category, more information is here:
    The Backup disk image ... sparsebundle ... is already in use.

  • How to avoid "App requires Adobe Flash." error message when Adobe Flash is already installed??!!

    On my new Lenovo Yoga 3 PC laptop I am trying to install Kayak and Pandora apps but once these apps are downloaded, whenever I try to open them, an error message pops up saying: ADOBE FLASH REQUIRED. The Kayak (or Pandora) app requires Adobe Flash. Installation is free.  "Install" or "Not Now".
    I have installed Adobe Flash 10 times and rebooted etc. but I still cannot use those apps because of this error message.
    This is driving me crazy.
    I have checked to confirm that the newest version of Adobe Flash IS installed and working on my computer.
    What can I do?????
    Thank you.

    Typically when software applications are using an embedded browser window that wants Flash, they're looking for the ActiveX version used in Internet Explorer.  If you've been installing Flash Player for Firefox, that's not going to help.
    Fire up Internet Explorer, go to http://get.adobe.com/flashplayer and follow the prompts.  This should resolve the issue for you.
    If you're already using Internet Explorer on a Windows 8 or higher machine, then Flash Player is already a built-in component of IE.  The problems you're running into may be specific to the intersection of those websites and Internet Explorer 11.  (IE11 makes a bunch of changes to how the browser is identified, which may ultimately cause the sites to fail to detect Flash.)  In that instance, the easiest workaround is probably to just use Google Chrome - http://www.google.com/chrome/ while we wait for the world to adjust to Internet Explorer's new approach.

  • Avoid blank page with Auto TR error message in PDF

    Experts,
    We have forwarded auto TO error message from SAP inbox (SBWP) to outlook email.We made the settings to convert all messages to be converted into PDF while receiving into outlook inbox.For some reason, i am getting the first page as blank with error message.why is this happening? Please suggest
    thanks in advance

    Hi Patrick,
    It should work. You know the id of the specific area, you know what string to search for in order to condition the appearance of the new message.
    Kind Regards,
    Alex

  • How Avoid required Field Error message

    I am using JDevelepor 11.1.2.1.0 Version
    I create a form in ADF table format. In my table composite primary key,(compaycode,division code,branch code, and account code),
    And i set LOV for these attributes.
    The problem is that when i set value to company code fire required error message for other primary key fields....
    How am handle this?
    Regards
    Ansal

    Have you tried to set the immediate property on the fields?
    Timo

Maybe you are looking for