Call imge in field report(help please)

Hi all
as I would like to know how to draw a picture to a field in a report
in forms would be something like this,''READ_IMAGE_FILE ('j: \ imagenes2001 \' | |: ARTICULOS.REFERENCIA | | '. JPG', 'JPEG', 'ARTICULOS.IMAGEN'); "
at apex as serious?
Thanks
Greetings
Edited by: user10085976 on Feb 1, 2011 8:02 AM

Hi,
in ApEx, you could use IMG tag - <img src="/i/my_image.jpg"> and set Strip HTML to No. In this way you can insert image which is on server filesystem and you know relative path to it.
Jirka

Similar Messages

  • I bought my iPhone 4s in the Uk and then brought to Cyprus where I live. I used Siri to call my husband 2 days ago without problem but now when I try to use Siri it won't call any local Cypriot number but will call my Uk contacts. Help please

    I bought my iPhone 4s in the Uk and then brought to Cyprus where I live. I used Siri to call my husband 2 days ago without problem but now when I try to use Siri it won't call any local Cypriot number but will call my Uk contacts. I can call the same numbers manually so it's not my network. Any help would be appreciated.

    This sounds like an international issue? Although I can not see why? I brought my phone in Australia and operating it in Indonesia, I have the same issues.... Otherwise Siri works fine, even texting (SMS) to local numbers siri works well, but dialing local number it just wont work...! I will try using my Australian SIM card and see if that is the reason.. I tried changing the number in the contacts and took out the international prefix, I turned the international assist on and off still nothing.. How frustrating. I called apple, the technican had know idea and we to his supervisor, had to wait fro 40 miuntes and then I hung up..
    PLEASE HELP..!

  • Method calling, a little difficultly, some help please

    Hi there!
    I have a "main" Class named Exchange (has the GUI elements) and instantiates other Classes. Another Class named Comms performs some methods which listen to an incoming stream of data. One particular method named incomingBody( StringBuffer sb ); holds these values in the form of a StringBuffer. Which has taken a returned StringBuffer copied from the addToHistory( Message msg ); method.
    Class Comms {
    //Handles history of incoming <body> XML from receievedPacket
    protected void addToHistory( Message msg ) {
    //Build String to append
    StringBuffer sb = new StringBuffer();
    sb.append( msg.getBody() );
    incomingBody( sb );
    System.out.println( sb );
    //Stores the StringBuffer value from addToHistory
    public StringBuffer incomingBody( StringBuffer sb ) {
    StringBuffer body;
    body = sb;
    if( body != null ) {
    System.out.println( body );
    return body;
    //end of Class Comms
    Now I'm not sure how to run the incomingBody method within my main Class, so that I can put the StringBuffer into a JEditorPane, but for now I just to print it to the Terminal window for testing. What I thought would be correct is instantiating the Comms Class within the "main":
    Class Exchange {
    Comms communicate = new Comms();
    //run method
    System.out.println( communicate.incomingBody);
    But I get this error:
    Exchange.java:39: incomingBody(java.lang.StringBuffer) in Comms cannot be applied to ()
    System.out.println( communicate.incomingBody() );
    ^
    1 error
    Any advice ? Please and thanks! :)

    Well, I've not really read through your code. The incomingBody method appears to check to see if the StringBuffer you pass it is null and if not it adds it to some list, right? So - if you don't have a StringBuffer to pass it, then why are you calling it?
    not sure that made sense - you said that you want to use the StringBuffer that incomingBody returns in the main class, but that method returns the same StringBuffer you pass it - so I don't see why you would need to use its return value. The only thing that method does is add the passed in StringBuffer to a list.
    I think maybe you should look back over your methods and write out a quick comment about what the method is supposed to do, that might help
    Lee

  • Group above report - help please

    Good Morning,
    I'm trying to create a group above report that resembles the following:
    LETTER TYPE: 00001
    BATCH TOTAL NOREPLY
    1234 3 1
    2345 2 0
    TOTAL VOL. FOR LETTER 00001 5
    I've tried using:
    select ltrtype, batch, count(reply)
    from ltr
    where reply = 'N'
    group by ltrtype, batch
    which does give me the correct figures under the NOREPLY Heading, but I can't get the correct figures for the TOTAL heading (NOTE: The figures in the TOTAL column should be a total of both the reply = 'Y' and reply = 'N' for the ltrtype and batch - the figures in the NOREPLY column should be a total of only the reply = 'N' for the ltrtype and batch.) I hope this explanation is clear
    I've also tried eliminating the where clause, but then I get the correct figures under the TOTAL heading, but I can't get the correct figures for the NOREPLY heading.
    I've also tried using two queries and a data link, but I couldn't get that to work either.
    Any help would be greatly appreciated.
    Thanks.

    Go to report wizard and check the groups and fields tabs. Otherwise map the repeating frames accordingly.

  • Calling arraylist from another class - help please!!

    Hey, I need some help calling my arraylist from my GUI class, as the arraylist is in the 'AlbumList' class and not in the 'GUI' class i get the error 'cannot find symbol', which is pretty obvious but i cannot figure how to get around this problem. help would be greatly appreciated.
    i have written ***PROBLEM*** next to the bad line of code!
    Thanks!!
    public class Album
        String artist;
        String title;
        String genre;
        public Album(String a, String t, String g)
            artist = a;
         title = t;
            genre = g;
         public String getArtist()
            return artist;
        public String getTitle()
            return title;
         public String getGenre()
            return genre;
    public class AlbumList
        public ArrayList <Album> theAlbums;
        int pointer = -1;
        public AlbumList()
            theAlbums = new ArrayList <Album>();
        public void addAlbum(Album newAlbum)
         theAlbums.add(newAlbum);
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class GUI extends JFrame
        public int max = 5;
        public int numAlbums = 4;
        public int pointer = -1;
        public GUI ()
            super("Recording System");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel main = new JPanel();
            JPanel panel1 = new JPanel();
            panel1.setLayout(new GridLayout(3,2,0,0));
            JPanel panel2 = new JPanel();
            panel2.setLayout(new GridLayout(1,2,20,0));
            final JLabel artistLBL = new JLabel("Artist: ");
            final JLabel titleLBL = new JLabel("Title: ");
            final JLabel genreLBL = new JLabel("Genre: ");
            final JTextField artistFLD = new JTextField(20);
            final JTextField titleFLD = new JTextField(20);
            final JTextField genreFLD = new JTextField(20);
            final JButton nextBTN = new JButton("Next");
            nextBTN.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    pointer++;
                    artistFLD.setText(theAlbums.get(pointer).getArtist());       ***PROBLEM***
                    titleFLD.setText("NEXT");
                    genreFLD.setText("NEXT");
            final JButton prevBTN = new JButton("Prev");
            prevBTN.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    pointer--;
                    artistFLD.setText("PREVIOUS");
                    titleFLD.setText("PREVIOUS");
                    genreFLD.setText("PREVIOUS");
         panel1.add(artistLBL);
            panel1.add(artistFLD);
            panel1.add(titleLBL);
            panel1.add(titleFLD);
            panel1.add(genreLBL);
            panel1.add(genreFLD);
            panel2.add(prevBTN);
            panel2.add(nextBTN);
            main.add(panel1);
            main.add(panel2);
            setVisible(true);
            this.getContentPane().add(main);
            setSize(500, 500);
    -----------------------------------------------------------------------Thanks!!
    Edited by: phreeck on Nov 3, 2007 8:55 PM

    thanks, it dosnt give me a complication error but when i press the button it says out of bounds error, and i think my arraylist may be empty possibly even though i put this data in.. this is my test file which runs it all.
    any ideas? thanks!!
    public class Test
        public static void main(String []args)
            AlbumList a = new AlbumList();
            String aArtist = "IronMaiden";
            String aTitle = "7thSon";
            String aGenre = "HeavyMetal";
            Album newA = new Album(aArtist, aTitle, aGenre);
            a.addAlbum(newA);
            aArtist = "LambOfGod";
            aTitle = "Sacrament";
            aGenre = "Metal";
            Album newB = new Album(aArtist, aTitle, aGenre);
            a.addAlbum(newB);
            aArtist = "JohnMayer";
            aTitle = "Continuum";
            aGenre = "Guitar";
            Album newC = new Album(aArtist, aTitle, aGenre);
            a.addAlbum(newC);
            aArtist = "StillRemains";
            aTitle = "TheSerpent";
            aGenre = "Metal";
            Album newD = new Album(aArtist, aTitle, aGenre);
            a.addAlbum(newD);
         GUI tester = new GUI();
    }

  • Errors on my credit report Help please

    When Citibank took over my Best Buy credit card from Capitol One, there appears to have been inaccurate reporting by the companies or the credit bureeaus are reporting it wrong, not sure which.   Both cards show an open date of February 2007  Equifax shows open with CBNA and no status with Captiol OneTrans Union shows Closed with Capitol One and open with CBNAExperian shows nothing with CBNA and closed with Capitol One... It should all show open with Citibank (CBNA) reporting zero balance...  Do I fix any of this or will it drag my score lower?

    lilbitinok wrote:
    When Citibank took over my Best Buy credit card from Capitol One, there appears to have been inaccurate reporting by the companies or the credit bureeaus are reporting it wrong, not sure which.   Both cards show an open date of February 2007  Equifax shows open with CBNA and no status with Captiol OneTrans Union shows Closed with Capitol One and open with CBNAExperian shows nothing with CBNA and closed with Capitol One... It should all show open with Citibank (CBNA) reporting zero balance...  Do I fix any of this or will it drag my score lower?How long has it been since the accounts were migrated to Citi?  From what I've seen, these conversions usually work themselves out, but if you are unable to wait you can either contact Citi directly and let the CSR transfer you to someone that works in credit bureau reporting (or whatever Citi calls the group) or you can dispute the balances and status as inaccurate directly with the credit bureaus. In the past when I had one that wouldn't update my balance for months I used option #2, but it took a few weeks to get a new copy of my report with the updated balance/status.  It looks like your reports might be mid-transition, since you have EQ showing 'no status' with Capital One.  In my experience with accounts changing to Capital One, the old trade line disappeared completely, with the new Capital One tradeline having all the information from the previous account, including the previous open date.  Citi/CBNA could be different, but I don't see how they could easily 'get away with it', since if they allowed the CBs to continue to display the "old" account along with the "new" it would impact your AAoA, and for an old account this would be good for you.  It's not like them to give us 'freebies' like that...

  • Dynamic Report - HELP Please

    Hello,
    I store a query to a table. That query is dynamic. It is created at runtime. I have another page that gets the query from the table. I need to use that query to generate a report. The problem is that some columns in the report are not summed and other columns are summed and I don't know which columns are summed or not summed until runtime. I am working with APEX 2.2. Any help would be greatly appreciated.
    Sharon

    Sharon,
    I am not sure I understand your question. Have a look in my demo application:
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    there are many examples you could use to solve your problem.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Field dominance - help please...?

    Hi there,
    I have been compiling some videos for a DVD - I've been using various pieces of software but mainly iMovie. Unfortunately what I've found though, since the videos have come from various sources, that some of them when burned to DVD are jittery due to the fields being the wrong way round (PAL). I assume this could be down to some of the videos being created in DV format which is bottom field first, whereas PAL is top field first... Is that right?
    Anyway, Is there any way in iMovie, or any other app for that matter, to flip the fields in a movie file?
    Thanks!
    :-Joe

    export the clips as QT/Full Quality
    get and use for free
    *JES Deinterlacer*
    http://www.xs4all.nl/~jeschot/home.html
    it has a 'swap field dominance' feature...

  • Summary Report help

    Although my summary report indicates the total responses received for comments, it does not show the actual comments. I used a forms central template, perfect for what I need, however I really need the comments to be visable in the report. help please.

    Can you please send me screenshot with the problem ([email protected]) so i can understand the problem better.
    Currently the Summary Report tab only show fields added in the Design tab, so if you've added comments field directly in the Response tab you would not be able to display in the Report tab.
    But you should be to see all comments in the View Response tab.
    Thanks
    Roman

  • Getting Error in Viewing Report..Please help

    Post Author: gauravitech
    CA Forum: JAVA
    Hi All,
      I am new to Crystal Report world.. I am trying to integrate Crystal Report with FileNet. FileNet has its own API to call webservices for Crystal report which bring reports back to the web application. I am getting some error like incopatible cast type objects. Please help me to resolve this..For me it seems to  be a jar problem
    Thanks in advance for your replies....
    Below is the error:
    Error Message:com.crystaldecisions.xml.serialization.SaveOption.setTimeZone(Ljava/util/TimeZone;)VException Class:java.lang.NoSuchMethodErrorStack Trace:java.lang.NoSuchMethodError: com.crystaldecisions.xml.serialization.SaveOption.setTimeZone (Ljava/util/TimeZone;)V    at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.setTimeZone (Unknown Source)    at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int (Unknown Source)    at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize (Unknown Source)    at com.filenet.rm.apps.server.ui.report.crystal.CrystalAdapter.executeReport (CrystalAdapter.java:35)    at com.filenet.rm.apps.server.ui.report.crystal.CrystalManager.execute (CrystalManager.java:40)    at com.filenet.rm.apps.server.ui.report.ReportModule.onStartPage (ReportModule.java:93)    at com.filenet.wcm.toolkit.server.base.WcmController.broadcastStartPageEvent (WcmController.java:4531)    at com.filenet.wcm.toolkit.server.base.WcmController.initializeModulesWork (WcmController.java:3641)    at com.filenet.wcm.toolkit.server.base.WcmController.initializeModules (WcmController.java:3574)    at com.filenet.wcm.toolkit.server.base.WcmController.initializeModules (WcmController.java:3446)    at com.filenet.wcm.toolkit.server.base.WcmController.handleEvent (WcmController.java:3157)    at com.filenet.wcm.apps.server.controller.WcmWorkplaceController.handleEvent (WcmWorkplaceController.java:495)    at com.filenet.wcm.toolkit.server.base.WcmController.handleEvent (WcmController.java:3089)    at jsp_servlet._reports.__rmviewreport._jspService (__rmviewreport.java:206)    at weblogic.servlet.jsp.JspBase.service (JspBase.java:33)    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run (ServletStubImpl.java:1006)    at weblogic.servlet.internal.ServletStubImpl.invokeServlet (ServletStubImpl.java:419)    at weblogic.servlet.internal.ServletStubImpl.invokeServlet (ServletStubImpl.java:315)    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run (WebAppServletContext.java:6718)    at weblogic.security.acl.internal.AuthenticatedSubject.doAs (AuthenticatedSubject.java:321)    at weblogic.security.service.SecurityManager.runAs (SecurityManager.java:121)    at weblogic.servlet.internal.WebAppServletContext.invokeServlet (WebAppServletContext.java:3764)    at weblogic.servlet.internal.ServletRequestImpl.execute (ServletRequestImpl.java:2644)    at weblogic.kernel.ExecuteThread.execute (ExecuteThread.java:219)    at weblogic.kernel.ExecuteThread.run (ExecuteThread.java:178)

    Post Author: Ted Ueda
    CA Forum: JAVA
    If SaveOption doesn't have setTimeZone method, then my best guess is that either Serialization.jar file is from a version older than it should be, or rasapp.jar is newer than it should be - there might be a mixing of jar files from different versions of the RAS SDK.  I'd recommend cleaning out the jars and copying then anew from the installation folder.
    Sincerely,
    Ted Ueda

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • Since i have updated to IOS 7.1 my phone no longer can make calls, connect using 3G or send text messages. can someone help please?

    since i have updated to IOS 7.1 my phone no longer can make calls, connect using 3G or send text messages. has anyone else had this trouble? i've tried resetting the phone, but had no luck. i can recieve calls and texts, but cannot make calls, text or use the 3G.
    please can anyone help?

    Yes! All the above. I have to buy a new phone. I contacted my phone company and there is nothing they can do 

  • I can no longer access Bejeweled Blitz through my facebook account.  I get the message that says, "your browser sent a request that this server could not understand. Size of a request header field exceeds server limit".  Help please.

    I can no longer access Bejeweled Blitz through facebook.  I get the message, "your browser sent a request that this server could not understand. Size of a request header field exceeds server limit". I can access Bejeweled through FB using my husband's log in so to me that suggests the problem is with my log in. Help please.

    Contact FB or use another browser. 

  • Missing Memo Fields from Universe Please Help.

    Can anyone tell me why all of the memo fields are missing when I try to use a Universe to connect to the database.
    If I use a query to create the Universe or insert tables the memo fields are not avalible in a Universe.
    In the designer the memo fields show up on the right side pane, but do not show on the left side pane.
    If I don't use a universe and just use a standard oledb connection the memo fields are there and I can use them.
    Help Please.
    Thanks
    Jeff

    Found it on Google

  • I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    @Naiks, having suffered through unsuccessful synching attempts for Calendar and Contacts myself, l would suggest you try the following:
    UNINSTALL iCloud control panel from your PC. Seems silly, but do it.
    Go into Outlook, and look at the very top menu. Click FILE, then ACCOUNT SETTINGS, then click the popup box.
    You will see a list of all your email accounts. Make sure that ONE of them has a checkmark against it. If not, select the account your want as your default, and click "set as default.
    Exit out of Outlook and reboot your machine.
    Now reinstall iCloud, check CALENDAR and CONTACTS, and do as instructed when prompted.
    Reboot for good luck and now launch OUTLOOK. All that remains is to locate your iCloud Contacts and Calendar files, and make them your default.
    IMPORTANT: Don't panic if you can't find your contacts -- they're there. Click CONTACTS and you'll see you have several available contact files. Locate the one label "iCloud" in grey type. Right-click on it, select PROPERTIES, then click the Outlook Address Book tab. Check the box that says something like "Make this my default Outlook Address Book." Keep clicking "apply" and "okay" until you've exited out of the dialog box maze.
    You may have to do something similar with your Calendar files. I dd not, but if you need to, do it.
    Everything should now sync pretty seamlessly.
    I didn't have the exact same problem as you, but my dilemma was close enough. Good luck!
    Arthur P. Johnson

Maybe you are looking for

  • New Mac Book Pro... No DVD Drive... Really?

    I know there are 50 excuses to leave it out, but a laptop top of this caliber lacking a blu-ray drive is bad enough but lacking a dvd drive all together is ridicoulous.

  • Exporting to MS Excel - default "save as" type

    We have written code in our application that exports the results of the in MS Excel format and everything works fine except for one minor thing using IE. When the user is prompted, they can either "open" or "save". If they choose "save", it saves it

  • WSDL Document/ literal is supported in PI 7.1?

    Hi experts, I'm trying to consume a web service and when use it external definition (wsdl) to create my message mapping, only one field appears with the same name of the operation/method. I checked the WSDL and this element is defined as a literal ty

  • Array of buttons

    Hi everyone, I'm developing an app where I have a number of buttons, let's say 10. I named them button0, button1, ..., button9. Is there a way to cycle through all of them in a for loop? so instead of button0 setTitle:@"button 0" forState:UIControlSt

  • I bought Standard but only Pro is showing up to be downloaded. What should I do?

    I subscribe to Standard Acrobat, but after the trial ran out it said it couldn't locate my program, so I went to download it but only Acrobat Pro is showing up as available to download. What should I do? I don't want to pay for Pro.