Error when add portlet into portal page

Dear all,
I use:
+ JDeveloper 10.1.3.4.0
+ Oracle Application Server 10g release 2.
+ JDK 1.4
I installed ADF_Installer and Portlet_Container for OC4J instance in Oracle Application Server ok.
1. I use JDeveloper, create my simple project with template is WebCenter Application.
2. In the Portlet project, I added the Portlet Faces Bridge.
3. I add the JSF (with name is home.jspx) in Web Tier into the Portlet project (select the JSF JSP). And type is .jspx and Do not automatically Expose UI Components in a Managed Bean.
4. Inside the home.jspx, I add the OutputText only.
5. Inside the WEB-INF, i created portlet.xml file with content is:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<portlet-app version="1.0"
xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
<portlet>
<portlet-name>MyTestPortlet</portlet-name>
<display-name>My Test Portlet</display-name>
<portlet-class>oracle.portlet.server.bridges.jsf.FacesPortlet</portlet-class>
<init-param>
<name>DefaultPage.view</name>
<value>/home.jspx</value>
</init-param>
<init-param>
<name>BridgeLifecycleListeners</name>
<value>
oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener
</value>
</init-param>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>VIEW</portlet-mode>
</supports>
<supported-locale>en</supported-locale>
<portlet-info>
<title>My Test Portlet</title>
<short-title>testportlet</short-title>
</portlet-info>
</portlet>
</portlet-app>
6. Inside the WEB-INF, i edited web.xml by added some contents (and inside this file, I removed line in web-app tag
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"): --> If I did not remove it, I received some error !
<context-param>
<param-name>javax.faces.application.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config.xml,/WEB-INF/portlet.xml</param-value>
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
7. I create the WAR File Deployment Profiles.
Ok, I deploy this portlet into OC4J instance in Oracle Application Server (10g release 2). -- > Finished.
From my browser, I use URL Address such as:
http://mymachine.com:7780/jobs/portlets?WSDL --> ok.
After that, I log into Oracle AS Portal, and register this provider with style WSRP --> ok, I can see it from Portlet Reposistory. But when I add it into my portal page, I receive following message
Error:Could not get markup. The cookie or session is invalid or there is a runtime exception.
I refresh my portal page but it not effect !
In Oracle Application Server 10g release 2 have support JSF Portlet ? Or I have some misstakes ? Please guide to me to solve this problem.

I updated Oracle Application Server Portal from 10.1.2 to 10.1.4 ! Please give me some ideas !

Similar Messages

  • Receive some error when add portlet into portal page

    Dear all,
    I use:
    + JDeveloper 10.1.3.4.0
    + Oracle AS Portal 10g release 2.
    + Oracle Application Server 10g release 2.
    + JDK 1.4
    I installed ADF_Installer and Portlet_Container for OC4J instance in Oracle Application Server ok.
    1. I use JDeveloper, create my simple project with template is WebCenter Application.
    2. In the Portlet project, I added the Portlet Faces Bridge.
    3. I add the JSF (with name is home.jspx) in Web Tier into the Portlet project (select the JSF JSP). And type is .jspx and Do not automatically Expose UI Components in a Managed Bean.
    4. Inside the home.jspx, I add the OutputText only.
    5. Inside the WEB-INF, i created portlet.xml file with content is:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <portlet-app version="1.0"
    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
    <portlet>
    <portlet-name>MyTestPortlet</portlet-name>
    <display-name>My Test Portlet</display-name>
    <portlet-class>oracle.portlet.server.bridges.jsf.FacesPortlet</portlet-class>
    <init-param>
    <name>DefaultPage.view</name>
    <value>/home.jspx</value>
    </init-param>
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>
    oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener
    </value>
    </init-param>
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>VIEW</portlet-mode>
    </supports>
    <supported-locale>en</supported-locale>
    <portlet-info>
    <title>My Test Portlet</title>
    <short-title>testportlet</short-title>
    </portlet-info>
    </portlet>
    </portlet-app>
    6. Inside the WEB-INF, i edited web.xml by added some contents (and inside this file, I removed line in web-app tag
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"): --> If I did not remove it, I received some error !
    <context-param>
    <param-name>javax.faces.application.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml,/WEB-INF/portlet.xml</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    </context-param>
    7. I create the WAR File Deployment Profiles.
    Ok, I deploy this portlet into OC4J instance in Oracle Application Server (10g release 2). -- > Finished.
    From my browser, I use URL Address such as:
    http://mymachine.com:7780/jobs/portlets?WSDL --> ok.
    After that, I log into Oracle AS Portal, and register this provider with style WSRP --> ok, I can see it from Portlet Reposistory. But when I add it into my portal page, I receive following message
    Error:Could not get markup. The cookie or session is invalid or there is a runtime exception.
    I refresh my portal page but it not effect !
    In Oracle Application Server 10g release 2 have support JSF Portlet ? Or I have some misstakes ? Please guide to me to solve this problem.

    I updated Oracle Application Server Portal from 10.1.2 to 10.1.4 ! Please give me some ideas !

  • HELP --- Error while adding Portlets to the Page. (WWC-44012)

    Hi all,
    I have a pl/sql portlet. It compiles fine and shows up perfectly in portlet repository. But when i add this to the page, I get following error
    Error while adding Portlets to the Page. (WWC-44012)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-51004)
    (WWC-00000)
    I checked the portlet specification file (.pks) and body file (.pkb) for any mistakes but they seems fine.
    Does anyone know what can cause this error?
    Any pointers in this regards will be highly appreciated.
    Thanks!!!
    Rajesh

    Rajesh,
    Could you provide some more details about your code? I will try to look into possible causes of the error. One thing you may try is subscribing to the Knowledge Exchange on http://portalcenter.oracle.com. Then you could post your code in your community folder and everyone would be able to test it out.
    Of course, this means you must be willing to share your code with everyone.
    James

  • Portlet not showing up in 'Add Portlets to Region' page

    This relates to Portal 9.0.2 (the new version that shipped with iAS 9.0.2).
    I created a provider based on a Report, specifying the SQL query to be used, and thus created a portlet which produces a report from the query. It works and I have added it to a region in a page. So far, so good.
    Then I created a second provider with a very nearly identical SQL query, set virtually everything to be the same as the attributes for the first portlet. I wish to add it to another region in the same page. However, when I try to do the edit for the page, to add the second portlet, it doesn't show up in the list of portlets in the 'Add Portlets to Region' page, so I can't add it.
    Both portlets show up in the Providers list. They both say 'Report from SQL Query' under Type, and both say that their owner is EXAMPLE_APP. However, when I navigate to that owner in the 'Add Portlets to Region' page, only the first portlet shows up. The other one doesn't.
    Any ideas as to why this might occur? What do I look for? I've tried to look for any differences between the two portlets, and haven't seen anything obvious.
    Help!
    Responses much appreciated!
    Regards
    Bryan

    Thanks!
    I did what you suggested, and the page came back:
    Portlet Repository Refresh Status
    View information about the most recent Portlet Repository refresh, such as who initiated the process, when it was started, and whether it is complete or still in progress. If the refresh is complete, this page also shows when the process finished and whether it was successful. Click View Details to view a more detailed log of the refresh process.
    Started By: PORTAL
    Started On: April 08, 2002 19:13:38
    Completed On: April 08, 2002 19:13:57
    Refresh Status: Complete
    Refresh Result: Succeeded
    View Details
    Note that since I had just done a refresh, I would have expected the date to be today's, assuming that the date refers to when the refresh was done, but instead it's April 8th. Strange?
    When I clicked on the View Details link, it brought up a page:
    Monitor Log Detail Report
    Advanced
    Error: Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    No row returned.
    Not too helpful an error message, huh?
    Clicking on the Advanced/Basic links produced identical results (the same exact error message).
    The Add Portlets to Region still does not show the portlet I wish to add.
    Any additional help much appreciated...
    Thanks
    Bryan

  • Portal Runtime error when modifying: com.sap.portal.runtime.logon.par

    Hello,
    We need some help because we get 'Portal Runtime error: iView: N/A Component Name:N/A' error when trying to access portal logon screen.
    This is what we've done:
    We've modified com.sap.portal.runtime.logon.par file and we've uploaded it but it doesn't work. Because of the error, we've overwritten this file with the original one but now it's imposible to access portal.
    The situation it seems to be like before the modification of the .par file but we get the same error and can't access portal.
    Please, do you know what could be the problem?
    Thanks in advance

    Hi Belen,
    Here are the steps you would need to take
    1. import the original par file into the NWDS and name the project as  
        com.sap.portal.runtime.logon
    2. Make sure the project name is com.sap.portal.runtime.logon
    3. use winzip/winrar to extract the com.sap.portal.runtime.logon.par file in
        a local directory
    4.Under the lib you would find two jar files copy them and paste them in your project
       under dist>PORTAL-INF>lib directory
    5.move the files cert....till umResetPass....jsp into the  PORTAL-INF directory
    6. export the par to the server in question
    7. restart your server
    This should solve your problem..
    Thanks,
    Gokul

  • I keep getting script errors when accessing Amazon Seller merchant pages. I get the following A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script

    I keep getting script errors when accessing Amazon Seller merchant pages. I get the following A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: chrome://spautofill/content/spOverlay.js:150, I also get js210 as well. I have cleared all cookies and history and unistalled Firefaox and reinstalled. Been thru my AVS and set the site as trusted in every possible place. Still get the problem. Do not get it with IE on same PC.
    == URL of affected sites ==
    https://sellercentral.amazon.co.uk

    Same problem but with a different vendor site:
    https://www.webvitamins.com/myfavorites.aspx
    Not only does the page hang, but the other tabs also hang.
    I contacted the vendor and their reply was "we were told that this looks like a script that is used by "Sticky Password", third-party software that must have been installed on your browser. However, our website did not install it and does not have anything to do with it." As far as I can tell, "Sticky Password" is not installed on my Firefox.
    Same problem as above occurs, but with IE 8.0.6001.18702. Therefore, it is not unique to Firefox.
    CAUSE DETERMINED: Have determined that this problem only occurs when Kaspersky Password Manager is installed. In Firefox, if the "Password Manager Autofill Engine" add-on is disabled, the problem goes away.

  • Use WLC's service interface IP when add WLC into WCS

    Hi All,
    Does anybody know if there's any limitations or bugs to use WLC's service interface IP when add WLC into WCS?
    Another question is I remember there's a post previously says that there are a bug regarding to ARP if the WLC not using LAG but connect one port to one switch, connect another port to another switch, so that's why it is strongly suggested to use LAG, but I can't find it now, anybody know it? Thanks!

    The service port is controlled by the service-port interface and is reserved for out-of-band management of the controller and system recovery and maintenance in the event of a network failure. It is also the only port that is active when the controller is in boot mode. The service port is not capable of carrying 802.1Q tags, so it must be connected to an access port on the neighbor switch.
    If the service port is in use, the management interface must be on a different supernet from the service-port interface.
    The service-port interface controls communications through and is statically mapped by the system to the service port. It must have an IP address on a different supernet from the management, AP-manager, and any dynamic interfaces, and it cannot be mapped to a backup port. This configuration enables you to manage the controller directly or through a dedicated operating system network, such as 10.1.2.x, which can ensure service access during network downtime.
    The service port can obtain an IP address using DHCP, or it can be assigned a static IP address, but a default gateway cannot be assigned to the service-port interface. Static routes can be defined through the controller for remote network access to the service port.

  • FireFox keep saying "unexpected error" when trying to print web pages.

    FireFox keep saying "unexpected error" when trying to print web pages. The print preview works OK, but when you try to print that "unexpected error" jumps up.
    Please email me on what to do to get FireFox to work.
    I don't see anything in the FAQ that might help me.

    Hi,
    Please also try this setting: Windows start menu or Control Panel > '''Devices and Printers''', right-click the printer > '''Printer properties''' > '''Advanced''', and select '''Start printing after the last page is spooled'''. In this case you can also close Firefox after spooling is over (usually much faster than direct printing), and printing will continue.
    Also as a general case, if you have security software (antivirus, firewall etc.) installed, you can try deleting all existing instances of Firefox and its related processes/files in all the different configuration modules/areas of the security software like process monitoring, sub/spawned process control, virtualization, HIPS etc., in addition to the security software's main configuration panel. Instead create new fully allowed/trusted rules for Firefox + its related processes in all the different modules/panels - a genuine/original Firefox installer as well as all the installed EXEs (Application) and DLLs (Application extension) are digitally signed by Mozilla Corporation (right-click > Properties > Digital Signatures). Even otherwise, some security software may also ask again when Firefox and/or its sub processes are started, and you may be able to allow/trust at that time. Please see [https://support.mozilla.org/en-US/kb/Firewalls this].
    [http://kb.mozillazine.org/Firewalls AV/Firewalls Configuration]

  • Gettin a portal runtime error when adding iviews in web page composer

    we are getting the Following error when we try to add a iview in page builder .we have done the configurations as per the documentation ((http://help.sap.com/saphelp_nw70/helpdata/en/45/3fe7b4f34d4a18e10000000a114a6b/frameset.htm).and will appreciate any help on this issue .
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 08:09_31/10/07_0015_15308650
    See the details for the exception ID in the log file.
    #1.5 #00145ECC9C67007E000000190000117800043DC0D68F6E39#1193798349688#com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt.runtime#myadmin#5872##myportalci.keells_JPP_15308650#myadmin#015ef900875a11dc8a3700145ecc9c67#Thread[PRT-Async 2,5,PRT-Async]##0#0#Error##Java###08:09_31/10/07_0015_15308650
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: Can&\#39;t read the prameter &\#39;siteString&\#39; from the PCD.
         at com.sapportals.portal.httpconnectivity.urliviews.runtime.URLIView.checkPCDVal(URLIView.java:631)
         at com.sapportals.portal.httpconnectivity.urliviews.runtime.URLIView.readFromPCD(URLIView.java:528)
         at com.sapportals.portal.httpconnectivity.urliviews.runtime.URLIView.doContent(URLIView.java:326)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:149)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.async.AsyncPortalComponentResponse.include(AsyncPortalComponentResponse.java:355)
         at com.sapportals.portal.prt.core.async.AsyncPortalComponentResponse.include(AsyncPortalComponentResponse.java:310)
         at com.sap.nw.wpc.runtime.AbstractContainerComponent.doContent(AbstractContainerComponent.java:88)
         at com.sap.nw.wpc.runtime.ContainerComponent.doDesign(ContainerComponent.java:183)
         at sun.reflect.GeneratedMethodAccessor362.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:134)
         at com.sapportals.portal.prt.component.CachablePortalComponent.service(CachablePortalComponent.java:273)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:375)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:388)
         at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
         at java.lang.Thread.run(Thread.java:534)

    Dear Prabash Balsuriya,
    I got similar issue while adding iView to WPC during public, can you elaborate how you solve this issue?
    Thanks.
    Regards,
    Weng

  • Error when signing on SRM portal

    Hi, i have this problem, when user signs on in the SRM portal (SRM 3.0) and the shopping cart page suppossed to appears (after enters user and pwd), the following error displays:
    ITS System Information
    Interpreter Failed
    The Internet Transaction Server failed to generate the response for current request.
    Please contact the system administrator.
    Internal error code: 0x2101
    In an already existent imlementation for badi BBP_DOC_CHECK_BADI i've added this code  just to check some error messages from the document and if founded, add a custom message to the internal table
    Data declaration
    Variable
    data:
      lv_guid  type CRMD_ORDERADM_H-GUID.
    Constants
      constants:
        lc_slash(1)  type c value '/',
        lc_015       type bbp_pds_messages-msgno value '015',
        lc_000       type bbp_pds_messages-msgno value '000',
        lc_fmavc     type bbp_pds_messages-msgid value 'FMAVC',
        lc_zebp      type bbp_pds_messages-msgid value 'ZEBP'.
    Internal tables & Structures
      data:
        ls_messages type          bbp_pds_messages,
        lt_messages type table of bbp_pds_messages.
    First, check the SC
        call function 'BBP_PD_SC_CHECK'
          exporting
            i_guid     = lv_guid
         TABLES
           E_MESSAGES  = lt_messages.
    Look for the right message
      read table lt_messages into ls_messages with key msgid = lc_FMAVC
                                                       msgno = lc_015.
      if sy-subrc = 0.
    Message founded, build custom message
    Add the message to table
      read table it_account into wa_account index 1.
        wa_error-msgty = 'E'.
        wa_error-msgid = lc_zebp.
        wa_error-msgno = lc_000.
        concatenate wa_header-posting_date+0(4)  " Year
                    lc_slash
                    wa_account-funds_ctr         " Funds center
                    lc_slash
                    wa_account-fund              " Fund
                    lc_slash
                    wa_account-func_area         " Functional area
                    lc_slash
                    wa_account-cmmt_item         " Commitment item
               into wa_error-msgv1.
        APPEND wa_error TO et_messages.
      endif.
    but in the call for 'BBP_PD_SC_CHECK' the systems generates a dump, if i comment the fm call, the page displays correctly, the parameters for fm are the right type.
    The dump appears as follows:
    Errores tiempo ejec.   UNCAUGHT_EXCEPTION
    Excepción              CX_BBP_PD_ABORT
           ocurrido el     26.12.2007 a  19:42:04
    Es ist eine Ausnahme aufgetreten, die nicht abgefangen wurde.
    ¿Qué ha sucedido?
    Die Ausnahme 'CX_BBP_PD_ABORT' wurde ausgelöst,
    sie wurde aber entlang der Aufrufhierarchie nirgendwo abgefangen.
    Da Ausnahmen Fehlersituationen darstellen und auf diesen Fehler nicht
    adäquat reagiert wurde, mußte das laufende ABAP-Programm 'SAPLBBP_PDH'
    abgebrochen werden.
    ¿Qué puede hacer?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Anál.errores
    Es ist eine Ausnahme aufgetreten, die weiter unten näher erläutert wird.
    Die Ausnahme, der die Klasse 'CX_BBP_PD_ABORT' zugeordnet ist,
    wurde nicht abgefangen und führte deshalb zu einem Laufzeitfehler.
    Der Grund für die Ausnahme ist:
    Übernehmen
    Notas para corregir errores
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "UNCAUGHT_EXCEPTION" CX_BBP_PD_ABORTC
    "SAPLBBP_PDH" or "LBBP_PDHU08"
    "BBP_PD_ABORT"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    Entorno sistema
    SAP-Release.............. "620"
    Applikationsserver....... "ebpqas"
    Netzwerkadresse.......... "144.127.70.32"
    Betriebssystem........... "SunOS"
    Release.................. "5.9"
    Hardwaretyp.............. "sun4u"
    Zeichen-Länge............ 8 Bits
    Pointer-Länge............ 64 Bits
    Workprozess-Nummer....... 0
    Kurzdump-Einstellung..... "full"
    Datenbankserver.......... "ebpqas"
    Datenbanktyp............. "ORACLE"
    Datenbankname............ "EBQ"
    Datenbank-User-Id........ "SAPEBP"
    Zeichensatz.............. "es"
    SAP-Kernel............... "640"
    hergestellt am........... "Jul 4 2005 21:14:29"
    hergestellt auf.......... "SunOS 5.8 Generic_108528-16 sun4u"
    Datenbankversion......... "OCI_920 "
    Patch-Level.............. "80"
    Patch-Text " "
    Unterstützte Umgebung....
    Datenbank ............... "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP-Datenbankversion..... "640"
    Betriebssystem........... "SunOS 5.8, SunOS 5.9, SunOS 5.10"
    Usuario, transacción....
    Mandant............. 010
    Benutzer............ "CRARIABR"
    Sprachenschlüssel... "S"
    Transaktion......... "BBPSC02 "
    Programm............ "SAPLBBP_PDH"
    Dynpro.............. "SAPLBBP_SC_UI_ITS 2000"
    Dynprozeile......... 4
    Info posición de cancelación
    Der Abbruch trat im ABAP-Programm "SAPLBBP_PDH" auf, und zwar in
    "BBP_PD_ABORT". Das Hauptprogramm war "SAPLBBP_SC_UI_ITS ".
    Im Quelltext befindet sich die Abbruchstelle in Zeile 67
    des (Include-)Programms "LBBP_PDHU08".
    (bei Anwahl des Editors: 670) der ABAP-Source "LBBP_PDHU08".
    Detalle código fuente
    000370                   LS_CALLSTACK1-EVENTNAME LS_CALLSTACK1-PROGNAME
    000380                   INTO LV_MSGARG2 SEPARATED BY SPACE.
    000390
    000400     READ TABLE LT_CALLSTACK INTO LS_CALLSTACK2 INDEX 4.
    000410     CONCATENATE   '/' LS_CALLSTACK2-EVENTTYPE
    000420                   LS_CALLSTACK2-EVENTNAME LS_CALLSTACK2-PROGNAME
    000430                   INTO LV_MSGARG3 SEPARATED BY SPACE.
    000440
    000450     CALL FUNCTION 'BBP_ALERT_INTERNAL_OT'
    000460       EXPORTING
    000470         MSGID   = GC_MSGID_BBP_PD
    000480         MSGNO   = 047
    000490         MSGARG1 = LV_MSGARG1
    000500         MSGARG2 = LV_MSGARG2
    000510         MSGARG3 = LV_MSGARG3.
    000520
    000530     MESSAGE ID GC_MSGID_BBP_PD TYPE C_MSGTY_I NUMBER IV_MSG_NO
    000540             WITH LS_CALLSTACK1-EVENTTYPE
    000550                  LS_CALLSTACK1-EVENTNAME
    000560                  LS_CALLSTACK1-PROGNAME.
    000570
    000580   * get the messages from the application log
    000590     TRY.
    000600         CALL FUNCTION 'BBP_PD_LOG_GET_MESSAGES'
    000610           TABLES
    000620             E_MESSAGES = LT_MESSAGES.
    000630       CATCH CX_BBP_PD_ABORT.
    000640         REFRESH LT_MESSAGES.
    000650     ENDTRY.
    000660
        RAISE EXCEPTION TYPE CX_BBP_PD_ABORT EXPORTING
    000680         WORKED_ON_DOCUMENT = LV_GUID
    000690         T100_MSGID = GC_MSGID_BBP_PD
    000700         T100_MSGNO = IV_MSG_NO
    000710         T_APPL_LOG_MESSAGES = LT_MESSAGES.
    000720
    000730   ENDFUNCTION.
    Thanks in advance for your help.

    Hi
    It seems some mandatory System configuration settings are missing.
    For time-being, please Try de-activating the active customer implementations of the BADIs BBPDOC_CHANGE / BBP_DOC_CHECK_BADIs and then try again the Shop process._
    Please try to look into RZ20, ST22, RZ10, and SLG1 transactions for any error logs generated.
    Also, Please Check the SAP OSS Notes ->
    Note 673372 - Short dumps UNCAUGHTEXCEPTION in SRM 3.0, 4.0, and 5.0_
    Note 833442 Data inconsistency due to termination when you save
    bbp_pd_sc_check_is_pd
    "Buffer table not up to date"
    Re: ITS Template not found
    Re: CX_BBP_PD_ABORT error selection itens in SC
    DUMP with transaction BBPSC02 :'UNCAUGHT_EXCEPTION      CX_BBP_PD_ABORT'
    Re: Error while adding items to shopping cart
    Note 851825 Copying a reference without ship-to address ==> error
    Note 847427 Error when you copy template without ship-to address
    Note 746569 CX_BBP_PD_ABORT in routine CHECK_CF_QUANTITY
    Note 651994 PO with several hierarchy levels causes termination
    Hope this will definitely help. Do let me know.
    Regards
    - Atul

  • Error when adding Portlet Provider

    I installed the JPDK and got the samples to work standalone in the browser, but I get an error when trying to add the samples as a provider.
    An error occured when attempting to call the providers register function (WWC-43134)
    An unexpected error occured : ORA-29540 : class oracle/webdb/provider/web/HttpProviderDispatcher does not exist (WWC-43000)
    I would appreciate any assistance. Thanks.

    Jon,
    So, you received the sample page in the browser when hitting the following URL? http://host.domain:port/servlet/sample
    The HttpProviderDispatcher is actually a Java Class already stored in the database. The error message is coming from Portal and not the JPDK.
    Log into the Database as your main Portal schema, i.e Portal30.
    Type the following SQL statement:
    SELECT object_name, object_type, status
    FROM user_objects
    WHERE object_name like '%HttpProvider%';
    Note: The name between quotes is case sensitive.
    You should receive the following back.
    /3334f18_HttpProviderDispatche
    This actually is oracle/webdb/provider/web/HttpProviderDispatcher.
    If this does not come up, check the following:
    SELECT count(object_name)
    FROM user_objects
    WHERE object_type = 'JAVA CLASS';
    You should receive at least 334. Check for invalid JAVA CLASS objects and missing JAVA CLASS objects, you may have something wrong with your Portal installation. If it is simply invalid objects, recompiling might help.
    Hope this helps,
    Sue

  • Error while adding Portlets to the Page. (WWC-44012)

    Hi everyone,
    I am installing the DBPersonalization Manager Provider. I followed directions and am able to successfully bring up the provider's test page. I added the provider to the repository and can preview them without problems. However, when I add the portlet to a page, I get the following error:
    An unexpected error occurred: ORA-29532: Java call terminated by uncaught Java exception: java.io.IOException: Start of root element expected.13
    <Line 1, Column 1>: XML-0108: (Fatal Error) Start of root element expected. (WWC-43000)
    An unexpected error occurred: java.io.IOException: Start of root element expected.13
    <Line 1, Column 1>: XML-0108: (Fatal Error) Start of root element expected.
    at oracle.webdb.provider.web.SoapResponseProcessor.getDocument(SoapResponseProcessor.java:123)
    at oracle.webdb.provider.web.SoapResponseProcessor.processSOAP(SoapResponseProcessor.java:42)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch(HttpProviderDispatcher.java:877)
    at oracle.webdb.provider.web.HttpProviderDispatcher.registerPortlet(HttpProviderDispatcher.java:201)
    (WWC-43000)
    An unexpected error occurred: Start of root element expected.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java)
    at oracle.xml.parser.v2.XMLError.error(XMLError.java)
    at oracle.xml.parser.v2.XMLError.error(XMLError.java)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java)
    at oracle.webdb.provider.web.SoapResponseProcessor.getDocument(SoapResponseProcessor.java:117)
    at oracle.webdb.provider.web.SoapResponseProcessor.processSOAP(SoapResponseProcessor.java:42)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch(HttpProviderDispatcher.java:877)
    at oracle.webdb.provider.web.HttpProviderDispatcher.registerPortlet(HttpProviderDispatcher.java:201)
    (WWC-43000)
    I am not sure what this is from but assume that it is having problems communicating with my provider. Does anyone have any idea what this could be caused by?
    Thanks in advance...
    Esther Poulsen

    Hi Sue,
    Thanks for your response! I ran the XML file through a validator and examined it manually, and it is fine. Moreover, if I add additional portlets to the provider.xml file, they add themselves without any problems. I'd think the entire thing would break if the provider.xml file was not well formed for any reason. But if anyone has any futher suggestions about this it would be greatly appreciated.
    Thanks in advance,
    Esther

  • Retrieve Novell Username when not logged into Portal

    Hi,
    Is there a way I can store the users Novell username into a variable? This would be done in a report, displayed on the Portal homepage. I require this functionality before the user logs into the portal, so I can't use PORTAL.wwctx_api.get_user.
    Thanks

    Hi,
    IE is sharing the cookies between sessions.
    If you open IE and open another window by clicking <CTRL>+N or menu File >> New Window you have the cookies shared.
    If you open another IE by clicking on the IE icon you will have two seperate IEs which do not share cookies.
    Either you teach your users to use the "logoff" link in the portal header or code a new portal application that automatically destroys the portal cookie when the users leave the portal page...
    Hth,
    Michael

  • Integration of JSR-168 portlet into Portal - Complete Guide

    Hi there,
    the CE 7.1 is described to be compatible with JSR-168 portlets.
    Our Company has developed a JSR-168 portlet which comes as a WAR-File
    which can be easily included in other application server and portals (WebShpere, Apache).
    But integration in SAP Netweaver fails - I am missing a complete documentation
    which describes me the necessary steps to integrate a JSR-168 portlet application
    into the SAP Application Server and also how to integrate the GUI into a View of the NW portal.
    PLEASE HELP ME!!!
    Things I tried - Things I failed:
    - Imported a EAR-File into Developement Studio and tried to add it to Server
      -> Message  "EAR Project: ... should have the SAP specific facet in order EAR to be built."
    - Deployement via "Deployement Tool" of Netweaver 2.0 (2004s) worked
      and I was able to start app but no integration into NW portal view was possible
    (Where is the deployement tool in NW 7.1 CE?!?!?)
    - I wanted to create a PAR-File by a WAR-File but dont know how?
    - I did not find any iView template which is for my portlet type.
    Did anyone out there has the same probs or could help me....
    Thanks on advance,
    Andi-)
    Edited by: Markus Sümmchen on Oct 6, 2008 1:47 PM

    Hi Markus,
    There is no complete guide for integration of JSR-168 portlets into a portal; however Diyan is correct.
    In a nutshell, once you have deployed your portlet, you use GPAL technology in the SAP NetWeaver Portal of CE to create an iView wrapper in the PCD. All of this done by a portal content admin in the Portal Content Studio. Your deployed portet should be displayed in the "Portlets" repository within the Portal Catalog of the Portal Content Studio.
    For conceptual and how-to documentation, refer to the following SAP Help Portal links:
    - Generic Portal Application Layer (GPAL) Repositories: http://help.sap.com/saphelp_nwce10/helpdata/en/44/5e93dc35624ddee10000000a1553f7/frameset.htm
    - Integrating Applications into the Portal: http://help.sap.com/saphelp_nwce10/helpdata/en/45/90e8bfaec26c4ee10000000a1553f7/frameset.htm
    - Working with GPAL Repositories: http://help.sap.com/saphelp_nwce10/helpdata/en/44/5b96b37b6f4de1e10000000a1553f7/frameset.htm
    Please let me know if this works for you.
    Michael

  • Critical Error when running MSS Work Overview Page

    Hi All,
    I am experiencing a critical error when I open the MSS Overview Page in the portal.  Attendance Overview, Reminder of Dates,
    Team Calendar & Status Overview for Personnel Change Requests each display the following error message:
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been
    lost.
    Please contact your system administrator.
    Read of object with ID
    portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.mss/com.sap.pct.erp.srvconfig.ato/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.attendanceoverview
    failed.
    I have made the following discoveries:
    1. When I provide the role with Super_Administration rights, it works perfectly fine but once I remove this, it stops working.
    2. When I assign the authenticated group as a child group to my customised MSS & ESS Group, the iViews work perfectly fine but ESS gains access to MSS roles.
    I have had a read through the following Separate UWL Admin from System Admin? but I am not too sure whether this relates directly to my problem, if anyone can shed some light on this, please do.
    Thanks in advance.
    Oloy.

    Hi Rajendra,
    I have assigned the necessary permissions to both the default SAP MSS folder (Content Provided By SAP -> Line Manager -> Manager Self- Service)
    and I have also assigned permissions to my custom folder however, this has still not helped. 
    I assigned Read/Write permissions with the end-user box ticked.
    Any other suggestions?
    Thanks,
    Oloy.

Maybe you are looking for

  • File - File integration scenario in SAP XI 3.0

    I am trying a simple file <-> file scenario in XI 3.0 . I am reading file content from an FTP server , having a simple mapping program in XI and then writing it to another foler on the FTP server. I am completely new to XI , however worked on TIBCO E

  • Reader and Signature Fields

    I work for ConnDOT, we are progressively moving towards PDF for our Engineering Drawings. Can you offer some help or direction how to get the digital signature form field operational in Reader? I know how to create a field in Acrobat Pro, but the dig

  • Text pluggin for music video text

    I am looking for a text plugin for music video text. Can anyone recommend one?

  • Shuffle on an IPod nano

    Is there a way I can adjust my I-pod, as well as my library so when in Shuffle mode, it doesn't play a lot of the same songs over and over? I'd like it so it played everything once until it has gone through the entire library...

  • Pricing-2

    Hi, I have another query in pricing, If  a condition type is not populated in a transaction but is present in a pricing procedure,what are the possible reasons for it , and how it can be rectified. The condition record for the particular condition ty