Query on data not able to come to reporting

Hi BW Guys,
I have one cube (ex:YFIN) loaded data from business content gl datasource as 0fi_gl_10(leading ledger balances).Unfortunately from that datasource i did not get the data from one GL Account number(ex : 567321).So i extraced second time that gl account number by using dataselction tab of infopackage.
In reporting it does not show the data for that particular GL Account number even though i extracted second time using dataselection tab.In Manage of the cube i got reporting symbol.
For the first time I Created a query in that  i got data without that  GL Number.Its fine then after extracting the data from selectively the data does not reflect in the old query. In new query it shows the data.
But i want that GL Account number data in OLD QUERY ITSELF? HOW?
Could anyone please throw some light into this
thanks

HI Rakesh,
I Have forgottten to say that In the query the GL account number is placed in Free chars.Without dragging that GL Account number into rows I need that particular GL Account number values.I just drilled down the GL Account number but it shows only previous GL Numbers.It does not show the new GL account number(extracted using dataselection tab).
Please let me know
Thanks

Similar Messages

  • Not able to edit the report created on different data source.....

    I have a query regarding Report in OBIEE - reports developed from BI Publisher are specific to data source on which they have been created ??
    i have a sample report that was created on different data source, i have the corresponding RPD also. I changed the data source according to my DB and when i try to update/edit the report,
    on Analytics for adding a new column, it is generating a seperate new Query from QueryBuilder for that additional cloumn rather than adding up the new query with the previous one(existing report query). Is it because of mismatch of data source on which report had been created and on which it is being update ?? if it is the case, where do i need to make changes related to JDBC connection or others ??
    when i try to create a new sample data set and try to update it, it adds up the extra edited things to original query and works perfectly fine. can ny 1 help me for the same ??

    Hi Denis,
    Normally,what we do is once we provide access to webi users group for each user from BO supervisor module, user(s) will able to refresh/edit the existing report from Full client BO.His colleagues have had no problem editing all his reports from their machines but he is not able to edit any report from his machine and BO is getting freeze.
    He also reinstalled BO and cleaned out everything on his Computer and re-built it but the issue is not yet resolved
    Can you please tell me how to resolve this issue
    Kind Regards,
    Srinivas

  • Not able to view any report in BI Publisher 11g

    Hello All
    I have installed BI Publisher 11g in Intel Solaris 10. I started of from the scratch, created a Data Model, then created a Report. but now I am not able to view the report. Upon clicking the report name or Open it logs me out.
    I am logged in as user, weblogic the default user created while installation.
    Please help
    Ash

    Hi Rony,
    You may have created the report initially with Web Layout only - therefore there will no paper layout.
    To 'get' the paper layout back, select your Report module name from the Builder and then select Tools-->Report Wizard. Select 'Create both web and Paper Layout' and then go through the various wizard steps.
    Best of Luck.
    Regards,
    John

  • Not able to edit the report from BO 5.1

    Hi,
    User has Business Objects 5.1 version on his machine  and he is able to login to Business Objects 5.1.2 and can also open the BO reports from the required path
    When he edit the report, the BO is gettng hung and following errors occured one by one when he clicks ok button
    error1: "you must close this universe(name of universe) before importing it"
    when he clicks OK button on this error, second error is received
    error2: "Some obsolete objects have been removed from the query. (QP0027)"
    When he clicks OK button on this error, third error is received
    error3:"A connection required to refresh this document is unavailable(DA0004)"
    I am not understanding why these three errors are receiving one by one.Please tell me how to resolve above errors and edit the report
    kind Regards,
    Srinivas

    Hi Denis,
    Normally,what we do is once we provide access to webi users group for each user from BO supervisor module, user(s) will able to refresh/edit the existing report from Full client BO.His colleagues have had no problem editing all his reports from their machines but he is not able to edit any report from his machine and BO is getting freeze.
    He also reinstalled BO and cleaned out everything on his Computer and re-built it but the issue is not yet resolved
    Can you please tell me how to resolve this issue
    Kind Regards,
    Srinivas

  • Not able to run a report on BiPublisher version 10.1.3.4

    I am using Bipublisher version 10.1.3.4. i am not able to run the Report. I am calling this report using
    webservice from java code.I have added entry "Guest" in Guest Folder name also i have
    checked the checkbox AllowGuest acess in Admin->ServerConfiguration tab.
    i have xdo file in location /Guest/Test/InvoiceBatchReport/InvoiceBatchReport.xdo
    I am getting exception at line following line
    ReportResponse reportResp = (ReportResponse) call.invoke( new Object[] {report, "Administrator", "Administrator"} );
    following is the exception detail
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReport failed: due to unable to read
    ReportDataFile [Guest/Test/InvoiceBatchReport/InvoiceBatchReport.xdo]
    faultActor:
    faultNode:
    faultDetail:
    {}oracle.apps.xdo.webservice.exception.OperationFailedException:null
    {http://xml.apache.org/axis/}hostname:GTMDevWS
    oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReport failed: due to
    unable to read ReportDataFile
    [Guest/Test/InvoiceBatchReport/InvoiceBatchReport.xdo]
    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
    at
    org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
    at
    org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContex
    t.java:1087)
    can any body provide me the solution ?

    I missed to attach the source code.following is mine source code.
    public static void runReport() throws Exception {
              final String bipEndpoint = "http://localhost:9706/xmlpserver/services/PublicReportService?wsdl";
              final String bipNamespace = "http://xmlns.oracle.com/oxp/service/PublicReportService";
              final String xdofile = "/Guest/Test/InvoiceBatchReport/InvoiceBatchReport.xdo";
    // set up the call object
    Service service = new Service();
    Call call = (Call) service.createCall();
    call.setTargetEndpointAddress(new URL(bipEndpoint));
    // TEST Run Report
    System.out.println("TESTING runReport Service BEGIN");
    // register the ReportRequest class
    QName reportReq = new QName(bipNamespace, "ReportRequest");
    call.registerTypeMapping(ReportRequest.class, reportReq, BeanSerializerFactory.class, BeanDeserializerFactory.class);
    // register the ParamNameValue class
    QName nmvals = new QName(bipNamespace, "ParamNameValue");
    call.registerTypeMapping(ParamNameValue.class, nmvals, BeanSerializerFactory.class, BeanDeserializerFactory.class);
    // register the BIPReportResponse class
    QName reportRespqn = new QName(bipNamespace, "ReportResponse");
    call.registerTypeMapping(ReportResponse.class, reportRespqn, BeanSerializerFactory.class, BeanDeserializerFactory.class);
    // Default return type based on what we expect
    call.setOperationName( new QName(bipNamespace, "runReport" ));
    call.addParameter( "ReportRequest", reportReq, ParameterMode.IN );
    call.addParameter("admin", XMLType.XSD_STRING, ParameterMode.IN);
              call.addParameter("yuvraj79", XMLType.XSD_STRING, ParameterMode.IN);
    call.setReturnClass(ReportResponse.class);
    ParamNameValue[] paramNmVals = new ParamNameValue[2];
    paramNmVals[0] = new ParamNameValue(false, "dept", null) ;
    paramNmVals[1] = new ParamNameValue(false, "emp", new String[] {"*"}) ;
    ReportRequest report = new ReportRequest("pdf", "en-US", "Simple",false, null, "/Guest/Test/InvoiceBatchReport/InvoiceBatchReport.xdo",null, xdofile, -1);
    // issue the reques
    ReportResponse reportResp = (ReportResponse) call.invoke( new Object[] {report, "Administrator", "Administrator"} );
    System.out.println("Return ReportResponse: ContentType = " + reportResp.getReportContentType());
    // Save the report
    byte[] binaryBytes = reportResp.getReportBytes();
    OutputStream out = new FileOutputStream("D:\\temp\\out.pdf");
    out.write(binaryBytes);
    out.close();
    System.out.println("Success for Run Report");
    }

  • Not able to Print the report

    <p>Hello All,</p><p>I am not able to print the report. When i click on the icon a blank form opens up. Is there something i need to do to see the form with some details.</p><p>Thanks</p><p>ram</p><p>&#160;</p>

    <p>Hi Ram,    </p><p>Can you give me some more details around your issue? How exactly are you building the viewer? Are you using the JSP Page Wizard that comes with Crystal Reports for Eclipse? If so, then can you tell me what application server you are deploying to?  All of these pieces may help narrow down the issue.  </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Not able to Preview Crystal Report from Portal

    Hi
    Not able to view the Report designed using Crystal Report.
    It can be viewed when access directly in BOBJ System.
    It show the following error
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
    Timestamp: Thu, 4 Aug 2011 08:09:45 UTC
    Message: Access is denied.
    Line: 10
    Char: 1
    Code: 0
    URI: http://bobjdev.hclinsys.com:8080/OpenDocument/appService.do?service=error
    Please guide
    Thanks

    Hi Prashantroy
    This is IE Problem. Try installing IE 8 fresh and try ;
    Please refer this document http://answers.microsoft.com/en-us/ie/forum/ie8-windows_7/webpage-error-detailsuser-agent-mozilla40/9a1ad6a9-7085-4676-aa5c-ab5ce4fdb7d2
    [Freeze after exporting the report from asp.net app to eg Excel|Freeze after exporting the report from asp.net app to eg Excel;
    [Please look  at this forum|'Organizational Assignments' link in MSS>Team>General Information;
    I hope this is help full for you,
    Regards
    Vijay

  • HTTP 500 - Internal server error - not able to Export BI report to Excel

    Hi,
    We just upgraded to HFM 9.3.1.4. Unfortunately we are not able to Export BI report to Excel (in Workspace and in BI Studio). We receive the error message "HTTP 500 - Internal server error" (this worked fine in 411).
    We are able to preview in PDF and HTML, but not Export to Excel. We also just restarted the services for workspace and web analysis, but still the same issue.
    Anyone have any idea what is wrong?
    Thanks for your help!

    Hi Varun,
    We just restarted the financial reporting services, but still receive the same error message.
    Any other idea?
    Thank you for any help.

  • OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.

    OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.
    Appreciated if you could able to help as soon as possible as I don' have back up for these disappeared reports.
    Pleas let me know if any additional information needed.

    Hi
    Thank you for the reply.
    Here one thing I would need to mention that those are created by me on last week, but when I check those today, I could not able to see or even admin also not able to see those. For sure no migration and updations happend over the week end, really not able to debug whats the issue around. Unfortunately I haven't taken back up as well.
    Please could you help and let me know whats the root cause and how I could able to restore.
    Best regards,
    Kumar

  • End users not able to export a report to a spreadsheet

    Hi Gurus,
    My end users not able to export a report to a spreadsheet..
    version     : ECC 6.0
    Release    : 7.10
    support Package 14
    Currently the end user has 6 choices for creating spreadsheets if the selecte the "All Available Formats" option when generating a spreadsheet. Those options are:
    Excel (in MHTML format)
    Excel (in MHTML format for 2000/97)
    Excel (in Office 2003 XML format)
    SAP internal XML format
    SAP Standard (internal table)
    Excel (in Existing XXL format)
    When they are trying to use format " Excel (in Existing XXL format) " Below error is coming..
    save XXl list object in SAP Office
    Name for list object            ALVXXL01
    Title for SAPoffice              -
    as per sap Note 1080608 it's support only * Excel (in previous XXL format) format,
    My question is  * Excel (in Existing XXL format) and * Excel (in previous XXL format) are same.
    If yes why its not allowing to Excel (in Existing XXL format)... ? Am waiting for you valuable suggestions..
    Best Regards,
    RK

    Dear, all
    When they are trying to use format " Excel (in Existing XXL format) " Below error is coming..
    save XXl list object in SAP Office
    Name for list object ALVXXL01
    Title for SAPoffice
    Please sujest how to solw this problem
    Mayur Tandel

  • Could not initialize class com.crystaldecisions.reports.dataengine.DataSour

    Dear All,
    I am getting nuts and frustrated with Crystal Reports currently. One day or the other some problem
    is coming where there is no reference how to solve it. The support is very slow for java developers.
    Anyhow, i made to work the formula, i was working on yesterday with the PREVIEW inside Eclipse
    Helios.
    Now when i generated the JSP for it, i have started getting strange error, here is it given
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Could not initialize class com.crystaldecisions.reports.dataengine.DataSourceManager---- Error code:-2147467259 Error code name:failed
    I dont now what to do, i am in fix, please help.
    Prithvi

    That file is found in CrystalReportsRuntime.jar

  • Could not initialize class com.crystaldecisions.reports.formatter.export2.E

    i m using Eclipse 3.4.1 Crystal Reports development tool. I have tried to develop a report. On preview it's working fine. when i host the application into tomcat6.0 and tried to open the link, web page provides an Error like "Could not initialize class com.crystaldecisions.reports.formatter.export2.ExportSupervisorEx"
    1 hr before it was worked but not now. i had tried in all the way but getting same problem.
    Anyone help me to solve this issue.
    Thanks in advance.
    Regards,
    Ram

    Thanks Ted. Can u help me on changing the datasource.
    Actually i need to change the datasource from development environment to production server. i had configured the JNDI informations like the following:
    <Context path="/RFT" docBase="RFT" reloadable="true">
            <Resource
              auth="Container"
              type="javax.sql.DataSource"
              driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
              validationQuery="select 1"
              name="jdbc/datasource"
              username="sa"
              password="$m1sbag$"
              maxIdle="-1"
                     maxActive="0"
              maxWait="5000"
                url="jdbc:microsoft:sqlserver://172.24.151.149:1433;databaseName=Projectgold" />
               <WatchedResource>WEB-INF/web.xml</WatchedResource>
    </Context>
    and mentioned the JNDI Connection Name as 'jdbc/datasource'. but still getting the same connection which one is configured during the report design. need your help to resolve this...
    Thanks,
    Ram

  • Input Enabled Query - Web Template - Not able to change the key figure.

    Hello IP Gurus,
    This is a simple question .
    I have input enabled query and for all the KF's , I selected the radio button - data can be changed using user entries or planning functions , Equal Distribution and No disagrregation.
    I attached the query to a web template.
    When I execute the template I am not able to enter or change the key figures.
    Do I have to use any planning function to do that in the web template or I am missing any configuration . Please let me know how to change or enter the key figures
    Thanks
    Senthil

    HI Senthil,
    Please ensure that u have enabled the property  " start Query in changed Mode". This u can find it in the query properties under the advanced tab.
    For the Input readiness this alone is not enough.You have to use all the charecteristics that u have in the multiprovider or the aggregation level over which the query is built.
    regards.
    Shafi.

  • Query regarding OdiInvokeWebService, not able to use it with any webservice

    I am trying to invoke a webservice using the OdiInvokeWebservice, but not able to do that, tried with 11.1.1.6 and 11.1.1.5
    any one tried that before in the following version ?
    Please help !!
    Regards,
    Uday

    What did Orange say when you requested them to unlock the iPhone?
    You have to request an unlock - it is not automatic after a period of time.

  • Not able to download MCSI report in XXL format after installed OpenOffice

    Hey Friends,
    Very Good Morning~~~
    Now i am facing one problem in Downloading for MCSI report via OpenOffice.
    previously it was working with MSOffice but now we are not able to download the resport after installed
    OpenOffice~~
    Thanks and Regards
         Gopi.M
    Lucas Indian Service Ltd
    Chennai

    Hi,
    As per your query this is not related to SAP issue, this issue comes form msoffice. Pls re-install ms-office and download in SAP given format.
    Anil

Maybe you are looking for

  • How can I add logic control with timeout in OSB?

    In the proxy service, when I try to call business service, the business service may timeout, how can I add logic with this? Like, I can set the timeout to 20 seconds, if more than 20 seconds, then do something else. But I just want this service can s

  • 3GS: After upgrade to OS4 my BMW can not sync contacts and other informatio

    Hello, after the upgrade to OS4, my BMW can not sync the contacts, call information and other things via bluetooth. With OS 3.x, everything was fine. How can I fix the problem? Reinstall OS3.x? Reboot my BMW Thanks Tom

  • Form Filter Based On Query Results

    How can I create a filter on a form based on the results of a query. i.e. The Query [ESS_City] looks at the form's field [Current_User] and generate a list of cities [City_ID] that I want to use to match the form [ESS_QUEUE] field [City_ID] Query Nam

  • Get URL based on URLStream?

    I don't know if this is possible. Here is my situation: var urlReq:URLRequest = new URLRequest(strURL); var urlStream:URLStream = new URLStream(); urlStream.addEventListener(Event.COMPLETE, loadedEventHandler); urlStream.addEventListener(IOErrorEvent

  • Is there a Windows 8 version of the hhactiveX.dll?

    It seems the old 64bit version does not work any more on Win8.. Robert