Activity Management Java iViews displaying No Data Obtained

Activity Management Java iViews displaying No Data Obtained. In our portal we are using several SAP delivered Java iViews. All of them work in our QA environment except the Activity Management ones.
However, they DO work in our development.  Does anyone know what we are missing in the backend configuration that would cause the Activity Management Java iViews to display "No Data Obtained"
Thanks.
Jason

Hi Gregor
The User is assigned to a business partner. I'm not familiar with CRM's Org Management structure, so if I had to ask this question to someone that is, what should I ask specifically?
Advanced search doesn't provide an option for "My Team" but it does for "My Group" is that the same thing? And when I do a search on that criteria I do get results. Another question is even if there weren't any results shouldn't the iView still say "No entries exist" similar to the "My Teams Open Leads"?
Thanks,
Julian

Similar Messages

  • Activity management - error when displaying attached files

    Hi Gurus
    we are using CRM 7.0 with the Web user interface. one on my users is getting an error when trying to display a saved attachment in an Activity.
    the error says" No dument display because of missing customising for HTTP service '/default_host/sap/bc/content
    i tried searching on spro to look for customising because on development its working fine, only the Live system is giving an error
    pls help me with the path and also how to fix this error.
    Thank you in advance

    Hi Admire,
    I had the same problem in our development system and used the tips provided in notes 606745 and 685521 to solve this problem.
    Hopes this helps.
    Regards,
    Alex van Vondelen

  • Jstl tags to display System date.

    Hi there,
    Please let me know how to how to display system date on jsp page using jstl.
    I dont know much about jstl, and i was till now using java code in jsp instead of jstl.
    Since using java in jsp is considered a bad programing these days, I dont want to use java
    to display the date.
    Can anyone help me switch to jstl tags.
    Please help me with the date issue.

    [This will help you|http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html] learn what JSTL tags are available. Once you get that it should be relatively easy to figure out what you nee. If you have questions on a particular tag then a [Google search almost always|http://www.google.com/search?q=jstl+fmt%3AformatDate] brings up example usage.

  • Need to default dates based on appraisal model in Java Iview MboStatusApp

    Hi Gurus,
      I Need to default dates based on appraisal model selected in Java Iview MboStatusApp in MSS->Team->Performance Managemeent->Update Appraisals of reportees->Status overview .
    In this iview we have drop down with list of appraisal models along with the validity period(Start and end date)
    Trails Made : HRPDV00APPRAISAL0001 - I made an implementation for this BADI along with the iview settings at
    self services - > Use Evaluation Period for Employee Selection set to 'NO'.
    But when i tried to run the iview after implementation of BADI , i see there is no execution of BADI .
    My Basic requirement is when manager select any appraisal model say 2009 's appraisal model then dates must be as
    start date : 01/01/2009   End data : 12/31/2009
    when i select 2011 appraisal model
    start date : 01/01/2011   End data : 12/31/2011
    Please help !
    Appreciates the efforts made !!!

    Hi Reddy, did you get any solution on how to change the initial date in Status overview?
    Best regards
    Lasse Finderup

  • DISPLAY SPATIAL DATA USING JDBC ON A JAVA FRAME

    I am trying to set up some spatial data and need help in getting some sample
    code for displaying the data on a Java Frame using JDBC.
    The shapes I am setting up are simple polygons, lines, circles. I was going
    through the samples in the demo directory under $ORACLE_HOME/md/demo/examples, but could not find any JDBC
    I would really appreciate if you can point me towards some sample code and any other spatial resources.
    Madhukar

    Here you go. It uses JDBC to fetch geoms, convert them into Java JGeometry objects, which then create Java2D shapes (these are functions of the public sdoapi.jar library). It then uses some class in the sdovis.jar library (the rendering engine of MapViewer) to setup the necessary viewport transform. If you know how to setup the viewport transform, then you dont even need sdovis. sdovis.jar is found in an deployed MapViewer's WEB-INF/lib directory. Or you can extract it from the mapviewer.ear's web.war file.
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.sql.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.util.*;
    import oracle.jdbc.OracleDriver;
    import oracle.sdovis.*;
    import oracle.sdovis.style.*;
    import oracle.sdovis.util.*;
    import oracle.spatial.geometry.JGeometry;
    import oracle.sql.STRUCT;
    * A very simple program that shows stuff from db in a JFrame
    * <p>
    public class tilsvgui2 extends JFrame
      final static int mapWidth  = 640;
      final static int mapHeight = 480;
      static JSDOGeometry geom = null;
      public tilsvgui2()
        setSize(mapWidth+40, mapHeight+40);
                    setVisible(true);
        this.addWindowListener(new java.awt.event.WindowAdapter() {
          public void windowClosing(WindowEvent e) { System.exit(0); }
            public void paint(Graphics g)
                    super.paint(g);
        int w = this.getWidth(), h = this.getHeight();
        Insets inset = this.getInsets();
        double[] mbr = geom.getMBR();
        //from sdovis; it will setup the viewport transform
        XFViewPort xfp = new XFViewPort();
        xfp.setDeviceView(inset.left, inset.top, w-inset.left-inset.right-1, h-inset.top-inset.bottom-1);
        xfp.setDataView(mbr[0], mbr[1], mbr[2], mbr[3]);
        AffineTransform af = xfp.getAffineTransform();    //get the viewport transform
        Shape shp = geom.createShape(af);    //create a proper shape that fits the viewport
        Graphics2D g2 = (Graphics2D) g;
        g2.setColor(Color.red);
        g2.drawRect(inset.left, inset.top, w-inset.left-inset.right-1, h-inset.top-inset.bottom-1);
        //draw the shape itself
        g2.setColor(Color.blue);
        g2.draw(shp);
      public static void getStuff() throws Exception
        System.out.println("Loading geometry...");
        Connection conn = getConnection("mapsrus.us.oracle.com", "1521", "orcl", "scott", "tiger");
        Statement  stmt = conn.createStatement();
        ResultSet  rset = stmt.executeQuery("select geom, totpop from counties where county='Merrimack' and state_abrv='NH'");
        while(rset.next())
          STRUCT st = (STRUCT) rset.getObject(1);
          geom = JSDOGeometry.loadFromDB(st);
          int population = rset.getInt(2);
          break; //displaying only the first geometry
        rset.close();
        stmt.close();
        conn.close();
      private static Connection getConnection(String host,
                                              String port,
                                              String sid,
                                              String username,
                                              String password)
        throws SQLException
        String thinConn = "jdbc:oracle:thin:@"+host+":"+port+":"+sid;
        Driver d = new OracleDriver();
        Connection conn = DriverManager.getConnection(thinConn,username,password);
        conn.setAutoCommit(false);
        return conn;
      public static void main(String[] args)
        try{
          getStuff();
        }catch(Exception e)
          e.printStackTrace(System.err);
        new tilsvgui2();
    }

  • Displaying a form in an iView & displaying data in .pdf format in an iView

    Hi,
    1)We want to show some details in an iView pertaining to the person who has logged into the portal. We are calling a function module (when a user clicks on a workset in the portal) and passing some parameters to it. The function module pulls the data from the tables and generates a sap script which displays the data in a SAP Script Form.
    Now our problem is how do we display the form in the iView?
    2) We want to show some details in an iView pertaining to the person who has logged into the portal. We are calling a function module (when a user clicks on a workset in the portal) and passing some parameters to it. The function module pulls the data from the tables and converts the data into a pdf file.
    How do we display the data in the .pdf format in the iView.

    Hi,
    displaying a PDF in an iView I receive the following errormessage:
    Access denied:.....
    security zone:.....
    The portalapp.xml is like
    <property name="SecurityZone" value="epp/NO_SAFETY"/>
                    <property name="ResourceBundleName" value="epp_lang"/>
                    <property name="AuthRequirement" value="none"/>
    Any ideas?
    Thanks
    Walter

  • Appraisal iview is not displaying any data

    Hi gurus,
    We are using MSS 1.0 ,ECC 6.0 and ep 7 .
    We are having some problem with the appraisal iview in MSS general information.The employee has data in the back end but in portal it is showing as no data available.Are there any settings to be made to display the appraisals.
    Please it's very urgent.

    I  am using below code but it doesnot display any data, Please let me know what I am doing wrong
                    Dim PLT
    As New ADODB.Connection
    Dim MyRecSet As New ADODB.Recordset
    Set PLT = New ADODB.Connection
                    PLT.ConnectionString
    = "xyz"
                    PLT.Open
    Set MyRecSet = New ADODB.Recordset
    Set MyRecSet = PLT.Execute("SELECT * FROM Action_item")
    If Not MyRecSet Is
    Nothing Then
    If MyRecSet.State Then
                    MyRecSet.Close
    End If
    End If
                 MyRecSet.CursorLocation
    = adUseClient
                 Set DataGrid1.DataSource
    = MyRecSet
                 DataGrid1.Refresh
    Hi,
    Based on the title of this thread and these lines like the following one which is not supported in vb.net.
    Set MyRecSet = New ADODB.Recordset
    I am afraid that issues related to VB6 are not supported in these forums any more, you could check
    Where to post your VB 6 questions
    You could consider posting this issue in these forums below:
    These forums do not support Visual Basic 6, however there are many third-party support sites that do. If you have a VB6-related question please visit these popular forums:
    VB Forums
    VB City
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't get toolbar to display on knowledge management document iview..?

    Hi All,
    We're using MSS 60.1.20.  I have created a number of iviews based on documents stored in KM.  These documents are process forms used by management and so need to be saved and printed, therefore I need to display these documents with a toolbar.
    So, no matter which option I select in the 'Launch in New Window' attribute on the iview, the toolbar does not appear.
    Also I've tried adding 'toolbars=yes' in the Window Features attribute of the iview but it makes no difference.
    Is its the case that for knowledge management document iviews that toolbars do not appear as standard?
    Thanks in advance,
    Liz.

    Hi
    It looks like you need to update a line of your css and take out align attribute from your markup for problamatic table. Please do following:
    1- page1.css : Line 15: take out following line which says : background-position: center top;
    2- Please modify your following markup:
    <td width="995" valign="top" class="center_column">
    <table width="995" cellspacing="2" cellpadding="2" border="0" align="center">
    To:
    <td width="995" valign="top" class="center_column">
    <table width="995" cellspacing="2" cellpadding="2" border="0" >

  • Enterprise Manager:  Error in table "View Data" for table with 128 column

    We appear to be getting an error when running Oracle Enterprise Manager when doing a "View Data" and selecting > 128 columns to display.
    Here's the error message.
    Could you let me know if this is a known issue, and any workaround/fixes for it?
    Thanks!
    2012-07-11 16:53:08,315 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart getCurveLegend.139 - curveindex 0
    2012-07-11 16:53:08,315 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.411 - oracle.sysman.emo.smap.HostChart@7d1a73ee
    2012-07-11 16:53:08,315 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.412 - chart name cpuChart
    2012-07-11 16:53:08,315 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.413 - number of names 0
    2012-07-11 16:53:08,330 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.414 - number of times 0
    2012-07-11 16:53:08,330 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.415 - number of values 0
    2012-07-11 16:53:08,330 [EMUI_16_53_08_/console/database/util/Flex] ERROR perf.svgChart logChartDetails.416 - curve count 0
    2012-07-11 16:55:40,768 [EMUI_16_55_40_/console/database/schema/displayContents] ERROR svlt.PageHandler handleRequest.639 - java.lang.ArrayIndexOutOfBoundsException: -128
    java.lang.ArrayIndexOutOfBoundsException: -128
         at oracle.sysman.emo.adm.DBObjectsMCWInfo.getSqlTimestampIndexes(DBObjectsMCWInfo.java:194)
         at oracle.sysman.emo.adm.schema.TableViewDataBrowsingDataSource.executeQuery(TableViewDataBrowsingDataSource.java:167)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:201)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:151)
         at oracle.sysman.emo.adm.schema.DisplayContentsObject.populate(DisplayContentsObject.java:369)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayAllRows(DisplayContentsController.java:303)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayContents(DisplayContentsController.java:290)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onEvent(DisplayContentsController.java:136)
         at oracle.sysman.db.adm.DBController.handleEvent(DBController.java:3431)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:207)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:121)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:784)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:340)
         at oracle.sysman.eml.app.Console.doGet(Console.java:319)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:190)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:153)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:353)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    2012-07-11 17:02:36,519 [EMUI_17_02_36_/console/database/schema/displayContents] ERROR svlt.PageHandler handleRequest.639 - java.lang.ArrayIndexOutOfBoundsException: -128
    java.lang.ArrayIndexOutOfBoundsException: -128
         at oracle.sysman.emo.adm.DBObjectsMCWInfo.getSqlTimestampIndexes(DBObjectsMCWInfo.java:194)
         at oracle.sysman.emo.adm.schema.TableViewDataBrowsingDataSource.executeQuery(TableViewDataBrowsingDataSource.java:167)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:201)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:151)
         at oracle.sysman.emo.adm.schema.DisplayContentsObject.populate(DisplayContentsObject.java:369)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayAllRows(DisplayContentsController.java:303)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayContents(DisplayContentsController.java:290)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onEvent(DisplayContentsController.java:136)
         at oracle.sysman.db.adm.DBController.handleEvent(DBController.java:3431)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:207)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:121)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:784)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:340)
         at oracle.sysman.eml.app.Console.doGet(Console.java:319)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:190)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:153)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:353)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    Not many people run into this but one has before: Too many columns to be shown in the Enterprise Manager 11g?
    I can not find a known bug related to EM/CC, however a lot of bugs exist if you search in MOS for java.lang.ArrayIndexOutOfBoundsException: 128
    So, best is to create a SR.
    Eric

  • How to display client date in oracle

    Hi All,
    How to display client system date in oracle. When I try to display date & time oracle displays server date and time but I need to display client date & time. How can I achieve that?
    Thank you

    user536769 wrote:
    How to display client system date in oracle. When I try to display date & time oracle displays server date and time but I need to display client date & time. How can I achieve that?As Nicolas says, you can't easily do this.
    The reason is that the SQL engine (and the PL/SQL engine) are processes running on the database server and so they pick up the server date/time. Those processes, running on that server have no knowledge of "client" machines and no way to connect to them. Network security ensures that one machine can't just get onto another machine and access it's operating system without any form of authorisation, hence the only way to achieve this is to have some way for the server to serve a java applet or some such thing to the client and the client user accept that applet to run on their machine and then that applet obtains the relevant details and passes it back to the server.
    Imagine if you wanted to write code on your client machine to go to you colleagues client machine and get the date/time from it, how easy would that be to do without your colleague authorising some part of your software to run on his machine?
    ;)

  • Java iview htmlb & jco question

    hello all,
    I am writing an Java iView to pull some data from an
    R/3 table & displaying that as a LINE chart.
    I've already got the portion of getting data from R/3
    by creating a shim function that returns the table.
    Now i want to display that using htmlb.Chart
    I can seet the JCO.Table as my JCOChartModel easily enough
    however the Table returns to me multiple rows
    (data that will be used elsewhere) but there are only
    two rows i want to use as the source for the Chart.
    Is there any way to limit the Chart to those two rows
    or do i need to (in my opinion wastefully) create
    a Vector and duplicate the data from those two
    rows to use for Chart?

    Hi Srivatsan,
    I need to write a java iview to pull some data from an R3 table.  But I dont know how :S
    I did something with jco in EP 5, but now with EP 6 I'm confused with the term JCA. 
    What do you do to connect to R3 ?  Could you share your code ?
    Thanks and regards from Mexico !!!
    Diego

  • Java iView Runtime error when try connectin to portal

    H, iin my VC i have filled in the address of my portal http://address:50000
    Then i click the traffic light icon, and giving me a popup
    windows that saying Java iView Runtime
    I wonder what could be wrong, i have deployed the portal content and visual composer sda.
    And i'm using super user

    In fact we're not quite sure on what exactly caused the problem ...
    What we did was :
    - deploy from NWDS of Webdynpros ... but we don't see how an apllication deployment may has caused a such big issue
    - we also enabled 2 services in the portal : Activity Reporting service and Activity data Collector ... may enabling these 2 services have cause this global issue ?
    Thanks for your quick response,
    Regards,

  • Java iView Runtime errorr when trying to connect on portal

    Hi experts,
    when we try to connect to our portal ( .../irj/portal ) ;
    we always get following error :
    " Java iView Runtime
    Copyright 2002 SAP AG. All rights reserved.
    An exception occured while processing your request.
    If this situation persists, please contact your system administrator. "
    We looked on others threads and SAPnotes, but as we are running on EP7 SP15 , none of them seem to be adapted ...
    The only interesting logs we found in defayltTrace.trc are :
    com.sapportals.portal.prt.dispatcher.DispatcherException: Could not find connection portal#
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:530)#
    at java.security.AccessController.doPrivileged(Native Method)#
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)#
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)#
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)#
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)#
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)#
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)#
    at com.sap.portal.navigation.Gateway.service(Gateway.java:126)#
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)#
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)#
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)#
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)#
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)#
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)#
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)#
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)#
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)#
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)#
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)#
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)#
    at java.security.AccessController.doPrivileged(Native Method)#
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)#
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)#
    Do you have any idea on how we can resolve this issue ?
    Regards !

    In fact we're not quite sure on what exactly caused the problem ...
    What we did was :
    - deploy from NWDS of Webdynpros ... but we don't see how an apllication deployment may has caused a such big issue
    - we also enabled 2 services in the portal : Activity Reporting service and Activity data Collector ... may enabling these 2 services have cause this global issue ?
    Thanks for your quick response,
    Regards,

  • Java iviews and PDV  Urgent!!!!

    Hello FOlks
    I am working on EP5.0SP5. I need to do some modification to the existing custom developed java iviews. These iviews were developed using PDV. There is no much documentation available on this. So if any one could tell me where begin the modifications for these iviews it will be of great help to me.
    I need to make some columns removed from the iviews etc.
    Any help will be of great help. I am working on PDV for the first time.
    Thanks

    Hi,
    In <b>beforePdvExecuteSource</b>(IDataViewer portalDV) you should set the portalDV source, ususaly using a JCO.Table:
    JCO.Table table = getDataTable();
    ISource myJCoSource = portalDV.createSource(table);
    portalDV.setSource(myJCoSource);
    when getDataTable() is a method you should write (probably exists in some way or another in the code you have), which creates a new JCO.Table, fills it with data and returns it.
    Removing columns will be done in that method, by deleting lines like:
    table.addInfo("ID", JCO.TYPE_STRING, 0);
    In <b>afterPdvExecuteSource</b>(IDataViewer portalDV)
    you can add meta-data used by the portalDV while displaying the table, like personalization settings,
    columns display types, target url for data in a column with a link display type, etc.
    In <b>afterTableViewCreate</b>(TableView table) you can handle the display properties of your table (e.g. setting columns visibility, etc.)
    In <b>onContainerCreate</b>(TableView tableView) you construct your gui. The given tableview contains the data you put in the source, formatted according to afterTableViewCreate, and should be added to the form (like in doProcessBeforeOutput in ordinary dynPage).
    Hope that helps,
    Yoav.

  • View the .rtf file not display the data in BI Publisher Enterprise.

    Hi,
    Platform: OBIEE 10g in NT XPsp2
    View the .rtf file not display the data in BI Publisher Enterprise.
    Step 1, I created Answer-request, create .rtf file with Word and add the request name, Add bar chart and table, preview PDF is working fine with data, Upload this template to Answers, View Template from Answer is working fine with data.
    Step 2, Answers – More Products > BI Publisher > My Folders > Create a new report > Edit > Data Model > New > Type: SQL Query > Data Source: Oracle BI EE > Query Builder > from SupplierSales assign Customer, Periods, Sales Facts (select Region, state, Year, Units Shipped) > Results > Save > Save
    Click Layouts > New > enter Name ….. > Click Layouts > borrows .rtf file in Manage T file > Upload > Save > Click View
    It is showing only the .rtf file without data. Why there is no data?
    Please guide me to solve this issue.
    Thanks,
    Jo

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

Maybe you are looking for

  • Please check my VI and tell me if something is wrong.

        I tying to build and Simulate the dynamic response of first order system , I'm new in labview , I think something is not as should  be. please check the attachment file and give me a suggestion or correct any errors that you see in the VI. Here a

  • G/L Acc Balance sheet

    Dear All,     in t-code fs10n my g/l acc is not balance  in STO (Inter plant with same company code) the balance is occure my procedure is PO-DELIVERY & PICKING-BILLING -WRT BILLING EXCISE INVOICE DOING MIGO Actually in billing cenvat suspense is deb

  • Use of STAD tcode in XI

    Hi Experts, What is the use of STAD tcode in XI. Could you please explain it. Also when and where it will be used in XI? Regards, Madhu.

  • Sql loader fail to load

    Hi, i'm getting a very strange issue with sql loader. i want expert advice how to look into this matter and solve this problem. our application use sql loader to load text file into table. but sometime it reject the record and mark it bad. although t

  • CL_SY_IMPORT_MISMATCH_ERROR  for extractor

    hi Experts, First up I am sorry if I am posting this to wrong forum or if u find this as a repost because I absolutely have no idea of the specifications of BW forums and I dont know where i wud get the soltuion from. I am an abaper and have got this