Adhoc Query data not getting displayed on Portal

Hi,
I have a problem with custom Adhoc query data not getting displayed on the portal.
It was getting displayed initially but after a user made some changes to the query its not getting displayed.
The query is displaying data perfectly on R/3 but on portal ..Its giving the message no data found.
Can anyone help me on this.
Also if anyone can tell me how do i debug an Adhoc query from potal.
Is there any tool to debug an Abap program from portal.
I dont want to use trace,
Thanks
GT
Message was edited by: GT

Hi GT
find out the EXACT query u want to launch if it's display
in BW buisness explorer then change the iview property
for that query in portal . right click on iview
BEx Web Application Query String -> assign correct query
regards,
kaushal

Similar Messages

  • Data not getting displayed in query

    Hi
    I have master infoobject with keyfigure units as percentage, and data is loaded and working fine.
    data is not getting displayed in query, i am getting the error message, that exception aggregation has to be maintained for 0calday.
    how do i resolve the issue
    Regards

    solved

  • Content Query Webpart not getting displayed in Mobile view

    Hi,
    I am having a Content Query Webpart in my page.
    In the mobile view it is not getting displayed.
    I read that you can create mobile adapters for the control. But I didnt get how to do it for Content Query Webpart.
    Any help appreciated..

    Is deactivate "Mobile view" a option for you? if then then CQWP will work in same page. You can deactivate that feature from site feature.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Data not getting displayed in Report

    Hi All,
    I am creating a report the query of which fetches around 1500 rows and is working fine , when I am running the same query in the report created data is only getting displayed on the first page and the report contains only 1 page.
    Can anyone help what the problem is about and how to go about it.
    Thanks
    Ashwini

    Hi,
    Please check any conditional format trigger exists in the report, which you might created before. The conditional code doesn't seems deleted automatically and still take the conditional effect, even if you delete the conditional format from the menu. You need to delete it from Program Units manually.
    By setting the vertical elasticity to Variable, all records should display normally. Are you able to view the page navigation button, once you run the form? or are you getting any error message?
    Regards
    MP

  • Master page Dynamic data not getting displayed in consecutive pages

    Hi,
       I have buit a dynamic form which has some dynamic content in master page and a dynamic table in the body page.
    Layout is
    Master page
          Sub form
                 Field1 -TextView
                 Field2 - TextField      bind with Node1--->Attribute1
                 Field2- TextField       bind with Node2---->Attribute2
                Field n - TextField
    all the text fields are bound to various nodes from RFC
    Body Page
             Sub form
                  Table -Grows Dynamically
    When i run the application all the fields are displayed perfectly in the first page.
    when the table data goes more than one page the problem arises
    The Text fields in the master page is  not displaying the values in the second page ,but the text views and the table values are fine.
    The values are getting displayed in both pages if i put any attribute inside the parent node.Is there any property i need to set at node level or subform level?
    Thanks in advance,
    Siva

    Hi
    I Would like to give a suggestion eventhough i don,t have answer to you question.
    Master Page is used for static content as per SAP and Adobe like company logo and  company address footer section and placing  watermarks etc....
    I feel because of the Dynamic behavior in master page it Leeds this problem.
    Regards
    Malli

  • Component image not getting displayed in Portal

    Hi All,
    I have added a jpg image to MIME folder in my component and used it as source for Image UI and also as a separator in Breadcrumb. When I run this web dynpro application in portal, the image is not getting rendered. I am getting cross mark instead of the image. But the image is getting displayed if I run the application as a stand alone application from SE80 -> Test. Once I do this, the image starts appering even in portal and again disappears after sometime.
    Could you please help me to resolve this issue?
    Thanks & Regards,
    Vishweshwara P.K.M.

    Vishweshwara,
    I hope you referred the MIME object in below way.
    '/sap/bc/webdynpro/sap/ZCOMP_EPI/SELECTED.JPEG'
    Where zcomp_epi is my component name and selected.jpg is mime object name. Check and let me know
    Regards
    Srinvias

  • Data not getting displayed in ALV grid when run in background

    Hello experts!
    Could anyone help me out please?
    I need to display an ALV grid in the background. My requirements are as follows:
    I first display an ALV grid in the foreground based on some input parameters. The user selects a few records for updating it and clicks on the "update" button. On the click of this button another report must be called and here the ALV report is displayed in the background.I am using "reuse_alv_grid_display" to display the grid.
    I am using Import/Export to get the selected rows in my called report. When i execute this report in the foreground i get the ALV grid along with the data. But when i execute it in the background, i get only the grid with the fieldnames and not the data when i check in SP01.
    Thanks in advance!
    Smitha

    Hi Smitha,
    If you are able to see in SP01 and only see the output layout or "List contains no data" shows clealry that the data is not getting passed in the called program or the data is not being used correctly in the called program.
    Cheers
    VJ

  • Module Pool - Table Control - Data not getting displayed in Control

    Hi,
    I have a table contol in my module pool program. In my processing I am filling an internal table & then in my PBO I am linking the internal table to table control. The issue is that even though the internal table is getting filled correctly (found through debugging), the data is not getting populated in table control. Nothing is populated on screen. I am writing part of code below
    Declaration:
    Types: begin of ty_control,
            SELECTED TYPE C,
            TEXT TYPE DPR_CAUSE_T-TEXT,
          end of ty_control.
    CONTROLS :  TBL_CONT TYPE TABLEVIEW USING SCREEN '9001'.
    DATA:       lt_table_cont type TABLE OF ty_control with header line.
    Fields in TBL_CONT:
       TBL_CONT-SELECTED
      TBL_CONT-TEXT
    PBO Flow Logic:
      MODULE STATUS_9001.
    MODULE fill_data.
      LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
      ENDLOOP.
    PAI Flow Logic:
    Loop at lt_table_cont.
       MODULE UPDATE_DATA.
    endloop.
    MODULE USER_COMMAND_9001.
    PLZ let me know what might be the problem. I have been trying to figure out but cant.
    Thanks.

    Hi Sonali,
               When ever you need to do anything with the table control, i mean if u want to display data in table control or you want to validate the data entered in table control Should be done within Loop and Endloop.(PBO or PAI's which ever is appropriate)
    Here the data is not bieng displayed in ur table control because you have not used the MODULE fill_data  between
    LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
    ENDLOOP.
    so do it like this
    LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
    MODULE fill_data 
    ENDLOOP.
    this will solve your problem.
    Regards,
    Syed

  • Data not getting displayed in every page ...

    Hi,
    I'm facing a peculiar problem. I have a template where i want to display a certain table in every page but i can't place it in header. As far as i know it should get displayed if I select "Repeat as header row at the top of each page".
    This table is under a group <?for-each@section:G_HEADERS?> ... The problem that i'm facing is the table is getting displayed in the first page but not on subsequent pages ... i even tried putting a simple table with a static text .. but its behaving simillarly .... I tried Table-> Heading rows repeat but to no avail ..
    Please help me if someone has any solution ...

    Do you have a single page or multiple pages?
    You should be able to put a table in the header. Read up in the user guide on
    <?start:body?>
    <?end body?>
    Which allows you define the header/foot inside the Word body.
    In the 5.6.2 user guide it is on page 6-13:
    Creating RTF Templates -> Defining Headers and Footer -> Multiple or Complex Headers and Footers.
    In the word header you can use <??> command, but you have to spell them out and
    not use form fields - becaue Microsoft Word does not allow form fields in headers.
    Klaus

  • Sold-to-party Text data not getting displayed; Urgent

    I am current using a BI content 0CRM_COMP which contains sold-to-party, i have loaded this ODS, but when i view the data in bex i could only see the Key value and not the Text, even though i change the display mode to Key and Text both the columns displays only the Key value. is it because the master data is not loaded, i have also tried to load the Business Partner master data attributes and text till no use. Please help
    Note: These business partners are created in CRM and are nor from R/3

    Hi,
    Just check whether for this infoobject has master data and text option ticked or not in infoobject.
    If text option in there then search for the data scource0CRM_SOLDTO_TEXT or something like that which contain text for this particular infoobject and then laod the text for the same.
    Just got to the modelling tab -> infoprovider-> Application component in which you infoobject is present-> right click insert object as dat target-> give the name of your object this will give you data target one for master data one for text->activate data source and replicate in BW if not presen in BW-> make infosource on the text data source->make update rules for the text target and load.
    Or as Anil said sold to party is reference to customer load text into the custome with the same method iot will work fine.
    Hope it helps
    Thanks

  • Bex reports are not getting displayed in portal

    Hi,
    We have created the BW iviews in portal (SAP EP 7.0 SP10). iViews work fine in Q environment but when I import all the iViews, roles and worksets in production server and assign the role to particular user, i am not able to see the bw reports. I am getting the run time exception "Could not find portal application com.sap.ip.bi.bics.".
    Any help will be appreciated.
    thanks in advance,
    Manish
    <b>Detailed exception is given below:</b> Exception ID:10:38_09/02/07_0020_103787350
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in init method
    Component : com.sap.ip.bi.web.portal.integration.launcher
         at com.sapportals.portal.prt.component.PortalComponentContext.init(PortalComponentContext.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java(Inlined Compiled Code))
         at com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java(Inlined Compiled Code))
         at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(PortalRequest.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java(Compiled Code))
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Caused by: com.sapportals.portal.prt.core.broker.PortalComponentInstantiationException: Could not instantiate implementation class com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent of Portal Component com.sap.ip.bi.web.portal.integration.launcher because: Could not instantiate implementation class
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getInstanceInternal(PortalComponentItemFacade.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getComponentInstance(PortalComponentItemFacade.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalComponentItem.getComponentInstance(PortalComponentItem.java(Compiled Code))
         at com.sapportals.portal.prt.component.PortalComponentContext.getComponent(PortalComponentContext.java(Compiled Code))
         ... 29 more
    Caused by: com.sapportals.portal.prt.core.broker.PortalApplicationNotFoundException: Could not find portal application com.sap.ip.bi.bics
         at com.sapportals.portal.prt.core.broker.PortalApplicationItem.prepare(PortalApplicationItem.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalApplicationItem.prepare(PortalApplicationItem.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalApplicationItem._refresh(PortalApplicationItem.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalApplicationItem.getCoreLoader(PortalApplicationItem.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.PortalComponentItem.getClassLoader(PortalComponentItem.java:569)
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getClassLoader(PortalComponentItemFacade.java(Inlined Compiled Code))
         ... 33 more

    Hi Manish,
    Have you imported the system object and other dependant objects.
    In Production iviews point to which system
    Regards
    Arun

  • Cube data not getting displayed in OBI

    Hi
    After importing a cube in OBI when I am trying to fetch the data it says " The criteria doesn't result in any data" .
    The cube is not fully populated and only some of the measures have data like 2007 q1 jan Boston sales 200.
    Is there something I am missing to introduce in cube.
    Appreciate any guidance.

    The cube is not fully populated and only some of the measures have data like 2007 q1 jan Boston sales 200.Well if the cube's not fully populated then it's not wonder you don't get results. You wiill need to specify exactly the dimension members for which there is actually a valid data intersection point.
    Other than that make sure that your hierarchies are represented as what they actually are in the RPD. I.e. ragged hierarchies are ragged and unbalanced ones unbalanced.
    Cheers,
    C.

  • Data not getting displayed in controls present in the tabs

    Hi,
    I am facing problem in binding data to different controls
    exisiting in different tabs of a page from database. I can see the
    values of the controls in first tab, but not in other tabs. And at
    the same time, I can get the values of the datagrid even if is
    present in the later tabs....
    please guide me......

    To do what you want, set creationPolicy="all" on the
    TabNavigator.

  • Data not getting displayed in SNI monitor Web-UI screen

    Dear all,
    We are running the program ROEMPROACT2 in ECC to transfer planned independent requriement entered in MD61, the message ProductActivityNotification_In is successful in ECC and SNC.
    SLG1 shows warning message "Item 1: ShipFromLocation and VendorParty are both not specified" but we not able to see the planned demand in SNI Details - Product view.
    Request please let us know if we have missed out on any config.
    thanks,
    mahesh.

    Hi Mahesh,
    currently i am facing the same issue as mentioned by you above. will you please let me know how it got resolved?
    Thanks ain advance.
    Regards,
    aruna

  • Workitems are not getting displayed in UWL

    Hi All,
             We have deployed ESS/MSS Business packages in our system. Also configured UWL to display workitems in portal. But when testing leave request, leave request workitems are not getting displayed in portal as UWL. Any help on this will be appreciated.
    Thanks,
    Krish.

    Hello,
    have created some new users and done with the leave request, it comes to backend inbox, but not
    visible in portal. Re-configured UWL, but still the task not coming( leave request). For other users it is > coming?
    Where have you created these users? Many times it is not enough to create new users in a backend system. You will have to create them in the data source which is used by the UME of your portal or to map this data source with the system where you have created your new users
    You can see what data source your portal is using by going to
    Portal --> System Administration --> System Configuration --> UME Configuration --> Data Source
    If this Data Source doesn´t contain your new users, then UWL wouldn´t be able to show their items.
    Here you can check if your user is contained in the data source:
    Portal --> User Administration --> choose the right data source --> put in the username --> search
    Please check if your users are correctly created.
    Regards,
    Iris

Maybe you are looking for

  • Hi there, can anybody help me: can icloud store my ibooks?

    Hi there, can anybody help me: Can iCloud store my iBooks?

  • How to get the file path from HTML input form in Firefox3

    In IE7 (and probably all famous browsers, including old Firefox 2), if we submit a file like 'C:\folder1\folder2\folder3\filename' it works properly and gives the full path to the file and the filename. In Firefox 3, it returns only 'filename', becau

  • I find that the older version of Dreamweaver (CS3) works best for me.

    I have used all new updated versions of Adobe Dreamweaver. Usually an update would make things easier for me but in this case it is the complete opposite. Don't get me wrong, Dreamweaver is still my primary choice for developing a website. I just fin

  • UserTransaction doesn't rollback (JOTM)

    I'm running tomcat 5.5 with SQL Server 2000. I'm working on adding transaction support through UserTransaction with JOTM. I installed JOTM, a Transcation Manager, but it doesn't seem to work. When I try to rollback an update, it still commits it. ###

  • Lightroom 5.7 back to old version

    I have just upgraded to the new 5.7 but it is slow and keeps crashing. Is there anyway to go back to the old version without losing the program. Not sure I still have my serial key for this either. Please can someone assist.