Report in HTML web service... unnecessarity tags added

My requirement is to generate a report in html format in sap and get it through a  web service.
I need to invoke a sap web service which executes a report function and returns the report in HTML format.
I am using an RFC BAPI which uses WWW_HTML_FROM_LISTOBJECT function to convert report to html.
The problem is when the RFC is returning xml data with the html extra data is also being sent which are not of UTF8 charset format but windows-1252 charset.
So I am unable to parse that xml.
The extra tags added are <LIST_PAGES>...</LIST_PAGES>, <HYPER_TAGS>...</HYPER_TAGS>, <XFORMAT_DESCRIPTION>...</XFORMAT_DESCRIPTION>. I think these are being added by WWW_HTML_FROM_LISTOBJECT function.
I don't want these tags to be sent... how can I solve it.
I hope the question is clear... Please try to help me.
Thank you.

I managed to test the web service working from another APEX environment.
Then I created Form and Report on Web Service page but when I tried to Submit the page to get the report filled with web service, it gave me this error:
ORA-19025: EXTRACTVALUE returns value of only one node

Similar Messages

  • How to create a crystal report using secured web service as a datasource?

    Hi All Expert,
    I having some challenges on how to create a report using secured web service as a datasource in crystal report designer (CR11 R3).
    Secured Web Service including the certificate trusting, token authentication, header and/or body encryption. All web services running on https protocal.
    Could you please suggest me on the solution?
    Thank you and Best Regards,
    Cherr

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Report that uses web services as data source, prompts for database logon

    I have a crystal report that uses web services as a data source. When I deploy the report to Infoview it prompts me for a database username and password. Since I am not using a database it should not prompt me for these. I tried various options in the CMC->database settings for this report but it still prompts me for the database logon info or tells me that the database logon information is incorrect.
    The report work fine in the Crystal Reports Designer.
    Does anyone know how I can prevent this report from prompting me for the database logon info ?
    Thanks,

    What options have you tried in the CMC?
    Have you tried running the report in Crystal Reports installed directly on the Enterprise machine?

  • Report published as web service with parameters

    Post Author: kevinzebeste
    CA Forum: Publishing
    hi,I have a problem in a report published as web service.indeed, the report has a parameter, a date.Client side I do this://I create the parameter             ParameterFields paramFields = new ParameterFields();            ParameterField paramField = new ParameterField();            ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();            paramField.Name = "date";            paramDiscreteValue.Value = "10/10/2006";            paramField.CurrentValues.Add(paramDiscreteValue);            paramFields.Add(paramField);//I add the parameter into the crVievwer            crystalReportViewer.ParameterFieldInfo = paramFields;//I call the web service to get data            crystalReportViewer.ReportSource = "http://localhost/WebService/Rapport1Service.asmx"; Server Side :Now, I want to get back the parameter in the web service (in Rapport1Service.asmx, so server-side) to be able to call my storedprocedure with the good parameter, this one which was put on the client side (10/10/2006).I tried to do crystalReportViewer.ReportSource = "http://localhost/WebService/Rapport1Service.asmx?date=22/10/2006" on the client side but no way. i don't find a solution, is there any way to make this possible ?Moreover, i have one database for each user, so i need to pass the user name, password and account too..

    Post Author: kevinzebeste
    CA Forum: Publishing
    I have found a solution.
    I  create a web service in which i return a dataset, filled with the data wanted.the web service take as parameter: the report name we want, the parameter(s), and the username and password (to check if the user has right to access to data.)After that, I fill the report, client side, with the datasen given. i don't know if it's the best solution but it works !

  • Steps for Bi Reports based on WEB Services

    Hi,
    I am new to BI Publisher. I want to call a OBI report (developed using Answer) from BI Publisher using Web Services.
    Can some please let me know the steps?
    Thanks
    Anil

    Anil
    Publisher supports calling an Answer report as a data source for a BIP report. Its just another data source fro BIP - no need to code to a WS its done for you.
    http://download.oracle.com/docs/cd/E12844_01/doc/bip.1013/e12187/T421739T518204.htm#4511629
    this just gets the data from the Answer, you will still need the layout template to format it.
    If you mean to call OBIEE to get the HTML output back. It could be done but you will have to handle it using an extension and then handle the returning HTML and convert it to XSL-FO instructions.
    Regards
    Tim

  • Crystal Report using a Web Service as a data source?

    I am trying to figure out how to use a Web Service as a data source in Crystal Reports. When I use the report wizard, I do not see an option to select Web Service as a new connection. We are currently using Crystal Reports 2008 v12.1.0.892. Could it be that my version does not support this? Is there an update that contains this feature? Please help.

    Thanks for your response. Unfortunately I do not see a radio button for Web Services. I've read that it should be there too. Could it be a missing plug-in or patch?
    Here are screen shots of what I see when trying to connect to an XML. Any thoughts?
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard1.jpg]
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard2.jpg]

  • Empty pdf report created by web service-Solved

    Hi, I'm trying to test the web service for BI Publisher with an xml data source and evn though I get no errors in jdeveloper, I get an empty report. Can anyone see anything wrong with my call to the webservice?
    public static void main(String[] args) {
    try {
    bip_webservice.proxy.PublicReportServiceClient myPort = new bip_webservice.proxy.PublicReportServiceClient();
    System.out.println("calling " + myPort.getEndpoint());
    String username = "cbashyb";
    String password = "testing";
    String reportAbsolutePath = "/~cbashyb/Contract Renewal/Contract Renewal.xdo";
    //Testing runReport
    ReportRequest repRequest = new ReportRequest();
    repRequest.setReportAbsolutePath(reportAbsolutePath);
    repRequest.setAttributeTemplate("Contract_Renewal_Upgrade");
    repRequest.setAttributeFormat("pdf");
    ReportResponse repResponse = new ReportResponse();
    repResponse = myPort.runReport(repRequest,username,password);
    String contentType = repResponse.getReportContentType();
    System.out.println(contentType);
    byte[] baReport = repResponse.getReportBytes();
    FileOutputStream fio = new FileOutputStream("C:\\Documents and Settings\\cbashyb\\My Documents\\XML Publisher\\renewal letter\\Brian.pdf");
    fio.write(baReport);
    fio.close();
    Edited by: user647407 on Dec 9, 2008 8:47 AM

    The missing slashes are from the formatting OTN uses, not something left out of your code?
    ("C:
    Documents and Settings\\cbashyb
    My Documents
    XML Publisher
    renewal letter
    Brian.pdf");

  • Exposing a report as RESTful web service - Parameters

    Hi,
    I am creating a RESTful web service by exposing an apex report. It just works fine and it renders the data. However I want to have parameters and values in the web service URL so that the data can be filtered based on the parameter values?
    For example:
    http://127.0.0.1:8080/apex/apex_rest.getReport?app=100&page=15&reportid=rest_example renders correctly for the report query
    select * from (
    select
    "CUSTOMER_ID",
    "CUST_FIRST_NAME",
    "CUST_LAST_NAME",
    "CUST_STREET_ADDRESS1",
    "CUST_STREET_ADDRESS2",
    "CUST_CITY",
    "CUST_STATE",
    "CUST_POSTAL_CODE",
    "PHONE_NUMBER1",
    "PHONE_NUMBER2",
    "CREDIT_LIMIT",
    "CUST_EMAIL"
    from #OWNER#.DEMO_CUSTOMERS )
    where (
    instr(upper("CUST_FIRST_NAME"),upper(nvl(:P15_REPORT_SEARCH,"CUST_FIRST_NAME"))) > 0  or
    instr(upper("CUST_LAST_NAME"),upper(nvl(:P15_REPORT_SEARCH,"CUST_LAST_NAME"))) > 0
    )But I want to filter the result for a particular customer id by getting a value in the URL like this.
    http://127.0.0.1:8080/apex/apex_rest.getReport?app=100&page=15&reportid=rest_example&P15_CUSTOMER_ID=6 and to use the value received thro the URL in the report query
    select * from (
    select
    "CUSTOMER_ID",
    "CUST_FIRST_NAME",
    "CUST_LAST_NAME",
    "CUST_STREET_ADDRESS1",
    "CUST_STREET_ADDRESS2",
    "CUST_CITY",
    "CUST_STATE",
    "CUST_POSTAL_CODE",
    "PHONE_NUMBER1",
    "PHONE_NUMBER2",
    "CREDIT_LIMIT",
    "CUST_EMAIL"
    from #OWNER#.DEMO_CUSTOMERS
    where customer_id = :P15_CUSTOMER_ID)
    where (
    instr(upper("CUST_FIRST_NAME"),upper(nvl(:P15_REPORT_SEARCH,"CUST_FIRST_NAME"))) > 0  or
    instr(upper("CUST_LAST_NAME"),upper(nvl(:P15_REPORT_SEARCH,"CUST_LAST_NAME"))) > 0
    )Is it possible to have it working in this way?
    I am currently testing this in apex 4.2 and Oracle 11g XE. My development environment will be Apex 4.1 and Oracle 11g.
    Thanks in Advance.
    Regards,
    Natarajan
    Edited by: Nattu on Dec 18, 2012 2:09 AM

    It does accept values for the parameters but does not accept value names in the URL.
    The previous thread Restful web service passing character parameters helped me to get it working.
    Thanks.

  • Render and Email SSRS reports via SOAP/Web Services

    Hi all
    Running SQL Server 2008 R2 RTM and wondering if the ReportExecution2005.asmx web service can be used to render AND email a report all within the web service (ie. Not wanting to render the report and then having to email it manually). Since RS has the capability
    to email via report manager schedule, wondering if this can be achieved programmatically.
    George

    Hi George,
    In Reporting Services, it supports us to use ReportExecution2005 web service to render a report as MHTML or other formats. And we can use ReportingService2010 web service to subscribe and delivery report. The Reporting Services Execution
    Web service allows developers to programmatically process and render reports from a report server.
    The ReportingService2010 Web service allows developers to programmatically create a subscription in the report server database.
    To process a specific report and render it in the specified format, we can use the “Render” method in the ReportExecutionService. To create a subscription, we can use “CreateSubscription” method in ReportingService2010.
    References:
    Report Server Web Service Methods
    ReportingService2010.CreateSubscription Method
    ReportExecutionService.Render Method
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Crystal Reports 2008 XML & Web Services

    Hi Experts,
    I am using Crystal reports Basic 2008 for SAP Business One Version 12.1.3.1028
    I just wanted to use a web services in my report.
    My data source connectivity does not list xml & web services.
    Can anyone advise if I am able to get XML and web services connectivity setup.
    thanks
    Tony

    Hi Tony,
    Post your thread to the reporting forum.
    [Reporting and Printing;
    Regards,
    Rakesh N

  • HTML Web Service Tester

    Please help. I am looking for an html based web service tester.
    I need to input the SOAP 1.1 formatted xml in something like a text
    box and send it to the service without passing through a soap client.
    The return should simply display the xml from the service (fault or
    not).
    I'm guessing that I can not use the usual HTML get or post because the
    xml would end up inside a parameter instead of standing alone when it
    arrives at the server.
    Thanks
    John

    Thanks but that uses a client to build a message.
    I already have the xml message and want to deliver it to the service with little or no overhead. I would normally just use a JSP but this is a typical rush situation and I don't have the days it takes to get a new JSP deployed into our environment.
    John

  • Web Services,Delivery Document Adding Error  Could not commit Transaction

    Dear All,
       I am working with SAP Business One Web Services, While adding Delivery Document it's giving error  "Could not commit transaction"  Please Give your Suggestion It's urget.
    Thanks,
    Madhu
    9701155577

    Hi,
    Do you mean there is no journal entry created orthat the link is missing?
    If this really is a delivery for stock/inventory items there should be a journal entry, else it sounds like an error in SAP.
    Are there still changes in the stored procedure? Also have a look at the TansactionNotice. It is possible the roll back does not work correctly.
    Again sounds like an error.
    Doe sit happen all the time?
    Only for certain items?
    Are the stored procedures now clean?
    What Version are you using?
    Kind Regards,
    Friederike

  • How to pass server/domain credentials when accessing SSRS report through SSRS Web service programmatically?

    I am trying to render SSRS Report located on my remote report server in my ASP.NET MVC 4 app through reporting services web service programmatically.
    how can i send the server (windows/domain credentials) at runtime?
    tried below but no success.
    ReportingService2010 service = new ReportingService();  service.Credentials = new System.Net.NetworkCredential("username", "password");    service.Url = "http://MyReportServer/ReportServer/";

    Why are you using window domain credential ?
    Simply "rs.Credentials =
    System.Net.CredentialCache.DefaultCredentials" should work.
    http://technet.microsoft.com/en-us/library/ms170088(v=sql.110).aspx
    Regards, RSingh

  • Reports tab in web service missing even with permissions granted

    I cannot see the reports tab in the webservice interface, I have been granted the permisions to access the module but still it is not displayed. Does anyone know what the solution is???

    Hi,
    Are you talking about the reports tab in P6 EPPM (web Access)? P6 release 8 onwards the reports tab is added when you install and link the BI with P6. Otherwise there is no Reports tab is avilable in P6 r8 onwards. Have you installed BI or any other reporting tools for reporting purpose?
    Thanks,
    Dip

  • Passing parameters to BI Publisher report via a web service

    I have got the application interface to BI Publisher working through the white paper "Integrating Oracle Application Express with BI Publisher". The last bit of trouble I'm having is passing a parameter to my BI Publisher report. I believe this is done in the "download" process where the soap envelope is created, but I'm not sure.
    The code in the white paper is:
    <parameterNameValues xsi:type="pub:ArrayOfParamNameValue" soapenc:arrayType="pub:ParamNameValue[]"/>
    If I have a parameter of "HEADER_ID" with a value of say "5", how do I code this? I have tried the following, but it doesn't work:
    <parameterNameValues >
    <item>
    <name>HEADER_ID</name>
    <multiValuesAllowed>false</multiValuesAllowed>
    <values>
    <item>5</item>
    </values>
    </item>
    Alex.

    Hello Alex
    This format works for me...
                   <parameterNameValues>
                      <item>
                         <name>P_CONTACT_ID</name>
                         <multiValuesAllowed>true</multiValuesAllowed>
                         <values>
                            <item>#P117_CONTACT_ID#</item>
                         </values>
                      </item>
                   </parameterNameValues>The only difference I can see is your setting of <multiValuesAllowed>false</multiValuesAllowed>
    Aside from that, how is your BIP report configured to receive the parameter?
    Kind regards
    Simon Gadd

Maybe you are looking for

  • No sound when burn movie to dvd (premiere elements 3, sony vaio, vista)

    Hi, When I burn a movie to DVD using premiere elements I end up with no sound. Analyzing the VOB with avicodec reports it has no audio track - and I get the same problem if burn to a folder or direct to a disc. Exporting to mpeg or other formats work

  • MR11 - GRIR clearing for account assigned PO.

    Hi Folks, I have a doubt on MR11 Account Maintenance for account assigned  C - Sales order PO and GR non Valuated. In this system is not allowing to Post AccM. document as the GR posting is not hitting GRIR clearing account and the same is happening

  • HT5312 I forgot my apple itunes security question answers

    I forgot my security question answers

  • Urgent :  Query on select statement!!

    Hi All, i am trying to get the customer number from VBPA table into my work area based on vbeln and parvw values. but it is giving me an sysubrc value is 4. here is my code :   select single kunnr into wa_i_vbpa                       from vbpa       

  • Airport Extreme giving errors after upgrading to ML Server

    With OS X Server, your machine sees your Airport Extreme and can then configure it by opening ports, etc. once you turn on services. I upgraded from OS X Lion Server to ML Server and everything was fine for a second. Now whenever I click on the Extre