Changing Default Portal Error Message

hi,
How do I change most of the portal error messages ?
For e.g.  when i disable the Development Component in the Web Dynpro Content admin to disallow user to access during code maintenance, i wish to inform them that we are doing some maintenance services.   How do i does that ?

Check that the IGS is running properly...
Also check SAP Note: 704604
Regards
Juan

Similar Messages

  • Cannot find default Portal error iView DedicationAlerter

    Hi,
    I would like to have the default portal error iView collapsed as per default to avoid showing a long stack trace. The path to the default iView can be set here:
      a.      Choose System Administration  -> Support  ->Support-Desk -> Portal Runtime -> Workload Distribution Configuration.
      b.      Click on folder Workload Distribution Configuration.
      c.      Go to edit mode for service DistributionConfiguration.
      d.      In the field Default Alert iView Name  enter the desired iView path and click on Apply.
    I can see here that the current default error iview is called: com.sap.portal.supportability.isolde.DedicationAlerter
    But where in my PCD can I find this iView so that I can either change a property on it or make a copy to customize? I have done a PCD search and it does not seem to exist.
    Or is there another way I can accomplish the same? I know about the Visual Admin settings like DEVELOPMENT_MODE and DetailedErrorResponse but the problem is that they also remove the first line of the stack trace. I would still like to display that line to help support.
    Br Jan

    From the setting as you have mentioned previously I think it is directly calling the portal component.
    Probably you can have you custom component name in there and see. (download the existing par, do necessary modifications and upload with a different name)
    Regards,
    Mahesh

  • Broken link in "Oracle9i Application Server Portal Error Messages"

    Hi,
    the following link to "Troubleshooting Issues in Oracle9iAS Portal Architecture and Performance"
    http://portalstudio.oracle.com/servlet/page_pageid=478&_dad=ops&_schema=OPSTUDIO&
    is bad in the document "Oracle9i Application Server Portal Error Messages" which can be found at http://portalcenter.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/ERRORMESSAGESHTML/CH_902.HTM
    Rgds
    Sol

    After installing the Oracle9i Application Server ,Oracle8i 1.7 Database,I visit the link"http://localhost" ,then click "Jsever (demo)". Then ,there appears "500 Internal Server err".
    The log file:
    mod_jserv.log
    [24/01/2002 09:25:32:031] (EMERGENCY) ajp12: can not connect to host 127.0.0.1:8007
    [24/01/2002 09:25:32:031] (EMERGENCY) ajp12: connection fail
    [24/01/2002 09:25:32:031] (ERROR) an error returned handling request via protocol "ajpv12"
    Please help me.Any help appreciated!

  • No changes to save error message

    Hello All,
    I am using Oracle forms and db 10g. I want to have more than one forms simultaneously open. When I save a record in the third form I get a "No changes to save" error message twice. I know that the error comes from the other two forms. I tried to set the error message level to a higher value but I still get the error message.
    So my question is :
    Can I get rid of the "no changes to save" error message while having more than one form opened at the same time.

    have a look at this solution http://talk2gerd.blogspot.com/2006/12/best-practices-on-error-and-on-message.html
    snippet:
    DECLARE
      V_Error_Code       NUMBER;
      V_Error_Text       VARCHAR2 (2000);
      V_DBMS_Error_Code  NUMBER;
      V_DBMS_Error_Text  VARCHAR2 (2000);
    BEGIN
      V_Error_Code      := Error_Code;
      V_Error_Text      := Error_Text;
    V_DBMS_Error_Code := DBMS_Error_Code;
      V_DBMS_Error_Text := DBMS_Error_Text;
      IF V_Error_Code IN (40401, 40405) THEN
        || 40401, 40405 - no changes to save / apply  get filtered
        NULL;
      ELSIF V_Error_Code IN (-1034, -3114) THEN
        || -1034, -3114 - not connected to database
        Message ('Not connect to database, exiting Form');
        Exit_Form (no_validate);
      ELSIF V_Error_Code IN (40508, 40735)
      AND   V_DBMS_Error_Code BETWEEN -20999 AND -20000 THEN
        || -20000 errors are raised by RAISE_APPLICATION_ERROR
        || They are handled in a different way
        Show_and_Log_DB_Error (V_DBMS_Error_Text);
      ELSE
        || All other errors went into Show_and_Log_Error, where they
        || get inspected, analyzed and logged.
        Show_and_Log_Error (V_Error_Code);
      END IF;
    END;

  • Crystal add-on portal error message

    Hi,
    I have been trying to download the Crystal add-on all week and keep getting the following portal error message:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.sdn.folder.sdn/com.sap.sdn.folder.application/com.sap.sdn.folder.roles/com.sap.sdn.folder.navigationroles/com.sap.sdn.folder.sdn/com.sap.sdn.role.anonymous/com.sap.sdn.tln.workset.sdnhome/com.sap.sdn.app.workset.additionalobj/com.sap.sdn.app.iview.softwaredownload
    Component Name : com.sap.sdn.softwaredownload.SoftwareDownload
    com.sap.sdn.reporting.Reporter.
    Exception id: 03:44_13/11/08_1692_3414851
    See the details for the exception ID in the log file
    Is anyone else getting this or is there another location to download it?
    Thank you,
    Heather

    Tried that, but no luck :(
    Started happening on Firefox 7.0, on both WinVista and Win7.

  • Help with Oracle AS Portal Error Messages

    Hi
    Our Application basically consists of a number of Reports which display data from a database, and Forms which will allow the insert of data in the table that the form is based on...
    The application is used by business users.
    I need assistance with the error messages that appear on Oracle Portal if something goes wrong - wrong data entered on a form for the database table, some error with a trigger that is called on the table where data is being inserted/ updated etc...
    Currently, when an error occurs on the form (when you are trying to insert data into the database), the following errors can appear (this is an example of the actual format.)
    Error: Internal error (WWC-00006)
    An unexpected error occurred: ORA-20001: aft person ins
    ORA-06512: at "RFS.RFS_AFT_INS", line 41
    ORA-12899: value too large for column "RFS"."RFS_PERSON"."USER_ID" (actual: 22, maximum: 20)
    ORA-04088: error during execution of trigger 'RFS.RFS_AFT_INS' (WWV-16016)
    While this error will tell a developer what to do, it will not really tell an end user what the problem is...
    I have started to edit the functions/ procedures that are used/ triggered from the forms to display a message in more or less the following format.
    RAISE_APPLICATION_ERROR(-20001,'PLEASE NOTE: There is no XXX data for the XXX used. Please contact your administrator to assist.',TRUE);
    What I want to know is, by changing the functions on the database etc, will I be catering for the errors, and will the message that I create be displayed to the user, or will they still see the original error message above?
    Are there ways to display a more user-friendly error, even if just to say "Contact your administrator..." or something?
    Any help will be greatly appreciated.
    Thanks

    By editing the default error messages, there is a risk the next patch or patch set to overwrite your customizations. A better approach would be to create custom error page(s) for Portal forms/reports.
    Please refer to Metalink Note: 157132.1 How to Create a Custom Error Page for Portal Form.
    Thanks.

  • Portal Error Message

    Don't know if this is the rght place to ask, but I keep getting an error when I try to add an existing content area to a page in Portal. That is, instead of adding a content area successfully to a region on the Portal page, I get an error message (an text page). Can you identify why I can't add the content area? Is something not set up corectly on the Oracle/Portal server?
    The error page reads as follows:
    PORTAL30.wwpob_page.render_portlet_screen: SIGNATURE (parameter names)
    MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: P_SITEID
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:^tf-8
    DAD name: portal30
    PROCEDURE : PORTAL30.wwpob_page.render_portlet_screen
    URL :
    http://pc-41.o
    ata.com:80/pls/portal30/PORTAL30.wwpob_page.render_portlet_screen?p_providerid=6461822&p_portletid=3&p_referencepath=&p_mode=100&p_back_url=&p_siteid=1
    PARAMETERS :
    ============
    P_PROVIDERID:
    6461822
    P_PORTLETID:
    3
    P_REFERENCEPATH:
    P_MODE:
    100
    P_BACK_URL:
    P_SITEID:
    1
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4
    OpenSSL/0.9.5a mod_perl/1.22
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=pc-41.obata.com
    REQUEST_METHOD=GET
    QUERY_STRING=p_providerid=6461822&p_portletid=3&p_referencepath=&p_mode=100&p_back_url=&p_siteid=1
    PATH_INFO=/pls/portal30/PORTAL30.wwpob_page.render_portlet_screen
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=128.242.139.2
    SERVER_PROTOCOL=HTTP/1.0
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.51 [en] (Win98; I)
    HTTP_HOST=pc-41.obata.com
    HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
    image/png, */*
    HTTP_ACCEPT_ENCODING=gzip
    HTTP_ACCEPT_LANGUAGE=en,pdf
    HTTP_ACCEPT_CHARSET=iso-8859-1,*,utf-8
    HTTP_COOKIE=portal30=181FD27ECCB03276BFF43
    A1D3427A1D10D925C1E9182347EEF43D47F1066224CCB317837DCA5E12354052991A5D7753B7A4F19268039298FD1A309C95373ACF7360D551AEC3BF68A8F598D941EEBD6EA49288350E5E9D946E4D60FAB5FA6183;
    portal30_sso=656CB5AFB1A5223A3146011DD455B9585BEE17ACCA20B4AC2C57A8BFAC62CC9AE27BEEF9D7C679634C1A3FC40D8A80D3175C7F0899934BAB6D8D4FD4C897A0356EA5F7C18DE61C857A49118AD5BF6DC1B86B662 83C9306F8
    Authorization=
    HTTP_IF_MODIFIED_SINCE=

    Re: no authorization to start service sap.com/pcui_gp~xssutils
    reward points if helpful

  • ITunes 9.0.1 windows 7 and outlook - default client error message in sync

    So I've just installed a new copy of the RTM release of Windows 7 (clean install on new PC). I've installed my outlook 2002 and iTunes as well and replicated my settings identically to my old system running on XP.
    The problem I'm getting is that everytime I try to synch my iPhone to iTunes, I get the following error message:
    Either there is no default mail client or the current mail client cannot fulfill the messaging requests. Please run Microsoft Outlook and set it as the default mail client.
    Now....I do not use outlook for mail and most IMPORTANTLY, in the iTunes sync Info window for my iPhone, Mail Accounts is unticked so that it should not sync.
    Normally, I'd call this a microsoft issue, but I think this is a problem with iTunes and Windows 7 possibly. It looks like iTunes is trying to do something with the mail client even thought I have it configured to ignore mail account synching.
    Anyone have this problem and a solution?
    I tried doing a detect and repair in microsoft outlook, but the problem is still present.

    Ya I had the same problem. Just uncheck all of the outlook boxes and then re-sync. Then recheck them all and re-sync, after that my itunes got hung up on calenders so to fix that just go into preferences, devices and then click reset sync history and you should be all set.
    Message was edited by: DFreeman

  • Change warning to error message in Confirmation (CN25)

    Hi All,
    Please advice how to change warning message to error message . I have network activity and fill the work value = 30 HA. but it seems that users can still posting the confirmation more than the value inputted.
    100% of planned time already recorded - please check
    Message no. RU254
    Application Area : RU , Message 254 , program SAPLSHL2
    Cheers,
    Nies.

    Hi,
    Try out, in the below mentioned path.
    SPRO>Production Planning for Process Industries>Process Order> System Modifications>Define System Message attributes.
    Select System Messages--> Click on New Entries and mention your message number with application area.Maintain the message as error.
    Just check whether you are able to make it an error.
    But when I tried your scenario I got a different Message number BU011.

  • Activation of the change list canceled Error Message

    I am getting the following error message every time I try to Activate or Test my message mapping :
    Activation of the change list canceled Check result for Message Mapping bww2jb_activate | http://bww.bit.com/card:  Mapping not sufficiently defined
    Anyone have any idea what could be causing this?

    Hi Andrew,
    You have not mapped some of the mandatory parameters in your mapping and tried to activate it. so it was  giving you that error. So map all the mandatory parameters ( all the fields with Red bulb), save and then activate.
    This will solve your problem. kindly assign points if this solves your problem.
    Cheers,
    Siva Maranani

  • Need to change a barcode: Error message appear when trying to update

    Hello,
    I need to change a barcode on the master data screen. When I take out the barcode and choose update I get an error message:
    This entry already exists in the following tables "(AIT3) (ODBD-2035) (Message 131 - 183)
    Please advise how to proceed?
    Kind regards,
    Ilze Fourie

    Hi,
    Please refer SAP note:1844928 - This entry already exists in the following tables
    AIT3
    Run attached query in note, if any result, raise ticket to SAP support.
    Thanks & Regards,
    Nagarajan

  • Portal error message "Graphic rendering problem"

    We just built a new portal system on Window server.  A user login  and get this error message "Graphic rendering problem".  Would someone know what it is ?  Thanks !

    Check that the IGS is running properly...
    Also check SAP Note: 704604
    Regards
    Juan

  • Tabstrip changes after issue error message in PS

    hello
    I am using an exit FUNCTION EXIT_SAPLCNAU_004 and inside that include I have an error validation for Network activity for project systems.   When i issue the error message that validates the fields in the tab, the tab changes making the current tab that user was on not active anymore.
    Is there a way to make it stay on the current tab when I issue an error message ?  Thanks!

    Hi,
    Try using the Property ACTIVETAB of the Tabstrip Control.
    Just before your Error Message, set the Active Tab as the Tab you are Looking.
    For Eg:
    tabstrip-activetab = 'TAB1'.

  • Portal Error Messages Displaying on Portal Page on Top

    I'm getting error messages printed out on top of my portal pages (portal pages do show). For example,
    Error: The listener returned the following Message: 302 FoundHTTP/1.1 200 OK Date: Mon, 18 Aug 2003 23:39:39 GMT Cache-Control: private Server: Oracle9iAS/9.0.2 Oracle HTTP Server Oracle9iAS-Web-Cache/9.0.2.0.0 (N) Content-Type: text/html; charset=UTF-8 Connection: Close
    appears at the top of my pages. What is causing this? Is there a setting in my browser that will help?
    Thanks

    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/
    http://java.sun.com/docs/books/tutorial/javabeans/index.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPIntro.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPBeans.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/
    http://java.sun.com/developer/onlineTraining/index.html
    http://java.sun.com/docs/books/tutorial/index.html
    http://developers.sun.com/events/techdays/codecamps/index.html

  • How to change language of  error messages

    Hi All,
    I'm a newbie of Oracle XE. I have installed Oracle XE to Window XP successfully. However i want to change the HTML UI (http://127.0.0.1:8080/apex/) language and error messages to English (now is in Chinese).
    i have read the installation guide and i tried to change the registry key ORACLE/KEY_XE/NLS_LANG from TRADITIONAL CHINESE_HONG KONG.WE8MSWIN1252 to AMERICAN_AMERICA.WE8MSWIN1252. However, it's not work, even after reboot.
    i have searched in the forum but still cannot get the answer.
    Please give me a hand.
    Thanks.

    How to make too most on Linux? There there is no register....
    Where what to change?
    I have installed XE in english. After that I have changed the coding of base.
    update SYS.PROPS$ set value$='CL8MSWIN1251' where name='NLS_CHARACTERSET';
    commit;
    SHUTDOWN IMMEDIATE;
    STARTUP MOUNT;
    ALTER SYSTEM ENABLE RESTRICTED SESSION;
    ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
    ALTER SYSTEM SET AQ_TM_PROCESSES=0;
    ALTER DATABASE OPEN;
    COL VALUE NEW_VALUE CHARSET
    SELECT VALUE FROM NLS_DATABASE_PARAMETERS WHERE PARAMETER='NLS_CHARACTERSET';
    COL VALUE NEW_VALUE NCHARSET
    SELECT VALUE FROM NLS_DATABASE_PARAMETERS WHERE PARAMETER='NLS_NCHAR_CHARACTERSET';
    ALTER DATABASE CHARACTER SET INTERNAL_USE &CHARSET;
    ALTER DATABASE NATIONAL CHARACTER SET INTERNAL_USE &NCHARSET;
    SHUTDOWN IMMEDIATE;
    STARTUP;
    SHUTDOWN IMMEDIATE;
    STARTUP;
    Now the input on a home page became we do not read. How it to correct? Not changing the coding of base.

Maybe you are looking for

  • How to create a sequence for an particular item in my apex form

    Hi friends, I created an database application, of a form with a report, and it is working fine... But in my form, i have a requirement....The below are the existing fields in my form issue no created by start date status priority due date Among these

  • Database control support for "IN" clause

    Does anyone know if the database control supports an 'IN' clause construct, e.g., SELECT name FROM mytable WHERE id IN ( {values} ) where values would be passed in as a variable length array of Strings or Integers? Thanks, DC

  • How to start OC4J in Sun Solaris???

    How to start OC4J in Sun Solaris???

  • How to enable writing tools in pages

    I somwhow managed to disable writing tools in Pages. How do I restore that function?

  • CS4 Design Standard Help Files

    Help files for all CS4 Design Standard programs are not available. The error message states the help files were not installed or the installation has been damaged. Please reinstall. I have reinstalled CS4 and also uninstalled/reinstalled CS4 but get