Opening image file from Form 6i deployed on Application server

Hi
I am working on an applictaion where a form 6i is deployed on application server.The application reads an image file from hard disk.The form works fine when I run in form developer . But when I deploy on application server the form using get_file_name do not reads the image file.
Please help
Prashant

Hi!
In forms 10g we use webutil for that. I think forms 6i do not support that.
May search here in the forum for webutil for 6i.
Some guys had built a webutil.pll that s working on 6i.
Here is the thread: Converting to Webutil? 6i and 9i equivalents.
Regards
Edited by: Magoo on 18.09.2009 11:10

Similar Messages

  • How can i display a image file which is placed in the applications server

    Hi all,
    Can any one help me how can I display a image file which is present in the application server.
    With regards,
    M.Ramana Murthy

    hi,
    *& Form TOP_OF_PAGE
    * text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    * I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    rgds
    Anver

  • Opening .pdf files from forms using OLE

    Hi,
    I want to open, print , save and save as pdf files from forms using OLE . Please help me with the same.
    Thanks
    Vidya

    If you are in client/server mode, you can put an OLE container component on your form. However, be warned that this method does not work when you convert to the forms server web enabled mode. If you anticipate moving your application to the web anytime soon, my advice would be to web-enable first and then add in the feature to view .pdf (or other) files. In our client/server app, I went to a lot of trouble to add in OLE features such as you describe, and now I have to completely re-write those features for the web.

  • Opening pdf file from form developer

    Dears:
    If I have a pdf file and I want to open it from form
    how can I open it by web.show_document
    developer 10g r2
    os :windows xp
    Thaks in advance

    if you have a local sever, put your pdf file on the root folder, then
    use this : web.show_document('http://localhost/oracle.pdf','_blank');
    or web.show_document('file:///C:/oracle.pdf','_blank'); <-- if you dont have one.
    instead of
    web.show_document('file:///c:\oracle.pdf','_blank');
    Edited by: 836773 on Mar 1, 2011 11:19 PM
    Edited by: 836773 on Mar 1, 2011 11:31 PM

  • Reading of File from legacy system into SAP Application Server using SAP XI

    Hi All,
      I have a file in <b>Legacy System with Exchange rates information data</b> i have to read that file using SAP XI process and put that file in SAP Application Server in SAP Specific Format and latter i have to use program RFTBFF00 to upload the file in the Application Server into SAP Tables.
      Can anybody tell me how can i do this with some example of same scenario.
      It would be better if anybody provides code example as i am new to SAP XI.
    Thanks in advance.
    Warm Regards,
    Rayeez.

    Hi Shaik,
    You need the access to the file system of ur legacy application and then you can follow this link for the required ifnormation
    File & Header
    Regards
    Vishnu

  • From Forms Product Management - Oracle Application Server 10g for Windows

    I've updated http://otn.oracle.com/products/forms with links to the Oracle Application Server 10g and Oracle Developer Suite 10g for Windows (which has just be released).
    You can check out the new features this version of the product bring for Forms at:
    http://otn.oracle.com/products/forms/pdf/10g/frm10gnewfeatures.pdf
    Regards
    Grant Ronald
    Forms Product Management

    Nice - thanks!

  • How do you make photoshop be the default program to open image files from bridge?

    I just installed CS5.5 and tried to open some pictures but it keeps opening in Windows live photo gallery. I don't even see opening in photoshop as an option when I right click and scroll down to "open with" (for jpeg images). I never had this issue with CS3, bridge just automatically opened files in photoshop.
    Thanks!

    I found a similar thread that might help. Let me know if it works: http://forums.adobe.com/thread/423584?tstart=0

  • Retrieve image file from FORMS 10G using BLOB

    Dear all,
    i inserted one record in a table for the following procedure.
    Create Or Replace Procedure Blob_Xl Is
    l_blob Blob;
    l_bfile Bfile;
    Begin
    Insert Into LOB_TABLE Values ( 'TEST1', Empty_Blob() )
    Returning BLOBDATA Into l_blob;
    l_bfile := Bfilename( 'TEST1', 'I.JPG');
    dbms_lob.fileopen( l_bfile,dbms_lob.file_readonly );
    dbms_lob.loadfromfile( l_blob, l_bfile, dbms_lob.getlength( l_bfile ) );
    dbms_lob.fileclose( l_bfile );
    Commit;
    End Blob_Xl;
    after that
    record also inserted, i check thro count.
    i try to retrieve that image from that table for using following procedure, in that procedure i called from one button in forms 10g and wrote in when button pressed , when i clicked it wont show any images.
    where i am wrong?
    Create Or Replace Procedure get_img As
    vblob Blob;
    buffer Raw(32000);
    buffer_size Integer := 32000;
    offset Integer := 1;
    Length Number;
    Begin
    owa_util.mime_header('image/JPG');
    Select BLOBDATA Into vblob From LOB_TABLE Where No = 'TEST1';
    Length := dbms_lob.getlength(vblob);
    While offset < Length Loop
    dbms_lob.Read(vblob, buffer_size, offset, buffer);
    htp.prn(utl_raw.cast_to_varchar2(buffer));
    offset := offset + buffer_size;
    End Loop;
    Exception
    When Others Then
    htp.p(Sqlerrm);
    End;
    /

    hi
    try something like this for retrieve.May it helps u.
    DECLARE
    directions CLOB;
    directions_1 VARCHAR2(300);
    directions_2 VARCHAR2(300);
    chars_read_1 BINARY_INTEGER;
    chars_read_2 BINARY_INTEGER;
    offset INTEGER;
    BEGIN
    --Retrieve the LOB locator inserted previously
    SELECT falls_directions
    INTO directions
    FROM waterfalls
    WHERE falls_name='Munising Falls';
    --Begin reading with the first character
    offset := 1;
    --Attempt to read 229 characters of directions, chars_read_1 will
    --be updated with the actual number of characters read
    chars_read_1 := 229;
    DBMS_LOB.READ(directions, chars_read_1, offset, directions_1);
    --If we read 229 characters, update the offset and try to
    --read 255 more.
    IF chars_read_1 = 229 THEN
    offset := offset + chars_read_1;
    chars_read_2 := 255;
    DBMS_LOB.READ(directions, chars_read_2, offset, directions_2);
    ELSE
    chars_read_2 := 0;
    directions_2 := '';
    END IF;
    --Display the total number of characters read
    DBMS_OUTPUT.PUT_LINE('Characters read = ' ||
    TO_CHAR(chars_read_1+chars_read_2));
    --Display the directions
    DBMS_OUTPUT.PUT_LINE(directions_1);
    DBMS_OUTPUT.PUT_LINE(directions_2);
    END;
    sarah
    Edited by: S@R@h on Oct 7, 2009 11:29 PM

  • Open documents/files from Application Server in forms 6i

    Hello All,
    Our requirement is to open files that are in Application server( We do not want to upload them into database).
    Is there a way to open this files from forms 6i.
    I am wondering how the "View Output" or View log button works on the concurrent program submission form. Its the doing the same thing i.e pulling the file from Application server and showing up.
    Please let me know if anyone has any ideas on how to get this done.
    Thanks
    Sunil

    I assume you are using Forms 6i in web mode here. Then it is just a URL to the file if you properly map to a directory where you store the files:
    web.show_document('http://...../myfile.pdf');
    But it also looks like you are using Oracle Apps, so might want to ask it in the e-Business Suite.

  • Drag image file from Windows Explorer to a new layer in an open file

    I want to know if it's possible in CS3 to drag an image file from Windows Explorer into an already open file in PS.  Right now when I drag over, it opens that file.  I want to have it where the image is inserted as a new layer into the existing open file.  is that possible?

    Hi, I'm using CS4 and would love to be able to drag n drop straight to a new layer in an existing file.
    At present when I drag n drop I get a new image in PS. I then have to move this to my existing image. I have tried draging to the tab, the layer box, the image, the blank space, using shift,ctrl & alt.
    A simple how to would be nice

  • I can not open raw image files from my Cannon 5d mark iii with cs6 and my cs6 in mac

    I can not open raw image files from my Cannon 5d mark iii with cs6 and my cs6 in mac

    The Mk III requires an updated version of Camera RAw, so run Help --> Updates and install it.
    Mylenium

  • How to Copy an Image File from a Folder to another Folder

    i face the problem of copying an image file from a folder to another folder by coding. i not really know which method to use so i need some reference about it. hope to get reply soon, thx :)

    Try this code. Make an object of this class and call
    copyTo method.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class FileUtil
    extends File {
    public FileUtil(String pathname) throws
    NullPointerException {
    super(pathname);
    public void copyTo(File dest) throws Exception {
    File parent = dest.getParentFile();
    parent.mkdirs();
    FileInputStream in = new FileInputStream(this); //
    Open the source file
    FileOutputStream out = new FileOutputStream(dest); //
    Open the destination file
    byte[] buffer = new byte[4096]; // Create an input
    buffer
    int bytes_read;
    while ( (bytes_read = in.read(buffer)) != -1) { //
    Keep reading until the end
    out.write(buffer, 0, bytes_read);
    in.close(); // Close the file
    out.close(); // Close the file
    This is poor object-oriented design. Use derivation only when you have to override methods -- this is just
    a static utility method hiding here.

  • How use PHP to read image files from a folder and display them in Flex 3 tilelist.

    Hello. I need help on displaying images from a folder dynamically using PHP and display it on FLEX 3 TileList. Im currently able to read the image files from the folder but i don't know how to display them in the TileList. This is my current code
    PHP :
    PHP Code:
    <?php
    //Open images directory
    $imglist = '';
    $dir = dir("C:\Documents and Settings\april09mpsip\My Documents\Flex Builder 3\PHPTEST\src\Assets\images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "filename: " . $file . "\n";
    $dir->close();
    ?>
    FLEX 3 :
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="pic.send();">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.rpc.events.ResultEvent;
    public var image:Object;
    private function resultHandler(event:ResultEvent):void
    image = (event.result);
    ta1.text = String(event.result);
    private function faultHandler(event:FaultEvent):void
    ta1.text = "Fault Response from HTTPService call:\n ";
    ]]>
    </mx:Script>
    <mx:TileList x="31" y="22" initialize="init();" dataProvider = "{image}" width="630" height="149"/>
    <mx:String id="phpPicture">http://localhost/php/Picture.php</mx:String>
    <mx:HTTPService id="pic" url="{phpPicture}" method="POST"
    result="{resultHandler(event)}" fault="{faultHandler(event)}"/>
    <mx:TextArea x="136" y="325" width="182" height="221" id="ta1" editable="false"/>
    <mx:Label x="136" y="297" text="List of files in the folder" width="182" height="20" fontWeight="bold" fontSize="13"/>
    </mx:Application>
    Thanks. Need help as soon as possbile. URGENT.

    i have made some changes, in the php part too, and following is the resulting code( i tried it, and found that it works.):
    PHP Code:
    <?php
    echo '<?xml version="1.0" encoding="utf-8"?>';
    ?>
    <root>
    <images>
    <?php
    //Open images directory
    $dir = dir("images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "<image>" . $file . "</image>"; // i expect you to use the relative path in $dir, not C:\..........
    //$dir->close();
    ?>
    </images>
    </root>
    Flex Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="callPHP();">
    <mx:Script>
    <![CDATA[
    import mx.rpc.http.HTTPService;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var arr:ArrayCollection = new ArrayCollection();
    private function callPHP():void
    var hs:HTTPService = new HTTPService();
    hs.url = 'Picture.php';
    hs.addEventListener( ResultEvent.RESULT, resultHandler );
    hs.addEventListener( FaultEvent.FAULT, faultHandler )
    hs.send();
    private function resultHandler( event:ResultEvent ):void
    arr = event.result.root.images.image as ArrayCollection;
    private function faultHandler( event:FaultEvent ):void
    Alert.show( "Fault Response from HTTPService call:\n " );
    ]]>
    </mx:Script>
    <mx:TileList id="tilelist"
    dataProvider="{arr}">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="images/{data}" />
    </mx:Component>
    </mx:itemRenderer>
    </mx:TileList>
    </mx:Application>

  • Open a file from anywhere - with credentials?

    Hi;
    Is there a way to open a file from anywhere where I give the uri and uname/password and it gives me back a Stream to read? Including:
    1. ftp - with/without credentials
    2. http - anon, basic, digest, & windows authentication
    3. REST where you must do basic on the first request (anon returns an error message as an html page).
    4. share on the same domain - requires a different user's credentials.
    5. share on a different domain
    6. share on a workgroup computer
    7. share on a non-Windows server
    8. ???
    thanks - dave
    Edited by: [email protected] on Sep 15, 2010 2:04 PM

    [email protected] wrote:
    Hi;
    I just wanted to add the use case so you would understand why we need to handle all cases. I suggest that you actually ask customers what they want initially instead of assuming that you need all of them initially.
    We have a reporting system we sell and one thing users can do is import images from an external source. Some users put their images on a web or FTP server requiring credentials. Others put it on a server that requires credentials. And we're now getting requests to pull from SharePoint.Fine. So you have the following task that has the following steps.
    1. Define source of image and where to store it.
    2. Create retriever based on 1.
    3. Run instance of 2
    4. Log errors from 3 or put retrieved file into location specified by 1.
    In the above step 2 is a plug in that represents different ways of retrieving information.
    And expanding on something that was said before you have a HUGE task in front of you in terms of supporting everything that you list above.
    For example using only ftp these are some of the things I see.
    1. There are at least three types of secure "ftp" servers. The protocol for handling security is different for each.
    2. Although FTP is a protocol the implementation of how the servers work can be substantially different. For general handling the will likely require scripting for each targetted server.
    3. Locations on FTP servers not necessarily simple. Examples.
    ...a. Login to server. Cd to a directory. Get a file which has a date as part of the name.
    ...b. Login to a server. Cd to a directory with a timestamp in the name. Get a file.
    ...c. Login to a server. Get a file which has a random name based on the last creation timestamp of each file.
    Note that FTP is actually easier than some of the other cases.
    And in the above I didn't deal with any of the possible errors.

  • I cannot open a file from LR5 into CC2014 unless it is a smart object. also will not save back to LR at all it gives me an error message "Line: 1 -   photoshop.notifyLightroomDocClosed ('lightroom-2.0', 'B53AFA39-A49B-4709-A9BD-0B6467C175C3', 'Macintosh H

    I cannot open a file from lightroom into CC2014 unless I open it as a smart object. CC opens, just will not display my image. i am given an error code when I save an image, and can only save to my desktop or other locations, not automatically back into my lightroom.
    I am using LR5 latest update, as well as CC2014
    Below is the error message:
    Line: 1 ->  photoshop.notifyLightroomDocClosed ('lightroom-2.0', 'B53AFA39-A49B-4709-A9BD-0B6467C175C3', 'Macintosh HD:Users:BPexposures:Desktop:_DSC5962 as Smart Object-1.psd');

    I was also having this issue, and I did some more searching and found this answer in the Adobe forums: Re: Photos from Lightroom 5 to Photoshop CC (2014) and back.... The issue appears to be caused by having not updated Lightroom to the latest version prior to having CC2014 installed (wow that's stupid). The trick seems to be to uninstall Photoshop CC2014 and to then reinstall it after having upgraded to Lightroom 5.5.

Maybe you are looking for

  • Moving Average Price for Batch Maintenance

    Hi Experts,       I've created material of which stock is maintain in batch (Valuation category = X & Price Control = V).     Due to batch wise stock, system calculates the moving average price for different batches.     Can we calculate moving avera

  • Having problems with XCHART after reset

    I'm using XCHART to record statistical info.  When I activate "reset", the average (XCHRT.CL) and std dev ((XCHR.UCL-XCHRT.CL)/3) go to zero but do not begin updating again even though the trigger is active.  When I open the XCHART object from edit m

  • Disabling Adobe Reader X updates in an enterprise

    Hi Guys, Can anyone tell me where the registry key is to disable updates to the New Adobe Reader X? I have this in place for version 9 but I cannot find the key even after using proxmon to see what Adobe is changing in the registry. Is there any new

  • IPhone Disaster

    Just installed iOS 7.1 and did a system restore. My hope was that in doing this I would resolve a lingering issue where my iPhone 4s did not have working wifi or bluetooth. After doing the restore I am unable to restore a backup of my phone. If I try

  • Media file thumbnails in browser say "media offline", but files are online and available for viewing/editing. How do I get a thumbnail of the clip back?

    I am moderately experienced with FCE, but cannot figure out this issue. The thumbnails in my browser say "media offline", and no longer show a thumbnail of my video clip. When I try to reconnect the media files, the reconnect dialog box only checks f