Problem in placing sum

I have below result from joinin three tables called TEST table
i placed the below selection in Cursor
ID     Grp     loc     type     Sum_Lower_1     sum_upper_1     Sum_qty_3
101     abc     x     1     50     200     0
101     abc     x     3     0     0     80
102     abc     x     1     100     400     0
102     abc     x     3     0     0     450
103     abc     x     1     500     2000     0
103     abc     x     3     0     0     230
104     abc     x     1     30     120     0
104     abc     x     3     0     0     50the result should find out the id,grp,loc for the followin condn. and we do deletion from an another table for these values
if sum_qty_3 < sum_lower_1 for the particular id,grp,loc
if we take 101,abc,x then 80 < 50 ,so it fails
sum_qty_3 > sum_lower_1 for the particular id,grp,loc
if we take 101,abc,x then 50> 250 ,so it fails
So, the row should not return for this id,grp,loc
finally, we should have the below result
ID     Grp     loc
102     abc     x
103     abc     xif sum_qty_3 < sum_lower_1
delete from product where id = 103 and grp = 'abc' and loc = 'x' and f_type = 2000 if sum_qty_3 > sum_lower_1
delete from product where id = 102 and grp = 'abc' and loc = 'x' and f_type = 1000  how can i achieve this using cursor or any other way
pls help me
thanks in adv
Edited by: user12093849 on Nov 27, 2009 3:56 AM
Edited by: user12093849 on Nov 27, 2009 4:08 AM

Is this what you are looking for?
select * from test;
O/P
ID     GRP     LOC     TYPE     SUM_LOWER_1     SUM_UPPER_U     SUM_QTY_3
101     abc     x     1     50                                 200         0
101     abc     x     3     0                                     0       80
102     abc     x     1     100                                  400        0
102     abc     x     3     0                                      0     450
103     abc     x     1     500                                 2000     0
103     abc     x     3     0                                       0     230
104     abc     x     1     30                                    120     0
104     abc     x     3     0                                        0     50
SELECT * FROM(
SELECT id, grp, loc, sum(Sum_Lower_1 )sum_l,SUM(Sum_Upper_u) sum_u,SUM(sum_qty_3) qty_3 FROM Test
GROUP BY id,grp,loc)
WHERE sum_l <qty_3 AND sum_u > qty_3 /* you may have to change the greater than condition, i am confused by your data and the o/p you expect
in the original post */
O/P
ID     GRP     LOC     SUM_L     SUM_U     QTY_3
101     abc     x     50     200     80
104     abc     x     30     120     50Cheers!!!
Bhushan

Similar Messages

  • Problem with placing of properties file

    Hi all,
    Iam using a properties file.
    From a jsp, Iam reading the property file.....
    Its giving FileNotFoundException....
    I hope its problem with placing of my properties file...
    I placed the properties file in WEB-INF/classes..folder.....
    But still iam getting the FileNotFoundException...
    PLz tell me where exactly should I place my properties file...
    Thanks ....

    first rule of using a forum: read recent topics !
    http://forum.java.sun.com/thread.jspa?threadID=668488&tstart=0

  • Facing problem in placing portlets in Web Layout

    I am facing problem in placing portlets on Web layout page-
    1. I am getting some space between the regions. I want that my portlet should join adjacent only not even a single pixel gap should be there.
    2. In Web Layout, First region is the left most and after that subsequent region comes right to first region and one after other. But my second and third region's portlet are coming adjacent instead of third region's portlet coming under second region's portlet
    Please help...............

    The first issue is a bug/feature that has been changed in 3.0.8 (9iAS MR1) due out this week. In previous releases we added spacing arbitrarily. Now, you can define the spacing in the region properties.
    I don't understand issue number 2. Can you clarify the problem?

  • Problem in placing hibernate.cfg.xml

    Hi,
      I have written one ejb project with hibernate in my net weaver.Now i have a problem in placing hibernate.cfg.xml.so tell me where to place it .Give some examples related to that and some related links.

    Hi,
    you can place it into the root of the EJB project as your EJBs probably access Hibernate as persistence layer. In this case make sure that you pass the string "hibernate.cfg.xml" within the method invocation when retrieving a SessionFactory as follows:
    try
    Configuration cfg = new Configuration();
    sessionFactory = cfg.configure 
         ("hibernate.cfg.xml").buildSessionFactory();
    catch (Throwable ex)
    Otherwise the Configuration file may not be found by the application class loader due to different path syntax.
    For further information you can refer to this https://www.sdn.sap.com/irj/sdn/developerareas/java?rid=/webcontent/uuid/e081a4b6-0801-0010-7fa4-c3c7a0454815#hibernate [original link is broken] [original link is broken], although the hibernate.cfg.xml file is placed in the Web-Project in this example.
    Hope this helps,
    Best regards,
    Robin

  • Problem in placing controls and indicator on imported pictures

    hi.
    i have a problem in placing controls and indicator on imported pictures on labview front pannel.
    when i place a control or indicator on imported picture ..the control or indicator don't stay at the top of picture but go behind the picture...
    kindly tell me what to do to avoid this....as complete project has been made and now i have to place all controls and indicator of front pannel on to a picture.

    The Front Panel is built in layers. Each new control or decoration you add is placed in the top most layer.
    To change this, select the picture, click the "Reorder" button (that's the rightmost button in the row of buttons on the toolbar, the one with the 2 arrows forming a circle), and select Move to Back. Your picture will be moved to the background and your controls will be in front of it.
    Try to take over the world!

  • Problem in placing files in server

    Hello,
    I am working on applet to servlet communication. I have developed the code but I have problem in placing the files in the tomcat server. these are my files
    test.html
    test.class (applet)
    inter.class (bean implementing serializable interface)
    testser.class (servlet)
    I have placed test.html, test.class and inter.class in webapps/examples folder. I have placed testser.class in webapps/examples/web-inf/classes folder.
    So that i can now see the applet and applet pass values to bean. But my servlet is not called. Can any one help what is going wrong or where should i place the files?
    Thanks

    Hello,
    Here goes my source code files. All of them are working source files,
    I am a bit confused in placing them in the Tomcat server. Can anyone try and post the results please?
    i.e placing the files in the proper directories of the server.
    // Register.java
    import java.sql.*;
    public class Register implements java.io.Serializable
        // data members
        private String firstname;
        private String lastname;
        private final String CR = "\n";     // carriage return
        // constructors
        public Register()
        public Register(String afirstName, String alastName)
            firstname = afirstName;
            lastname = alastName;
              RegistrationServlet regser = new RegistrationServlet();
         public String getFirstName()
                 System.out.println("In getFirstName(): " + firstname);
              return firstname;  
        public String getLastName()
            return lastname;  
    // RegistrationApplet.html
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    import java.awt.event.*;
    import java.io.*;
    public class RegistrationApplet extends Applet implements ActionListener
         String browser;
         public void init()
              setLayout(null);
              setSize(438,536);
              label1.setText("First Name*:");
              add(label1);
              label1.setFont(new Font("Dialog", Font.BOLD, 12));
              label1.setBounds(48,60,116,27);
              add(textField1);
              textField1.setBounds(168,60,180,30);
              add(textField2);
              textField2.setBounds(168,96,180,30);
              label2.setText("Last Name*:");
              add(label2);
              label2.setFont(new Font("Dialog", Font.BOLD, 13));
              label2.setBounds(48,96,94,20);
              button1.setLabel("Submit");
              add(button1);
              button1.setBackground(java.awt.Color.lightGray);
              button1.setBounds(120,444,98,30);
              label11.setText("Applet to Servlet Communication");
              add(label11);
              label11.setFont(new Font("Dialog", Font.BOLD, 24));
              label11.setBounds(108,12,288,36);
              button1.addActionListener(this);
         public void actionPerformed(ActionEvent ae)
              if(ae.getSource().equals(button1))
                   firstname = textField1.getText().trim();
                   lastname = textField2.getText().trim();
                   try{
                   String toservlet = "http://localhost:8080/servlet/RegistrationServlet";
                   URL servleturl = new URL(toservlet);
                   URLConnection servletconnection = servleturl.openConnection();
                   servletconnection.setDoInput(true);
                   servletconnection.setDoOutput(true);
                   servletconnection.setUseCaches(false);
                   servletconnection.setDefaultUseCaches(false);
                   servletconnection.setRequestProperty("Content-type","application/octet-stream");
                   // sending the values to the serialised class "Register.java"
                   register  = new Register(firstname,lastname);
                   ObjectOutputStream outputtoservlet = null;
                   outputtoservlet = new ObjectOutputStream(servletconnection.getOutputStream());
                   outputtoservlet.writeObject(register);
                   outputtoservlet.flush();
                   outputtoservlet.close();
                   catch(Exception e)
                        System.out.println("in submit  "+e);
                        e.printStackTrace();
         String firstname;
         String lastname;
         java.awt.Label label1 = new java.awt.Label();
         java.awt.TextField textField1 = new java.awt.TextField();
         java.awt.TextField textField2 = new java.awt.TextField();
         java.awt.Label label2 = new java.awt.Label();
         java.awt.Button button1 = new java.awt.Button();
         java.awt.Label label11 = new java.awt.Label();
         String parameters;
         Register register = null;
    // RegistrationServlet.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.net.*;
    import java.io.*;
    public class RegistrationServlet extends HttpServlet
         public void doPost(HttpServletRequest req,HttpServletResponse res)
              ObjectInputStream inputFromApplet = null;
            Register aRegister = null;       
              try
                   inputFromApplet = new ObjectInputStream(req.getInputStream());
                   //"Reading data..."
                   System.out.println("Reading Data.......");
                 aRegister = (Register) inputFromApplet.readObject();
                   System.out.println("Completed Reading Data.......");
                   //close the connection after reading the data               
                   inputFromApplet.close();
                   // getting parameters from the serilized class "Register.java"
                   String first = aRegister.getFirstName();
                   String last = aRegister.getLastName();
                   ServletOutputStream sos = res.getOutputStream();
                   sos.println("First Name:"+first);
                   sos.println("Last Name:"+last);
              catch(Exception e)
                   System.out.println("in doPost()  "+e);
                   //e.printStackTrace();
    }Thanks

  • Facing problem in placing portlet on Web Layout

    I am facing problem in placing portlets on Web layout page-
    1. I am getting some space between the regions. I want that my portlet should join adjacent only not even a single pixel gap should be there.
    2. In Web Layout, First region is the left most and after that subsequent region comes right to first region and one after other. But my second and third region's portlet are coming adjacent instead of third region's portlet coming under second region's portlet
    Please help...............

    The first issue is a bug/feature that has been changed in 3.0.8 (9iAS MR1) due out this week. In previous releases we added spacing arbitrarily. Now, you can define the spacing in the region properties.
    I don't understand issue number 2. Can you clarify the problem?

  • Problems trying to SUM after returning date on first row in all rows

    Hi,
    I'm having problems with a calculation in a table report.
    We've built a Discoverer report that looks at long term absence of an employee. The long-term absence period must be worked out based on a 2-year rolling period from the start date of the employee's most recent sickness. For example, if i'm off sick and have been since 01-Mar-2009 the report will look at all absences i've had since 01-Mar-2007 and sum the days.
    I have built a calculation that always returns the latest absence start date for every row of absence a person has had. This has been achieved by using a LEAD Function and ROW_NUMBER, see below:
    LEAD(Absence Start Date,ROW_NUMBER() OVER(PARTITION BY Employee Number  ORDER BY  Absence Start Date DESC)-1) OVER(PARTITION BY Employee Number  ORDER BY  Absence Start Date DESC)
    The problem I have is that I cannot SUM the Absence Days of the person and bring in one row per person in the report. I think the cause is the use of the ROW_NUMBER. It ends up returning a Row for every absence the person has had.
    Is there any way I can achieve returning the latest absence start date of a person against all absence rows (in order to use a condition to restrict the report to all absences that started after 2 years prior to that date) that they've had and sum up the absence days so that only one row per person is returned? I cannot use row generators and cannot register PL/SQL functions. I would need to get IT to help me which is min 3 month turnaround, so I'm trying to resolve this quickly.
    Hope you can help.
    Many Thanks,
    Lloyd

    Hi Michael,
    Thanks a lot for this. The calculation you provided fixes the issue. However, The partition part of it seems to cause another.
    In order to calculate total absence days the following calculation is used:
    SUM(CASE WHEN NVL2("Absence (Employee) - Historic"."Date End",( CASE WHEN Absence Finish >= Absence Start THEN "Absence (Employee) - Historic".Absence Days END ),CASE WHEN "Absence (Employee) - Historic".Date Start < Period Start Date THEN WORKING_DAYS_BETWEEN(Period Start Date,Absence Finish) WHEN Absence Finish >= Absence Start THEN WORKING_DAYS_BETWEEN(Absence Start,Absence Finish) END) = 0 THEN DAYS_BETWEEN(Absence Start,Absence Finish) ELSE NVL2("Absence (Employee) - Historic"."Date End",( CASE WHEN Absence Finish >= Absence Start THEN "Absence (Employee) - Historic".Absence Days END ),CASE WHEN Absence Finish >= Absence Start THEN WORKING_DAYS_BETWEEN(Absence Start,Absence Finish) END) END) OVER(PARTITION BY "Person Assignment Information (Person) - Historic".Employee Number ORDER BY "Person Assignment Information (Person) - Historic".Employee Number )
    Here is a little Key:
    Absence Start
    GREATEST("Absence (Employee) - Historic".Date Start,ADD_MONTHS(TRUNC(SYSDATE),-24))
    Absence Finish
    LEAST(NVL("Absence (Employee) - Historic".Date End,TRUNC(SYSDATE)),TRUNC(SYSDATE))
    Period Start Date
    ADD_MONTHS(MAX("Absence (Employee) - Historic".Date Start) OVER(PARTITION BY "Absence (Employee) - Historic".Employee Number ORDER BY "Absence (Employee) - Historic".Date Start DESC ),-24)
    The item Absence Days is the number of days input against the absence by the user. This is only correct for end-dated absences. For people who have open-ended absence or those whose absence start before the period start date (Michael's date) we must work the days out. A function called WORKING_DAYS_BETWEEN achieves this. There is also another function called DAYS_BETWEEN which is all days between two days (weekends included).
    The item Date Start is the absence Start Date, Date End is the Absence End date.
    The whole lot is then summed by Employee number partition.
    The report has lots of indicators that using mathemical equations based ont Total Absence Days. In order to use Total Absence Days in another mathematical calc I have to create a duplicate calculation except without the partition (Total_Absence_Days in this case). If don't and simply insert the name of the calc into another calculation I get this error when running the report.
    Image: !http://www.aerographicsuk.com/Invalid%20Identifier.jpg!
    When creating another mathematical calc I then have to do the Sum partition around it. This makes the report run really slow because i'm typing lots of large formulae every time i build a calc that refers to Total Absence Days.
    Is there a way I can create the total absence days calculation with out causing this error? I have thought about breaking it up into several calculations but am wondering if i'll get the same error message.
    Below is an example of a calculation that tries to use Total Absence Days:
    GREATEST("Full Pay Entitlement (Days)"-SUM(Total_Absence_Days) OVER(PARTITION BY "Absence (Employee) - Historic".Employee Number ORDER BY "Absence (Employee) - Historic".Employee Number ),0)
    Kranthi, I can only paste in the Oracle SQL, which isn't real SQL. There are lots of other calcs though, so they'll probably be a lot there. Please let me know if you'd like to see it.
    Many Thanks for your help with this,
    Lloyd

  • Problems printing placed gradient mesh graphics

    CS3 Illustrator and InDesign. Whenever a drawing is created in Illustrator using gradient mesh, and placed into an InDesign document, our printer (Ricoh Aficio 2232C with postscript) all the gradient mesh areas print from InDesign as solid black. I have tried changing every print setting I can think of, but it always comes out the same.
    There are workarounds of course (like saving the illustration as a tiff) but I'd like to work with the original file if possible. Any ideas in how I can proceed in fixing this?

    I wouldn't worry too much about trying to keep the original file intact. ... Of course you should, but there is nothing wrong with making a version "specially for print". It takes some discipline in that you have to edit the original file and always remember to save a flattened copy to update in your document.
    You have to consider there are printers out there (the guys with the weathered faces and hot lead-resistant calluses, not the buzzing, ink-eating and paper spitting type -- okay, maybe they do that as well) with older RIP software or hardware that may have similar problems with very (very) complicated graphics. It's better to play safe than to re-make your image until it can just be processed by your own local printer.

  • Problem in placing line tool position

    Hi, Can any one solve this problem.
    I have created script for line tool but it not running in particular place. I will explain in detail.
    Job Ms
    I/P: America is a [SL 10] country.
    Error in output: America is a country .................   (or)  ................. America is a country  (or)  America  ................. is a country (Rule is Placing somewere else i need correct position)
    Original output should be like this
    Error in output: America is a  ................. country
    I need a 10 mm underline instead of [SL 10]
    It should replace [SL 10] and put a 10 mm rule in that position.
    In my script rule is creating but the rule is placing some were else. Please solve this problem. Ihave created library also for [SL10]. 
    Here is my script coding
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    mydoc=app.activeDocument;
    app.findTextPreferences.findWhat="[SL 10]"
    myFounds=mydoc.findText();
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL10");
    for(i=0;i<myFounds.length;i++)
        myFound=myFounds[i];
        myFound.remove();
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        //myAnchorrule.appliedObjectStyle=mydoc.objectStyles.item("SL");

    Hi csm_phil,
    Iam sorry last week iam out of station this script is working well but still some problem occurs.
    The problem is how to find SL20, Sl30, Sl40, Sl50 in same manuscript.
    mydoc=app.activeDocument;
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL10");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 10]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    var myassets=myLib.assets.item("SL20");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 20]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    var myLib=app.libraries.item(0);
    var myassets=myLib.assets.item("SL30");
    app.findTextPreferences=null;
    app.changeTextPreferences=null;
    app.findChangeTextOptions.caseSensitive=false;
    app.findChangeTextOptions.includeHiddenLayers=true;
    app.findChangeTextOptions.includeLockedLayersForFind=true;
    app.findChangeTextOptions.includeLockedStoriesForFind=true;
    app.findTextPreferences.findWhat="[SL 30]";
    myFounds=mydoc.findText();
    for(i=myFounds.length-1;i>=0; i--)
        myFound=myFounds[i];
        myAnchorrule=myassets.placeAsset(myFound.insertionPoints[0])[0];
        myFound.remove();
    This script is working for sl 10 only please check and confirm

  • Problem In Placing Components

    hi this is anandkumar from india now i am working with Java studio creator 2 update 1. I am facing probelms with placing the components because when i place the components in the design view they look fine but when i will run that page the components width will be sometimes go small and there will be allignment problem between the compenents even though i have alligned all the components correctly in the design view. If any body helps me to come out of this problem i am really thankful to them.
    Regards
    Anandkumar

    Hi Anand,
    I too faced a similar issue. The work around I did was to place all my components in a[b] table and after that the look n feel in the Design View matched the same in my browser.
    Hope this helps :)
    Let me know, if your still facing any issues with positioning components.
    Good Luck
    Anil Mahadev
    http://anilm001.myfreewebs.net/index2.php
    Java Studio Enterprise and Creator User
    Bangalore
    INDIA

  • Problem manipulating placed images

    I am having problems with images that I place.  In the past, I 'saved as' pdf or printed to pdf from excel figures, then could place the image in Illustrator, release clipping masks and ungroup to manipulate the image.  As of a week ago, I can no longer ungroup or release clipping masks from these placed pdfs.  I am using Adobe Illustrator CS5, version 15.1.0, and excel for mac 2011, version 14.4.7.  I don't recall installing updates on either recently, but it has been a month or two since I have worked with Illustrator, so it is possible that I installed some update that I don't remember.  (I have tried placing old images that I successfully placed and manipulated previously, and I cannot manipulate these, either.)  Any ideas would be greatly appreciated.

    You need to embed them and then release the clipping mask(s)

  • Problem with placing dynamic images.

    I have a 800x600 file. It is being used for a PhotoSlide
    show.
    The images are displayed dynamically, as external files.
    Some of the photos will be taken 1 hour before the
    presentation, so I have
    it set up to display img001.jpg, img002.jpg, img003.jpg as
    external files.
    Once the photos are taken, they'll be renamed, and placed in
    the appropriate
    folder, so that they'll appear in the presentation, without
    having to
    republish the authorware file.
    I have the display icons for the images set to display the
    image at 400,300,
    which will center the image on-screen.
    The problem is that when i change the images out, from a
    verticle to a
    horizontal picture, then run the piece, but image's placement
    on screen
    changes.
    So how can I set the linked external file to ALWAYS display
    centered on
    screen, no matter the orientation, or size of the picture.

    That doesn't change anything from when I had X = 400 and
    Y=300.
    The images are linked externally.
    This is going to be a photo slideshow to be shown after a
    wedding, during
    the reception. I will NOT be there to administer this, or to
    republish the
    authorware files. So at the final segment of the slideshow,
    we'll be showing
    several photos taken earlier, at the wedding.
    I have it set up to display 5 photos from the wedding. They
    are grabbed
    externally, but Authorware looking for img01.jpg - img05.jpg.
    The problem is that the image's placement on-screen changes
    when a different
    size image is put in place.
    For example, if i publish the authorware file, and i was
    using a 720 x 480
    image, everything works fine. But if i replace the external
    image with a 480
    x 720 image, the placement on screen is no longer set for the
    center of the
    image to appear at the dead center of the screen (400,300). I
    need it to
    work like this, since I don't know if the wedding photos
    being added will be
    set to portrait or landscape.
    "Steve Howard **AdobeCommunityExpert**"
    <steve@$NoSpam$tomorrows-key.com>
    wrote in message news:e4t1rv$iv1$[email protected]..
    >
    >> So how can I set the linked external file to ALWAYS
    display centered on
    >> screen, no matter the orientation, or size of the
    picture.
    >
    >
    >
    > Set the display icon Positioning property to On Screen.
    Set the Initial X
    > location to WindowWidth/2
    > Set the Initial Y location to WindowHeight/2
    >
    >
    > Steve
    >
    >
    > --
    > ACE - Adobe Community Expert, Authorware
    > My blog -
    http://stevehoward.blogspot.com/
    > Authorware tips -
    http://www.tomorrows-key.com

  • Is it possible to define one language for every imported text? And other problems when placing text.

    Problem is, that Indesign cc 2014 does not recognize language correctly. In my case it should always be slovenian (and documents like doc and docx are set to slovenian), but it set it as slovakian. I get many documents from different programs (Word, Libre Office, Open Office ...). And setting every one after placing it into document is time consuming. Word import was working great in InDesign 5.5. Now it just mixes local character formating. Also: importing docx takes too long, and when in document is some picture, it just freeze. So I must first open every doc/docx file and delete every picture/logo that is inside.
    Any suggestions?

    Check the language of your default Character Style. If it's set to Slovakian, change it to Slovenian with no documents open.

  • Problems in placing .jpg images - size shrinks

    Hi,
    I have been working with InDesign for years and this is the first time I encouterred the following problem. Currently I am creating an online document with InDesign CS5.5.
    The problem is that when I place (ctrl + D) an image (.jpg), some of them seem to "shrink" from their original size and become totally pixelated.
    My original image is 192 x 380 px and it was placed as 46.08 x 91.2 px
    I don't understand what might be the problem. For some of my images it seems to do this and for some not. There are some images that I have previously placed succesfully and then these same images are now shrinked when I place them. Could this be a setting change? I have tried everything, but nothing seems to work.
    Very puzzled.
    Any suggentions?
    Miiagod

    A 192 x 380 pixel  image scaled at 100% that also measures 192 x 380 pixels on the ID page has to have an actual resolution of 72ppi:
    If the actual ppi is different (100 ppi below) and the scale is 100% then the ID object pixel width and height has to change:

Maybe you are looking for

  • Process Sheduler not posting report.

    Hi All, My Environment: Oracle 10gR2, Win 2003 Server, PT8.49.11, HRCS9.0, Weblogic 9.2, Tuxedo 9.1 I just configured the Process Scheduler and when I run it to post a report it doesnt. When I check the Message Log on PeopleSoft page from System Proc

  • Setup of cash journal

    Hi, Please tell me Tcode for doing Setup of cash journal. Regards, Swetha

  • Need help with CATS WebDynpro

    <h4>System Landscape</h4> ERP 6.0 - HR ERP 6.0 - Financials EP 7.0 SP13 u2013 MSS 1.0, ESS 1.0 Scenario: We are trying to implement the CATS functionality in the portal so that contractors can enter their time and managers can approve time from withi

  • Why can't I open some photos in iphoto 11

    when I try to open photos in iphoto 11 I get an exclamation mark

  • IPod 'no music' FED UP

    Hi, I've tried EVERY SINGLE method ive found online, no luck, here's the deal : I have a 160gb iPod since iTunes 11, im unable to get it work. When i sync it, there are 2-3 alternatives what happens. 1. Music synced but 'No Music' seen on my iPod 2.