Database block with multiples images

Hi,
I have a database block with 5 image items for each record (all database items too).
Block property "number of record displayed"=6....so I have 30 image item into the canvas. But when runs forms..only show me 1 image for each record (last image item of block!!)
Someone could help me?
I user for development environment:
-Forms Versión 10.1.2.0.2
-Oracle Database 10g Express Edition Release 10.2.0.1.0
-Windows XP

Yes...I have 5 image (blob) fields in each database record.
Fields are identicals...
:ARTICULOS.IMAGE1
:ARTICULOS.IMAGE2
:ARTICULOS.IMAGE3
:ARTICULOS.IMAGE4
:ARTICULOS.IMAGE5 (only show me this for each record)
I make this test to understand if I made something wrong: delete field :ARTICULOS.IMAGE5 and after that :ARTICULOS.IMAGE4 shows the image...

Similar Messages

  • Exporting a template with multiple images

    Let's assume I want to have a large print made at an outside commecial lab because my printer does not handle the size.
    In the Print Module, is there a way to export a template with multiple images so that it can be sent to an outside lab for printing?
    Or, is this not possible and I would have to design the template in Photoshop and send the file to the lab?
    If Lightroom is not yet capable of this, it certainly seems like a worthwhile feature.

    Thanks for sticking with this thread to help me.
    I am on Windows and I do have PDF capability, the full Adobe Acrobat Professional.
    I have been experimenting with your suggestions and, yes, saving it as a PDF and bringing it into Photoshop is a workaround. The images and Identity plate come into Photoshop as they appear in the template in Lightroom.
    What doesn't appear in Photoshop is the whitespace(margins)around the images. They appear in the PDF, but they don't appear when I open the PDF in Photoshop. Is there a setting I'm overlooking in the PDF settings dialog that will correct this? Or, is this just the way importing a PDF works when it comes to margins? Must I always go to Image/Canvas size to get the canvas I want? Is there a way of not having to do this?

  • I am having a problem when i open a new tab with multiple images. If there is more than five or six images they won't all open.

    I open emails with multiple images. The new version is having a problem opening a tab with more than maybe 6 or 7 images. Older versions sometimes had the same problem but the unopened images appeared on the page as a small blank box that you could try to reload. Not anymore. Now you have to reload the whole tab. Sometimes this works other times it doesn't.

    You seem to be using a beta version. Maybe go back to a regular release and wait for V. 30 to become a regular release, and maybe whatever bug it is will be fixed.

  • Lightbox with multiple images attached to one thumbnail?

    Is it possible to have one thumbnail allow you to scroll through multiple images without having to click on another thumbnail? 
    For example,  lets say that I have three projects with 10 images per project.  I only want to have three thumbnails which will allow the user to see each project by clicking on it's "master" thumbnail.
    Thanks.

    If your intent is to have a single thumbnail (image) that your visitors click and it launches a Lightroom with Slideshow, you can try the following.
    The gist :
    Insert Slideshow Widget into target of Composition Widget
    The details :
    01. Drag & drop the Lightroom Display Composition Widget onto your design surface.
    02. Drag & drop a Slideshow Widget into (this is the important bit) the Target of the Lightroom Display Composition Widget
    The Target is the large area of the Composition Widget
    The Target is what appears as a light box when you click on the Trigger (the smaller boxes)
    03. Add your thumbnail image to the Trigger of the Lightroom Display Composition Widget (the smaller boxes)
    Style it :
    You're now ready, style your widgets and replace the images of the Slideshow Widget and you'll have the effect you're looking for.
    Very crude example :
    http://slideshowwidgetincompositionwidget.businesscatalyst.com/index.html

  • Help with multiple images

    I am new to Final Cut Express. I am trying to make a clip that has multiple images on the screen at one time. For instance one picture in each corner and then one in the middle that all have separate effects. Any help would be appreciated.
    Thanks in advance.

    Welcome to the forum!
    You'll need to place each image that will be on-screen at the same time on it's own video track in the Timeline. So one image will be on V1, another on V2, another on V3 and so on. Once you have the images on the Timeline, start with the one on the highest track. Set the Canvas window to Image+Wireframe mode while the highest image is highlighted in the Timeline. Use the Wireframe to resize and position the image where you want it. Repeat for each image.
    -DH

  • Trying to create a surface  with multiple images with mouse events

    novice programmer (for a applet program)
    hi trying to create a surface i.e jpanel, canvas, that allows multiple images to be created.
    Each object is to contain a image(icon) and a name associated with that particular image. Then each image+label has a mouse event that allows the item to be dragged around the screen.
    I have tried creating own class that contains a image and string but I having problems.
    I know i can create a labels with icons but having major problems adding mouse events to allow each newly created label object to moved by the users mouse?
    if any one has any tips of how to acheive this it would be much appreciated. Thanks in advance.
    fraser.

    This should set you on the right track:- import java.awt.*;
        import java.awt.event.*;
        import javax.swing.*;
        public class DragTwoSquares extends JApplet implements MouseListener, MouseMotionListener {  
           int x1, y1;   // Coords of top-left corner of the red square.
           int x2, y2;   // Coords of top-left corner of the blue square.
           /* Some variables used during dragging */
           boolean dragging;      // Set to true when a drag is in progress.
           boolean dragRedSquare; // True if red square is being dragged, false                              //    if blue square is being dragged.                            
           int offsetX, offsetY;  // Offset of mouse-click coordinates from
                                  //   top-left corner of the square that was                           //   clicked.
           JPanel drawSurface;    // This is the panel on which the actual
                                  // drawing is done.  It is used as the
                                  // content pane of the applet.  It actually                      // belongs to an anonymous class which is
                                  // defined in place in the init() method.
            public void init() {
                 // Initialize the applet by putting the squares in a
                 // starting position and creating the drawing surface
                 // and installing it as the content pane of the applet.
              x1 = 10;  // Set up initial positions of the squares.
              y1 = 10;
              x2 = 50;
              y2 = 10;
              drawSurface = new JPanel() {
                        // This anonymous inner class defines the drawing
                        // surface for the applet.
                    public void paintComponent(Graphics g) {
                           // Draw the two squares and a black frame
                           // around the panel.
                       super.paintComponent(g);  // Fill with background color.
                       g.setColor(Color.red);
                       g.fillRect(x1, y1, 30, 30);
                       g.setColor(Color.blue);
                       g.fillRect(x2, y2, 30, 30);
                       g.setColor(Color.black);
                       g.drawRect(0,0,getSize().width-1,getSize().height-1);
              drawSurface.setBackground(Color.white);
              drawSurface.addMouseListener(this);
              drawSurface.addMouseMotionListener(this);
              setContentPane(drawSurface);
           } // end init();
           public void mousePressed(MouseEvent evt) {
                  // Respond when the user presses the mouse on the panel.
                  // Check which square the user clicked, if any, and start
                  // dragging that square.
              if (dragging)  // Exit if a drag is already in progress.
                 return;           
              int x = evt.getX();  // Location where user clicked.
              int y = evt.getY();        
              if (x >= x2 && x < x2+30 && y >= y2 && y < y2+30) {
                     // It's the blue square (which should be checked first,
                     // since it's in front of the red square.)
                 dragging = true;
                 dragRedSquare = false;
                 offsetX = x - x2;  // Distance from corner of square to (x,y).
                 offsetY = y - y2;
              else if (x >= x1 && x < x1+30 && y >= y1 && y < y1+30) {
                     // It's the red square.
                 dragging = true;
                 dragRedSquare = true;
                 offsetX = x - x1;  // Distance from corner of square to (x,y).
                 offsetY = y - y1;
           public void mouseReleased(MouseEvent evt) {
                  // Dragging stops when user releases the mouse button.
               dragging = false;
           public void mouseDragged(MouseEvent evt) {
                   // Respond when the user drags the mouse.  If a square is
                   // not being dragged, then exit. Otherwise, change the position
                   // of the square that is being dragged to match the position
                   // of the mouse.  Note that the corner of the square is placed
                   // in the same position with respect to the mouse that it had
                   // when the user started dragging it.
               if (dragging == false)
                 return;
               int x = evt.getX();
               int y = evt.getY();
               if (dragRedSquare) {  // Move the red square.
                  x1 = x - offsetX;
                  y1 = y - offsetY;
               else {   // Move the blue square.
                  x2 = x - offsetX;
                  y2 = y - offsetY;
               drawSurface.repaint();
           public void mouseMoved(MouseEvent evt) { }
           public void mouseClicked(MouseEvent evt) { }
           public void mouseEntered(MouseEvent evt) { }
           public void mouseExited(MouseEvent evt) { }  
        } // end class

  • Multi-row block with many image-java-beans

    Hi, I want to create a multi-row block based on a table, e.g. emp with 5 records.
    Then I want to add 5 java-bean images in the same block. Now I want to read from the db-table emp the blob-column with the image of the corresponding empno. Is this possible? How can I do this? Can someone give me a sample for this?
    Thanx Bea

    Hi John, by running the scipts this message occurs:
    [sql] Executing file: C:\Programme\Oracle\JDev11g\samples\Infrastructure\DBSchema\Scripts\DataScripts\DISCOUNTS_BASE.sql
    [sql] Executing file: C:\Programme\Oracle\JDev11g\samples\Infrastructure\DBSchema\Scripts\DataScripts\MEMBERSHIPS_BASE.sql
    [sql] Executing file: C:\Programme\Oracle\JDev11g\samples\Infrastructure\DBSchema\Scripts\DataScripts\SHIPPING_OPTIONS_BASE.sql
    [sql] Failed to execute: INSERT INTO SHIPPING_OPTIONS_BASE VALUES (1, 'US', '3.15', '11.98', '27.50', 'Y', '0', SYSDATE, '0', SYSDATE, 0)
    BUILD FAILED
    C:\Programme\Oracle\JDev11g\samples\Infrastructure\Ant\build.xml:16: The following error occurred while executing this line:
    C:\Programme\Oracle\JDev11g\samples\Infrastructure\DBSchema\build.xml:146: java.sql.SQLException: ORA-01722: invalid number
    What shall I do?
    Bea

  • Inserting Record with database block (with contorl block)

    In my application I have a form in which i have button when pressed a record should be entered in database that this button has been pressed.
    Whether it should have database block or not.
    when i wrote the pl/sql in the wbp trigger
    insert into xyz values ('Add Button Purchase Order');
    commit
    Message appears
    FRM-40401 No changes to Save
    How to conrol this message.
    Thanks
    MAQ

    hi there
    i managed to remove this message by putting the following
    if error_code=40401 then
    null ;
    else
    message(error_text) ;
    message(error_text) ;
    raise form_trigger_failure ;
    end if ;
    on ON-ERROR trigger at form level
    hope it helps !

  • Block with multiple records

    hi every one
    i've developed a form containing a multiple record block. i need that some functions to be done before i commit it.
    1. its primary key should b auto generated, usually i handle it by selecting max value(primary key field) from data base and adding one but in this case it wont work bcoz it wont go to database before i commit it. so it wont auto generate it.
    2. second problem is that there are some fields that must b filled but it should prompt the user to enter required fields when he press commit button.
    thanks in anticipation
    kabir

    Have you considered creating a sequence object for the primary key. If the datatype of the primary key is NUMBER then a sequence will auto generate the next value if you placed (:your_sequence.next_val) into the dafault value property of the text item.
    The second problem can be overcome by writing a When-Validate-Item trigger whereby the user will be prompted to the item that contained the required field that was not entered. You should however note that if a coulmn in your table is of the NOT NULL type then the form default behavior is to prompt user to enter the field.

  • How do I make an object look like it's rotating in 3D with multiple images?

    I have multiple angle images of an object and I want the result to be the same as the link here. http://www.apple.com/iphone/gallery/#gallery04. I don't know flash at all but it seems like there would be a simple program (even if I have to pay) that allows me to import the images, set the rotation speed and other settings and then hit export to .flv file or something. Does anyone know of a program to do this, or a simple method?
    Thanks,
    Caleb

    Thanks for the info. I know how to make a movie clip of the frames but I don't know JavaScript or much web programming. I don't necessarily need it to be web based..I just need a .flv file that let's me scrub my mouse to the left and right to rotate it. There is a program called photosimile that does this very well which I have used but you have to purchase their 3000 dollar machine and have it plugged in to use the software! I just want a standalone software for this.
    Sent from my iPhone

  • Drag and drop does not work with multiple images

    if i try to drag and drop more than one image, nothing happens, no activity at all. i think i had this problem on another computer and it had something to do with the fonts. i can not remember exactly thanks iphoto 6

    Go to font book and use it to make sure the helvetica font is enabled - disable and re-enable it if necessary.
    Regards
    TD

  • CIF blocks with multiple R/3 systems

    Hi,
          We are in SCM V5 and we have two R/3 systems connected to one APO system. Theya re two different BSGs, with totally different integration models as well.
    We are using APO outbound queues for both the R/3 systems.
    The question is, does a CIF block from one R/3 system block the order from other R/3 system?
    Example:
    I have a planned order PO1 created in APO that is bound to go to R/3 system R1. This order is now stuck in SMQ1 in APO.
    I create another planned order PO2 that is bound to go to other R/3 system R2 from the same APO system.
    Does the PO1 block PO2?? or are they separate?
    I would appreciate if you can substantiate that with some reference.
    Thanks.
    Edited by: Raj G on Nov 5, 2008 8:24 AM

    I have not seen such a configuration myself offlate, but based on theoretical knowledge one outbound queue block to one R3 system should not interfere with another outbound queue to another R3 system. The queues are RFC destination specific. INtegration models are also specific to a destination R3 system. However there may be elements that are common - mostly BASIS level settings. Not sure if it interferes with the application.

  • CSS problems in CS4 with multiple images on a page...

    I seem to have a ton of questions going in this forum, sorry if it's painful.
    Here's my latest issue.(DW CS4)
    I created a blank html page and linked a CSS file to it. I dropped a bunch of images into the body and wrapped them in a div with an id of "thumbnails"
    I clicked on my img tag right below the Design window and clicked the "new css rule" button in the CSS Styles window and gave my images a margin of 40 px.  I clicked "OK" and my changes took effect in the Design window, but when I previewed it in the browser (Firefox and IE) none of the CSS was taking effect, all the images were still crammed together. Same thing for the "Live View" Button, I'm not sure what happened, or why the CSS won't take effect.
    Can somebody help me?
    Thanks all,
    Aza

    My HTML follows-----
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="../CssFiles/oneColLiqCtrHdr.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="oneColLiqCtrHdr" id="Thumbnails"><img src="../images/Jewelry/Thumbnails/T_Bracelets/Bellarri_ColoredStone_Over10k_1.jpg" width="166" height="150" alt="Bellari" /><img src="../images/Jewelry/Thumbnails/T_Bracelets/CynthiaGregg_Gold_Over5k_1.jpg" width="178" height="150" alt="Cynthia Gregg" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/FrankRuebel_BestBracelet_2501_5k_1.jpg" width="150" height="150" alt="Frank Ruebel" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Gabriel_BestBracelet_2501_5k_1.jpg" width="156" height="150" alt="Gabriel" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/GeralynSheridan_FashionBridge_500Under_1.jp g" width="178" height="150" alt="Geralyn Sheridan" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Jyes_Legends_Over5k_1.jpg" width="150" height="150" alt="Jyes Legends" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Maevona_BestBracelet_5001_10k_1.jpg" width="166" height="150" alt="Maevona" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/SalPraschnik_Legends_Over5k_1.jpg" width="208" height="150" alt="Sal Praschnik" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Sara_BestBracelet_Over10k_1.jpg" width="156" height="150" alt="Sara" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Starhaven_Silver_501_1k_1.jpg" width="166" height="150" alt="Starhaven" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/SylvaCie_BestBracelet_Over10k_1.jpg" width="150" height="150" alt="Sylva Cie" /></div>
    </body>
    </html>
    *************CSS FOLLOWS********************
    @charset "utf-8";
    body {
        background: #666666;
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
        color: #000000;
        background-color: #000000;
    #jewelryFrame {
        font-family: Georgia, "Times New Roman", Times, serif;
        color: #CCC;
    #jewelryFrame p {
        font-size: 12px;
        padding-bottom: 75px;
    .oneColLiqCtrHdr #container {
        width: 100%;  /* this will create a container 80% of the browser width */
        background: #FFFFFF;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        border: 1px solid #000000;
        text-align: center; /* this overrides the text-align: center on the body element. */
        background-color: #000000;
        max-width: 960px;
        min-width: 800px;
    .oneColLiqCtrHdr #header {
        background: #DDDDDD;
        padding: 0;
        width: 960px;
        height: 141px;
        background-color: #000000;
        color: #CCA4A5;
        font-size: 11px;
        font-style: normal;
        font-family: Goudy Old Style;
        background-image: url(../images/CPJ-Header.png);
    .oneColLiqCtrHdr #header h1 {
        margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 30px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        color: #FFFFFF;
    #navbar {
        background: #999999;
        height: 29px;
        width: 960px;
        background-color: #000000;
        background-image: url(../images/CPJ-NavLT.png);
        background-repeat: repeat;
    .oneColLiqCtrHdr #container #navbar img {
        border-width: 0px;
        border-style: 0;
        border: 0;
    #sideBarLeft {
        float: left;
        width: 30%;
        height: 100%;
        min-width: 250px;
        padding-top: 50px;
        padding-left: 40px;
        padding-right: 40px;
    .oneColLiqCtrHdr #container #sideBarLeft p {
        text-align: justify;
        font-size: 12px;
    .oneColLiqCtrHdr #container #sideBarLeft h2 {
        font-size: 14px;
    .oneColLiqCtrHdr #container #sideBarLeft h1 {
        font-size: 24px;
    .oneColLiqCtrHdr #container #sideBarLeft {
        color: #CCC;
        padding-top: 15%;
        padding-bottom: 15%;
    .oneColLiqCtrHdr #mainContent {
        padding: 0 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
        background: #FFFFFF;
        background-color: #000000;
        color: #969696;
        font-family: "Goudy Old Style";
        font-size: 18px
        text-align: center;
        vertical-align: middle;
        min-height: 500px;
    .oneColLiqCtrHdr #container #mainContent p {
        font-family: "Goudy Old Style";
        font-size: 18px;
    .oneColLiqCtrHdr #container #mainContent h1   {
        padding: 0px;
        font-family: Georgia, "Times New Roman", Times, serif;
        color: #969696;
        font-family:"Goudy Old Style";
        font-size:36px;
    .oneColLiqCtrHdr #container #mainContent h6 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 72px;
        font-weight: bold;
        vertical-align: middle;
        line-height: normal;
        color: #CCC;
    .oneColLiqCtrHdr #container #mainContent #staticprivacy h3 {
        padding: 0px;
    #jewelryFull {
        padding-top: 25px;
        padding-right: 0px;
        padding-bottom: 25px;
        padding-left: 0px;
        font-family: Georgia, "Times New Roman", Times, serif;
        float: none;
        width: 100%;
        max-width: 960px;
        background-image: url(../images/CPJ--MainBG_slice_15.png);
    .oneColLiqCtrHdr #container #mainContent #jewelryFull {
        font-family: Arial, Helvetica, sans-serif;
        color: #CCC;
    .oneColLiqCtrHdr #container #mainContent #jewelryFull img {
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
        border-top-color: #CCC;
        border-right-color: #666;
        border-bottom-color: #666;
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
        margin-top: 25px;
    .oneColLiqCtrHdr #container #mainContent #jewelryFull p {
        text-align: justify;
        margin-top: 0px;
        font-size: 10px;
    .oneColLiqCtrHdr #container #mainContent #mycarousel {
        text-align: center;
        height: 500px;
    .oneColLiqCtrHdr #footer {
        padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
        background:#DDDDDD;
        background-image: url(../images/CPJ-Red-Footer.png);
        height: 63px;
        width: 960px;
        vertical-align: top;
        list-style-type: none;
        clear: both;
    #BottomNav {
        font-family: "Arial Black", Gadget, sans-serif;
        font-size: 11px;
        color: #CCC;
        height: 100%;
        margin: 0;
    .oneColLiqCtrHdr #container #footer #BottomNav ul {
        list-style-type: none;
    .oneColLiqCtrHdr #container #footer #BottomNav ul li {
        display: inline;
    .oneColLiqCtrHdr #container #footer #BottomNav ul li a {
        list-style-type: none;
        list-style-image: none;
        float: right;
        padding-right: 45px;
        color: #969696;
        text-decoration: none;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 10px;
    .oneColLiqCtrHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        color: #FFF;
        text-align: right;
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 12px;
    #quotes {
        text-align: center;
        margin-right: 65px;
        float: none;
    #quoteright {
        text-align: right;
        margin-right: 65px;
    #quotesleft {
        text-align: left;
        text-indent: 65px;
    #companyTitle {
        font-family: "Lucida Console", Monaco, monospace;
        font-size: 24px;
    #medImageArea {
        width: 100%;
        height: 50px;
    #Thumbnails img {
        padding: 40px;
    ************Thank you****************

  • Create a PDF with multiple images per page

    So this seems really simple, but i cannot figure it out... i am creating a PDF from 30 JPGs and rather than having an image on each page in the PDF I would like to set it up so that there are 6 images per page... any thoughts .. thanks in advance
    cheers
    matt

    Once you have the PDF with a single image per page, print it out to a new PDF with 6 pages per page.
    Either that, or use an authoring application like Word or InDesign.

  • Multiple pages with multiple images in interactive forms

    Hi,
    In KM I have xx01  folder ...which contains img1, img2, img3.
    Now I have to get img1 iimage n 1st page of interactive from,
                              img2 image in second page,
                             img3 image in third page.
    I could get the single image on the first page.
    How  to get muliple images in multiple pages of the interactive form.
    I am using web dynpro java.

    In Adobe LiveCycle, add a new subform at the page level. Put your images there.
    You can also click Insert > New Body Page.

Maybe you are looking for

  • Handling Null element in Data Template

    Hi experts , I am facing an issue, include_null_Element is not working properly. Find the sample code below and please help me out with your suggestion. Since my data template file is big i pasting less amount Data template file:- <?xml version="1.0"

  • Error while Activating Adobe Interactive Form

    Hi SDN, I am activating Adobe Interactive Form but it is giving me SOAP Runtime Execption : CSoapExceptionTransport : HTTP receive failed with exception communication failure. Can any one tell me how to rectify this error? Regards, Rahul

  • Project Online (PWA) Task Notes not visible

    Hi, Im using Microsoft Project 2013 Pro to manage projects. Now i started to let my engineers use MS Project Online (Office365) to work on their tasks through PWA. I have several projects created with tasks and on every task there is a Note with the

  • Mail messages visible in preview, when opened the body disappears

    My emails are visible, but only in preview. When the mail message is opened, the header info and subject are visible but the body of the email is blank. Thoughts?

  • Attached library webutil added on opening form in forms dev 10.1.2.0.2

    Using forms developer 10.1.2.0.2. Converted forms from 6i. Everything is working as expected, however having an issue with Forms developer. I have added the webutil.olb to the forms developer object libraries. I have not attached the webutil object g