Doubt , how to display ole objects in report builder

Please tell me, how to display ole objects in report builder.
I mean i wanted to print ole object in report, so how to do that.

Just to clarify Lixia's response.
In Reports 9i we have deprecated our OLE functionality. Reports created in prior versions that contain OLE objects should still run, but you will not be able to create new reports containing OLE objects.

Similar Messages

  • Help! Print OLE object from report builder.

    Dear OTN Members,
    I would like to know how to print out a OLE object from
    report builder, because currently I face problem to print out
    the whole contain of the winword document file, because when I
    display the OLE on the form it will only display according the
    size I declare for it, it seems that it will not automatic
    extend the size itself. i.e. if I drag the size to one page in
    fact the maximum is one page, then when it display, it will only
    display maximum one page eventhough the document file maybe
    contain 10 page inside it. So when I print out the report it
    will only show me one page, so if you have any solution, pls
    share with me, thank you.
    null

    As far as I know you have to use OLE Item to work with the information. Unfortunately there is not any standart way to extract a source document from OLE. Some applications such as Word, Excel support OLE Automation, so you could use OLE2 package to save the document as a file, that is the easest way. But others don't, so you may have to use an undocumented way to extract a document.
    Take a look at the following thread:
    Subj: 6i to 9i Ole to LOB translations, How do you know the App. server?
    Re: 6i to 9i Ole to LOB translations, How do you know the App. server?
    P.S. If you can't extract some types of your documents, please let me khow.
    P.P.S. To extract a document through OLE2 package you could use something like the following. /I'm not sure the code is correct/:
    DECLARE
    handle ole2.obj_type;
    BEGIN
    ACTIVATE_SERVER('OLE1');
    handle := forms_ole.get_interface_pointer('OLE1');
    BEGIN
    -- Save a document to disk
    Args :=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(Args, 'C:\test.doc'); -- file name
    OLE2.INVOKE(handle, 'SaveAs', Args);
    OLE2.DESTROY_ARGLIST(Args);
    EXCEPTION WHEN OTHERS THEN
    Message('Error');
    END;
    -- OLE2.RELEASE_OBJ(handle);
    END;

  • Attention!!-don't use OLE object in Reports

    If you are planning to use or is currently using OLE objects in Reports-please don't use it as the object maynot reload in future and your report may not even open in Report Builder.I got this message when opening the report containing OLE object:
    REP-4004: Error occurred while restoring OLE object
    and it refused to open up crashing my days of work.
    The pity is I can't open my report even to remove the OLE object.

    I know that is weird.I placed the object in the same directory-but in vain.Afterall, what's the logic of putting it in the same directory after embedding it?

  • How to insert ole object like word doc at runtime

    To insert word doc into crystal report

    Hi Vinod,
    To add an OLE object in reports follow the steps given below-
    1- In CR environment open a Report in which OLE object needs to be added.
    2- Click on insert and click on OLE object.
    3- A wizard pops up - choose appropriate file for e.g- Microsoft World Document.
    4- two buttons will be there-
    a> Create new - creates a new world document.
    b> Create from new - Includes a exsisting file.
    5- one more option is their in wizard -
    Show icon(check box) - shows the OLE object as an icon in report.
    6- Click on ok and place the object at required position in report.
    Hope it works.
    Regards
    Amit

  • How to import java Classes in report Builder 10g

    How to import java Classes in report Builder 10g .....
    Arshad

    Hello,
    To import the Java classes:
    Add your jar in the REPORTS_CLASSPATH
    Launch Reports Builder.
    Note:
    You must launch Reports Builder now so that the new REPORTS_CLASSPATH is used.
    Choose Program > Import Java Classes to display the Import Java Classes dialog box.
    Regards

  • How to hide Compounding object in report

    Hi friends
    We want to display region in our reports , But when I execute the query region is coming along with county (eg: US/TX , US/CA etc..) ...this is because of country is a compunding object of region...Can any body let me know how to hide country ...We just want to show TX,CA etc..
    regards

    Please search...this has been answered many times here.

  • How to display HTML chars in report

    I have a field in database with following data.
    <p>This is data</p>
    I have added a textbox in report in which I am displaying this column and it is displayed as it is. But I want to show it as HTML. So for that I created a function that decodes special chars and convert them into HTML.
    But after applying HTML decoding, now it is showing as:
    <p>This is data</p>
    As you can see now it is directly showing "<p>" tag instead of actually applying it. How do I fix this issue?

    That's strange, it should indeed not display the <p> tags.  Do any other supported tags work?  Try replacing p with b and check if the text is rendered in bold...
    List of supported tags: Importing HTML into a Report (Report Builder and SSRS)
    If that didn't help, have a look at the Properties pane with the placeholder selected.  The Properties
    dropdown will display "Selected Text", this way you can tell if you've got the placeholder selected (and not the whole textbox).  Now locate the MarkupType property.  It should be set to HTML.
    SQL Server MVP, MCITP/MCTS SQL Server 2008 <br/> Check out my articles at <a href="http://blog.hoegaerden.be">BI: Beer Intelligence?</a>

  • How to display page numbers in report

    hi all,
    i would like to know how to display page numbers in this format " 1 of 5" in the report.
    Any help would be much appreciated.
    thanks
    seema

    Hi,
    Check this too...
    Page No. in ALV output
    If you query is solved, kindly close the thread.
    Regards,
    Anjali
    Message was edited by: Anjali Devi Vishwanathan

  • How to display results of a report based on current year

    Hi,
    Please advice me for the following requirement.
    I have a report which is having sales results, which is having year column also. Report has to be displayed based on the current year. Now it is 2013. I should show current year results only i.e 2013.
    In 2014, i should show only 2014 results. How to achieve this at a report level.
    regards
    CK.

    Hi CK,
    You are having Data for 2014 also. If not means, you can use sql query select max(year) from period.
    So it will show the final maximum end of the year(2013) from database.
    You can use dashboard prompts too. in the prompt also you can have specific year or sql query
    http://mkashu.blogspot.com
    Regards,
    VG

  • How to read OLE objects from Access ??

    Hi,
    I have an field of type OLE in my Access Database table. This field has some files stored in it in the form of attachment. The file types of the OLE objects can be different (xls,txt,doc). Now, I want to query the database and find the extension of the files and save it occordingly using java.
    I'm using the following now.
    JdbcOdbcInputStream jois = (JdbcOdbcInputStream) rs     .getBinaryStream("SupportingData");
    byte[] supportingData = jois.readData();
    String data = new String(supportingData);
    I'm getting data in binary format and when I try to look into it, all I can see is the header info of the file.
    Is there anyother way to read the OLE object easily ?
    Please suggest.
    Thanks,
    Mary

    How to read appended objects from file with ObjectInputStream? The short answer is you can't.
    The long answer is you can if you put some work into it. The general outline would be to create a file with a format that will allow the storage of multiple streams within it. If you use a RandomAccessFile, you can create a header containing the length. If you use streams, you'll have to use a block protocol. The reason for this is that I don't think ObjectInputStream is guaranteed to read the same number of bytes ObjectOutputStream writes to it (e.g., it could skip ending padding or such).
    Next, you'll need to create an object that can return more InputStream objects, one per stream written to the file.
    Not trivial, but that's how you'd do it.

  • How to crop OLE objects?

    Hi there :-)
    I have a real big problem: it seems that StarOffice can not crop OLE objects! I can crop images that i inserted, but not other things like autocad drawings.
    Will this be fixed? It seems that this will not occur too soon since this feature was not present in older versions and got not implemented this time, possibly in Staroffice 9??
    greetings, happy new year!
    molnium

    Just to clarify Lixia's response.
    In Reports 9i we have deprecated our OLE functionality. Reports created in prior versions that contain OLE objects should still run, but you will not be able to create new reports containing OLE objects.

  • How to display "Image" object in the browser?

    can anyone please tell me how can i display "Image" object in the browser?
    I have an image object that i retrieved from AS400 BLOB object by using toolbox.jar (for as400 access for java including all necessary classes like jdbc driver, security etc.).
    i want to display this object in the browser so i will be able to web-enable my BLOB objects stored on as400.thx...

    In your HTML:
    <img src="ImageServlet">
    In ImageServlet:
    Make calls to DB to get your image as byte array and store it in:
    byte[] buffer = new byte[imageSize];
    ServletOutputStream out = response.getOutputStream();
    for(int i = 0; i < imageSize; i++)
    out.write(buffer, i, 1);
    out.close();

  • Ole Object in Report

    Hi!
    We r trying to embed an OLE Object (gif,bmp) in the report . The report shows the logo (gif) when run thru client server but when run thru Application server no image is shown. Can anyone tell what is the problem.
    Thanks & Regards,

    Srini,
    OLE doesn't work on teh Web. Creating a Report for the Web converts the output to HTML, HTMLCSS or PDF. The OLE container gets excluded which is why the image is not shown. Work around is instead of using OLE to include images, to reference them on the filesystem of the Server (or database).
    Frank

  • How to display an object that links to another object

    I am trying to find out how display 2 objects (box's) in a frame and connect them with a line so if I move one box the line stays connected.
    Can anyone point point in the direction of any tutorials or example.
    Eventually I plan to change these box's to be a database table containing attributes and the link representing the fk.

    Eric_Davidson wrote:
    I am trying to find out how display 2 objects (box's) in a frame and connect them with a line so if I move one box the line stays connected.
    Can anyone point point in the direction of any tutorials or example.
    Eventually I plan to change these box's to be a database table containing attributes and the link representing the fk.Which part do you need help with? The drawing of the boxes, the handling of the GUI, the dragging, etc?
    Do you have any code started?

  • How to display an image on reports 10g

    Hi all
    I have a database table that is composed of 2 columns:-
    Country_id NUMBER
    Country_Flag BLOB
    the table is populated with data. I made a report that display the country_id and Country_flag
    I Changed the "FORMAT_FILE" property for the field "COUNTRY_FLAG" to image.
    When i preview the report from the Reports Builder, the image is displayed and every thing is good,
    But when I run my report from my form in the format pdf, the image is not displayed .
    I do not know why?
    has any one experienced this problem?
    Thanks .
    P.S
    Report Builder Version :10.1.2.0.2
    Data base : 9i
    Internet Explorer 8
    Adobe Reader 7
    I deploy on oracle application server 10g

    sorry, the problem is that i did not copy the last rdf file to the reports folder on the server.
    The report works fine and there is no proble

Maybe you are looking for

  • Capturing mono VHS footage, how do I convert audio to stereo?

    I am creating dvd's from some old VHS tapes, and the audio track is mono, I want to know how to convert audio to stereo? Do I start with the audio settings on Mono or stereo, and then what is the next step to get mono audio converted to stereo? As al

  • Migration from autonomous access point mode to lightweight mode on 1530

    1500 series is not mentioned on: http://www.cisco.com/c/en/us/td/docs/wireless/access_point/conversion/lwapp/upgrade/guide/lwapnote.html Can it actually be upgraded just by changing IOS from APto CAP?

  • Moving data from internal table to Dynamic internal table

    Hello All,   I am facing a problem i moving the data from a internal table data to Dyn. internal table. My code is as follows *******Declartion************************************** DATA: IT_FIELDCAT TYPE LVC_T_FCAT,       IS_FIELDCAT LIKE LINE OF IT

  • Re:LOB, Spatial data

    Hi all, can any one tell me that does goldengate support LOB and spatial data? if so do we have to add any parameters to the parameter file in the goldengate? thanks in advance..

  • T.code for viewing released po's alone

    Dear all, Is there any Std T.Code available in SAP for knowing the released PO's in a company. also is there any report available for viewing the Pending PO Points will be rewarded for good solution. Thanx  in advance. velu