Viewcriteria question

I am using Jdeveloper 11g R (11.1.2.3) & weblogic 10 G
In my pages I use JSF & Facelet
Hi All
When using Viewcriteria to query  view object what is the difference if
we get VariableValueManager from view object of Viewcriteria it self?
Which one is advised?
way 1:
        ViewObjectImpl locationVW = getLocationsVO1();
        VariableValueManager vvm = locationVW.ensureVariableManager();
        vvm.setVariableValue("param", param);
        ViewCriteria vc = locationVW.getViewCriteria("filterById");
        locationVW.applyViewCriteria(vc);
        locationVW.executeQuery();
way 2:
  ViewObjectImpl locationVW = getLocationsVO1();
        ViewCriteria vc = locationVW.getViewCriteria("filterById");
        VariableValueManager vvm = vc.ensureVariableManager();
        vvm.setVariableValue("param", param);
        locationVW.applyViewCriteria(vc);
  locationVW.executeQuery();

Hi Timo
Really no , I want to know what is the difference and which one is better
If they are acting the same why Oracle implement 2 methods?
I remember in one of your blogs (not sure which post) I think you get it from viewcriteria
In out application we have shared app module with about 20 ref data tables when getting VVM from view criteria it is workig fine
when getting from view object in some cases it retrieve all records in table (ignore the filter)
Thanks
Mohsen

Similar Messages

  • Iterators, View Objects, and ViewCriteria question

    JDev version 10.1.3.2, ADF BC JSF application, created a web-type search form with search and results on same page, exactly like that in Dev guide chap. 18.3. Would like to have the previous page put parameters in a managed bean, and then have the search page populate the QBE form fields with these parameters and execute the query.
    I was hoping to solve the problem by doing the following:
    1) in (session scoped) managed bean, have created a method that puts the parameter value into the "find mode" iterator's viewCriteria and then returns the JSF page navigation action that represents going to the search form. Here is the code for that method (the parameter is currently hardcoded "courseid = 390"):
    public String toEnableMissingSurvey() {
    // ViewObject postReqVO = getclassesStudentsCourses1();
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ValueBinding vb = app.createValueBinding("#{bindings}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fctx);
    DCIteratorBinding dciter = dc.findIteratorBinding("classesStudentsCourses1Iterator");
    ViewCriteria criteria = dciter.getViewCriteria();
    if (criteria.size() > 0) criteria.clear();
    //AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    //String courseid = (String)afContext.getProcessScope().get("surveyCourseid");
    // String courseid = getReturnNavigationRule();
    String courseid = "390";
    if (courseid != null && !courseid.equals("")) {
    Row criteriaRow = criteria.createViewCriteriaRow();
    criteria.add(criteriaRow);
    criteriaRow.setAttribute("Courseid",courseid);
    dciter.getViewObject().applyViewCriteria(criteria);
    //dciter.executeQuery(); --I commented this out because it didn't make any difference, and I thought that the query should be executing on page open anyways
    return "enableMissingSurvey";
    2) On the calling page, on the "EnableMissingSurvey" button which is to navigate to the search page, I have set the "Action" property of the button to this method.
    The button successfully navigates to the search page, but I don't see any change in either the parameter form or the search results that are visible at page opening.
    Can someone tell me what I am doing wrong? Am I accessing the wrong iterator? Do I need to set both the "always find" iterator and the "search results" iterator? Do I need some kind of additional invokeActions in my page def? Is this idea not valid?

    I am not sure 100% what you are trying to accomplish, but you can easily have the search form and results on the same page and not lose the search parameters.
    You need an invoke action to set your search iterator to alway find like this:
    <invokeAction id="AlwaysFind" Binds="Find"
    RefreshCondition="${ ! bindings.AllEmployeesIterator.findMode }"/>
    And create another iterator for the search results.
    KurzHome

  • ADF BC : ViewCriteria validation

    hi
    Please consider this scenario:
    (1) suppose we want some validation on changes on SCOTT.EMP rows
    - EMP.EMPNO has to be a number
    - EMP.JOB has to be 3 or more characters in length
    - EMP.HIREDATE should be in a current two month window
    (2) suppose we want the same validation on values entered to search for SCOTT.EMP rows
    - EMP.EMPNO has to be an exact number (no characters or ranges allowed, or empty to find all)
    - EMP.JOB has to be 3 or more characters in length (or empty to find all)
    - EMP.HIREDATE should be in a current two month window (this particular search does not allow to search for older hires)
    When using ADF BC, typically the validation in (1) ends up in Entity Objects.
    In ADF BC a query-by-example search, as in (2), can be done using ViewCriteria.
    question:
    If we want to reuse the "code" that does these validations, in both (1) and (2), how do we best approach this?
    many thanks
    Jan Vervecken

    Thanks for your reply Z.
    I'm not sure when "moving" validation to another application layer, and creating some kind of "reverse dependency" between application layers in doing so, would be a preferred approach. Although I realize that validation and reuse could have some compromises in its implementation.
    But in my scenario I think we stay inside the Business Service implementation layer, ADF BC, when using Entity Object validation and ViewCriteria (validation).
    Maybe the focus of my question should be more on "ViewCriteria validation" rather than on the reuse (although it is part of the problem).
    regards
    Jan

  • How can you add a where clause using "OR" with applied ViewCriteria?

    [JDeveloper 10.1.3 SU4]
    [JHeadstart 10.1.3 build 78]
    I am using JHeadstart, but have a question probably more in the ADF area. On the JHeadstart forum I asked:
    "I am overriding JhsApplicationModule's advancedSearch in order to be able to search in childtables. I created transient attributes, display those in advanced search and in the overridden method I check if any of these are filled by the user and create a where clause like 'EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>)'. I add this whereclause using ViewObject.setWhereClause.
    So far so good and it works. However, if the user selects 'Result matches any criteria', combining setWhereClause and the normal advancedSearch QueryByExample implementation using ViewCriteriaRow do not provide the desired result, since the ViewCriteria and the setWhereClause are AND-ed together, which is fine if the user selects the (default) "Results match all criteria" (everything is AND-ed) but not the "Result matches any criteria", since then every criterium is OR-ed together, except for the setwhereclause criteria and the set of ViewCriteriaRows, they are AND-ed.
    I looked if I could specify that a WhereClause will be OR-ed to existing applied ViewCriteria, but no luck. Do I have to rewrite also advancedSearch's ViewCriteria implementation and write an entire setWhereClause implementation to be able to "OR" every criterium? Or any other suggestions? Can I look at the entire Where clause and rewrite it (after applyCriteria and setWhereClause are called on the VO)?
    Toine"
    Sandra Muller (JHeadstart Team) told me today: "This sounds like a JDeveloper/ADF issue that is not related to JHeadstart. The question is: how can you add a where clause using "OR" if there are already one or more ViewCriteria applied?
    To simplify the test case, you could create a simple ADF BC test client class in a test Model project without JHeadstart (in the test class, use bc4jclient + Ctrl-Enter), in which you first apply a few ViewCriteriaRows to a View Object and also add a where clause.
    Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the JDeveloper forum at http://otn.oracle.com/discussionforums/jdev.html ? (This what I am doing now ;-))
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting"
    Anyone knowing the answer or am I asking for an enhancement?
    Toine

    Hi,
    Can you SET your whereclause as follows ?
    ('Y' = <isAnd>
    and EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>))
    OR ('N' = <isAnd>
    AND EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> OR <another column in childtable> LIKE '<value supplied by user>))
    )

  • Setting IS NULL as viewcriteria

    Hello,
    A simple question this time. How can one set a viewcriteria to IS NULL.
    If you want all records where a particular field is empty?
    Regards
    Johan

    private ViewPmut fCurPmut = null;
    fCurPmut = (ViewPmut)fPoemaModule.findViewObject("ViewPmut");
    String isNull = "is null";
    fCurPmut.setPmutCriteria(fRow.getPersId().toString(),isNull);

  • MDS questions

    Hi I would like to ask two questions about MDS
    1. can a user undo his customizations? If a user decide that doesn't want the changes he made anymore and wants to restore the default how can this "cleaning" be performed if you use
    MDS database repository (not file)?
    2. how can I save a query?
    I followed the instructions of the ADF manuals and the instructions at Edwin Biemond's posts:
    http://biemond.blogspot.com/2009/07/mds-repository-for-adf-11g.html
    http://biemond.blogspot.com/2009/07/adf-web-applications-and-oracle.html
    and it worked for all components (I changed column widths, order etc and the changes persists) but when I tried to save a query I get
    oracle.mds.exception.ReadOnlyStoreException: MDS-01273: The operation on the resource /persdef/gr/helex/it/marketsystems/marketoffice/datamodel/vViewObjects/R_investors.xml failed because source metadata store mapped to the namespace / BASE DEFAULT is read only.
    In a similar request (the poster didn't use ADF BC) Laura Akel replied:
    "You can listen to the QueryOperationEvent by registering a queryOperationListener to the query component and implement the save mechanism for the event types create update and delete.
    You can make use of the helper methods on oracle.jbo.uicli.binding.JUSearchBindingCustomizer class such as createPersonalization(ViewObject vo, ViewCriteria vc),
    deletePersonalization(ViewObject vo, String vcName), updatePersonalization(ViewObject vo, ViewCriteria vc)"
    is this the only way? If it is can you please clarify it ?
    thanks
    Tilemahos

    As per the 11g release notes (see http://www.oracle.com/technology/products/jdev/htdocs/11/11.1.1.1/knownissues.html#cust8), to get queries from an af:query element to save properly I had to add the following to the adf-config.xml:
          <persistence-config>
            <metadata-namespaces>
              <namespace path="/persdef" metadata-store-usage="metadata"/>
            </metadata-namespaces>
            <metadata-store-usages>
              <metadata-store-usage id="metadata" deploy-target="true"
                                    default-cust-store="true"></metadata-store-usage>
            </metadata-store-usages>
          </persistence-config>inside the mds-config element. Since I've never tried saving queries without the above in place, so I'm not sure if your exception is the expected error if the above is missing from adf-config.xml.
    I did once see a similar exception to the one you have posted. In my case, I hadn't selected the UserCC class in the 'Customization Configuration' section of the adf-config.xml.

  • BC4J, ViewObject: setWhereClause vs ViewCriteria

    1.What is the difference between using setWhereClause and ViewCriteria object?
    2.When is better to use the first one and when the second?
    3.When used both, which one has priority, or are they anded together?
    Could anybody answer these questions?
    Thanks, Tom

    Manuel,
    There is also another method, getEstimatedRowCount(), which is the most efficient. It will perform a
    SELECT COUNT(*) FROM (your query with conditions)
    which puts all the work in the database and just returns the count.
    getFetchedRowCount() just tells you how many have been fetched so far and getRowCount() actually fetches all the rows into view/entity cache and then returns the total.

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

  • Satellite P300D-10v - Question about warranty

    HI EVERYBODY
    I have these overheating problems with my laptop Satellite P300D-10v.
    I did everything I could do to fix it without any success..
    I get the latest update of the bios from Toshiba. I cleaned my lap with compressed air first and then disassembled it all and cleaned it better.(it was really clean insight though...)
    BUT unfortunately the problem still exists...
    So i made a research on the internet and I found out that most of Toshiba owners have the same exactly problem with their laptop.
    Well i guess this is a Toshiba bug for many years now.
    Its a really nice lap, cool sound (the best in laptop ever) BUT......
    So I wanted to make a question. As i am still under warranty, can i return this laptop and get my money back or change it with a different one????
    If any body knows PLS let me know.
    chears
    Thanks in advance

    Hi
    I have already found you other threads.
    Regarding the warranty question;
    If there is something wrong with the hardware then the ASP in your country should be able to help you.
    The warranty should cover every reparation or replacement.
    But I read that you have disasembled the laptop at your own hand... hmmm if you have disasembled the notebook then your warrany is not valid anymore :(
    I think this should be clear for you that you can lose the warrany if you disasemble the laptop!
    By the way: you have to speak with the notebook dealer where you have purchased this notebook if you want to return the notebook
    The Toshiba ASP can repair and fix the notebook but you will not get money from ASP.
    Greets

  • Question regarding NULL and forms

    Hi all, i have a survey that im working on that will be sent via email.
    I'm having an issue though. if i have a multiple choice question, and the user only selects one of the choices, all the unselected choices return as NULL. is there a way i can filter out anytihng that says "NULL" so it only shows the selected options?
    thanks.
    here is the page that retrieves all the data. thanks
    <body>
    <p>1) Is this your first visit to xxxxxxx? <b><%=request.getParameter("stepone") %></b>
    </p>
    <p> </p>
    <p>2) How did You Learn About xxxxxxx?</p>
    <p><b><%=request.getParameter("steptwoOne") %></b>
      <br>
        <b><%=request.getParameter("steptwoTwo") %></b>
      <br>
        <b><%=request.getParameter("steptwoThree") %></b>
      <br>
        <b><%=request.getParameter("steptwoFour") %></b>
      <br>
        <b><%=request.getParameter("steptwoOther") %></b>
    </p>
    <p> </p>
    <p>3) What was your main reason for visiting xxxxx?</p>
    <p><b><%=request.getParameter("stepthreeOne") %></b>
        <br>
          <b><%=request.getParameter("stepthreeTwo") %></b>
        <br>
          <b><%=request.getParameter("stepthreeThree") %></b>
        <br>
          <b><%=request.getParameter("stepthreeFour") %></b>
        <br>
          <b><%=request.getParameter("stepthreeOther") %></b>
    </p>
    <p>4) did you find the information you were looking for on this site?</p>
    <p><b><%=request.getParameter("stepfour") %>
    <br>
    <b><%=request.getParameter("stepfourOther") %></b>
    </b></p>
    <p>5) Do you plan on using this website in the future?</p>
    <p><b><%=request.getParameter("stepfive") %></b></p>
    <p>6) What is your gender</p>
    <p><b><%=request.getParameter("stepsix") %></b></p>
    <p>7) What is your age group</p>
    <p><b><%=request.getParameter("stepseven") %></b></p>
    8) Would you like to take a moment and tell us how we can improve your experience on xxxxxxxxxx?
    <p><b><%=request.getParameter("stepeightFeedback") %></b></p>

    i was messing around and came up with this. it doesnt remove the null, but if it is null it adds ABC beside it. so i think i might be getting close. i just need to figure out how to replace the null.
    code]
    <b><%=request.getParameter("steptwoFour") %></b>
         <% if (request.getParameter("steptwoFour") == null ) {
         %>
         <% out.print("abc"); %>
         <% }
         %>

  • Anyone know how to remove Overdrive books from my iphone that have been transferred from my computer? They do not show up on itunes. I see a lot of answers to this question but they all are based on being able to see the books in iTunes.

    How do I remove Overdrive books from the library that were downloaded onto my computer then transferred to my iphone? The problem is that they do not show up in iTunes.
    I see this question asked a lot when I google, but they always give answers that assumes you can find the books in iTunes either under the books tab, or the audio books tab or in the music. They do not show up anywhere for me. They do not remove from the app like the ones I downloaded directly onto my iphone.the related archived article does not answer it either.  I even asked a guy working at an apple store and he could not help either.   Anybody...?
    Thanks!

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Basic question

    Hello, i have a basic question. if i have defined 2 fields in a cube or a dso:
    Name Quantity
    and from the external flat file i get some characters for my quantity field. would my load fail?  for standard dso and for write optimized?
    NOTE: quantity field is a keyfigure defined as numeric.
    and the load coming in has "VIKPATEL" for Quantity field and not numbers.
    thanks

    Hi Vik,
    Yes, the load will fail.
    May be you coud first load this data into BW (into PSA) and set both fields as characters fields. Then you can create DSO, do transformation from this PSA to the DSO, and put your logic as to what do you want to do with those Quantity that is not number (e.g. convert to 0, or 'Not assgined', etc).
    You can use transfer rule, or a clean up ABAP code in the start routine.
    Hope this helps.

  • Mid 2010 15" i5 Battery Calibration Questions

    Hi, I have a mid 2010 15" MacBook Pro 2.4GHz i5.
    Question 1: I didn't calibrate my battery when I first got my MacBook Pro (it didn't say in the manual that I had to). I've had it for about a month and am doing a calibration today, is that okay? I hope I haven't damaged my battery? The calibration is only to help the battery meter provide an accurate reading of how much life it has remaining, right?
    Question 2: After reading Apple's calibration guide, I decided to set the MacBook Pro to never go to sleep (in Energy Saver System Preference) and leave it on overnight so it would run out of power and go to sleep, then I'd leave it in that state for at least 5 hours before charging it. When I woke up, the light on the front wasn't illuminated. It usually pulsates when in Sleep. Expectedly, it wouldn't wake when pressing buttons on the keyboard. So, what's happened? Is this Safe Sleep? I didn't see any "Your Mac is on reserve battery and will shut down" dialogues or anything similar, as I was asleep! I've left it in this state while I'm at work and will charge it this afternoon. Was my described method okay for calibration or should I have done something different?
    Question 3: Does it matter how quickly you drain your battery when doing a calibration? i.e is it okay to drain it quickly (by running HD video, Photo Booth with effects etc) or slowly (by leaving it idle or running light apps)?
    Thanks.
    Message was edited by: Fresh J

    Fresh J:
    A1. You're fine calibrating the battery now. You might have gotten more accurate readings during the first month if you'd done it sooner, but no harm has been done.
    A2. Your machine has NOT shut down; it has done exactly what it was supposed to do. When the power became critically low, it first wrote the contents of RAM to the hard drive, then went to sleep. When the battery was completely drained some time later, the MBP went into hibernation and the slepp light stopped pulsing and turned off. In that state the machine was using no power at all, but the contents of your RAM were still saved. Once the AC adapter was connected, a press of the power button would cause those contents to be reloaded, and the machine would pick up again exactly where you left off. It is not necessary to wait for the battery to be fully charged before using the machine on AC power, but do leave the AC adapter connected for at least two hours after the battery is fully charged. Nothing that you say you've done was wrong, and nothing that you say has happened was wrong.
    A3. No, it does not matter.

  • Jabber/WebEx Connect SSO Questions

    I've got a few questions around exactly what needs to be done to get SAML working for our Connect accounts to successfully authenticate from Jabber for Windows, Mac, iPhone, and Android.
    We have both a Meeting Center and Connect account under WebEx using Loose Coupled Integration. Just this past week I enabled SAML for our Meeting Center accounts which went off without a hitch with the exception of Meeting Center integration with Jabber, which is now broken with a message about SSO enabled Meeting Sites not being supported (I think this would maybe be fixed if we had Tight Coupled Integration with our two account?).
    Anyway, my questions are...
    For Windows, I understand all clients will need to be reinstalled with the MSI argument for the SSO_ORG_DOMAIN switch I've read about, is that correct? Are there any other switches needed for the reinstall? 
    How will this work with the Mac and mobile clients? There's obviously no command line options to specify for the installations here, will they just know to kick over to my IdP for authentication once they see an email address that falls under an org with SSO enabled? If so, why does the Windows client need to be completely reinstalled and not just know to find the IdP from the Cloud Connect service like Meeting Center does with the Productivity Tools?
    We're just doing this for our Connect Web IM accounts, not attempting any sort of SSO with the phone accounts/UC integration yet.
    Any ideas on getting the Meeting Center integration into Jabber working again?

    I'd suggest posting your question over on the Jabber Pilot forum, as this forum is specific to Jabber Guest questions:
    https://supportforums.cisco.com/community/4551/jabber-pilot-support
    -jim

  • My iPad wont let me download apps bc security questions, but when I try to make them it freezes

    Every time I try to download an app it tells me I need to update my security questions, but once I click to make the questions the box goes white. So I'm not sure how to fix it

    The new questions show on your account on http://appleid.apple.com ? If they do then try logging out and back into your account on your phone (assuming that is where you are trying to purchase from) and see if the new questions then show on it.

Maybe you are looking for

  • About the performance of using shared variables

    Hi  My system has almost 200 I/O points,I want to the host communicates with PLC using OPC(I had create a OPC I/O Server). If I use shared variables bind to OPC data items, there must be almost 200 shared variables. And my puzzle is that what's the p

  • Not sure i like the micro ph

    hello...first post. I just bought the micro photo on ebay. Looks cool, much heavier than my previous, but my first impression isn't great. I had the IAUDIO U2 and loved it! It was lost and while looking on ebay I got a deal for 00 bucks for the micro

  • Doubt on server proxy and file to idoc scenario

    Hi,      I could able to solve most of my doubts from this forum, many regards to all who assisted me.Here are some simple doubts plz help me in solving them.           1.In FILE to PROXY scenario is it necessary to create rfc destination on IS and r

  • Object in selection criteria

    hi all i have a query which has expiry ..i want to keep the expiry date in my selection criteria before execution.that is it shuld ask the expiry date before running the query... thanks shalini

  • GIMP Printing and ColorSync... ?

    Since discovering I can now print (to my Epson Stylus Color 1160) printer using the GIMP drivers furnished in Tiger 10.4.11, I nevertheless seem to be missing ColorSync support. Images (photos and Photoshop images) don't seem to be printing with reli