LOV doesn't apply view critera working with shared application module.

Hi,
I have a shared application module to share lovs between applications.
These lovs have bind variables in the where clause and in view criterias.
When i use these shared lovs, if i select in the view accessor, more than one view criteria to be applied in the view accessor, all rows are selected, it seems that any view criteria are applied or they are applied with an OR operator, althougt in the view accesor indicate that they will be add with an AND operator.
thanks!

I also have a similar problem. View criteria dos not applied in LOV from shared AM. Workaround - in base VO view row implementation for base love attr setter add re-query for LOV view accessor:
ViewObject vo = getSharedAM_RefItem1_1().getViewObject();
vo.applyViewCriteria(vo.getViewCriteriaManager().getViewCriteria("RefItemViewCriteria"));JDeveloper 11.1.1.6 (Build JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1)
Edited by: VitalyCoder on 25.02.2013 10:53

Similar Messages

  • View Objects in the shared application module is not refreshing

    Hi ,
    I have view objects defined shared apps module. This view objects are used for creating lovs which won't change very frequently. I have set the AutoRefresh=true for this view objects. I do have a UI to update the underline table for these lovs. The view objects defined in the shared application module is not getting reflected even I add a new value in the database. Is there any way to refresh these lovs as soon as its added to db?
    Thanks
    Suneesh

    I will explain my scenario ;
    I have a view object(ViewA) where I have defined many LOVs for different attributes. Thes LOVs are using the shared application module's view object (shared_view1,shared_view2...etc) as List DataSource. Where exactly I need to set the auto refresh property=true. Currently I have set all of my shared apps view objects's(shared_view1,shared_view2...etc) autorefresh property=true.Do I need to use the autorefresh =true in the ViewA ?
    What is the concept of autorefresh=true ? Wiill it refresh automatically the view object nexttime i am accessing the page after the db inserts ? Is there any time delay there ? if there is it something configurable ?
    Thanks
    Suneesh

  • Why doesn't my iWeb page work with google chrome?

    Why doesn't my iWeb page work with google chrome?

    Bonjour
    Don't test your website with Google Chrome if you publish it into a local  folder.
    Publish to a server. You need an URL with http:// and ( not file://) to view an iWeb site in Chrome.
    You can also
    activate the web sharing on your computer (Preferences system > Sharing > Check web sharing)
    publish to Sites folder (MacIntosh HD > Users > Home folder >Sites)
    and use the URL (with http) given by the web sharing tab in preferences system http://computer_name.home/~user_name/site_name/

  • FaceTime HD Camera (Display) not working with most applications

    The Thunderbolt 27" LED Cinema displays built in camera is not working with most applications. The camera does not work with FaceTime, iChat, Skype and Google Talk. FaceTime says "There is no connected camera", even though there is. Weird thing is it DOES work at http://www.testmycam.com. I can't get it to work with any other flash based apps, just testmycam.com.
    My MacBook Pro 17" (late 2011) built in camera works perfectly with everything.
    Things I've already tried:
    - Shutdown
    - Restart
    - disconnect/reconnect
    - removing power from display
    lame, lame, lame. $1k monitor, flippin' webcam doesn't work.

    I think I have found the problem. I decided to go page by page through the forums and found this argument when running a Java program through the console:
    -Dsun.java2d.noddraw=true
    So it would be like:
    java -Dsun.java2d.noddraw=true SwingSet2
    That works flawlessly, so it has to do with direct draw (So it's either DirectX or my video card drivers which are up to date).

  • I want to work with shared variables. How can I add a remote pc?

    I did an aplication to work with shared variables, but I do not know how add a remote pc. I tried make it in Variable Manager, but Labview showed a error message: "Cannot Connect to Target xxxxxxxx". What can I do?

    Message Edité par JeromeL le 08-28-2007 06:44 AM
    Jérôme LIBBRECHT

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • Cookies (working with another application)

    Hello,
    I am currently working on a project. I finished everything in the project but there are many requests to bypass the login page. Currently users log on to a facutly site which then gives them the link to my application. The password for the faculty site and my own differ. They are requesting that the login page can be avoided when opening the application from the faculty site.
    I read a similar thread at Re: How to co-work with another application with Cookie or something
    So, the faculty page would authenticate. My application uses the same database, but should work well as is. There is no transfering of information between applications. Basically all my application needs to do is log the user in automatically.
    I believe this is done via cookies. I've tried some OWA_COOKIE procedures, but I think I am doing it all wrong. It is an area that I've never covered.
    Any help would be great. Thanks
    -Tim

    On a further note,
    I used the same logic as in the thread Re: How to co-work with another application with Cookie or something
    On page 150 I set the cookie using:
    begin
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
    expires => sysdate+10,
    name=>'TEST',
    value=>lower('testing'));
    wwv_flow.g_unrecoverable_error := true;
    owa_util.redirect_url('f?p=&APP_ID.:200:&SESSION.');
    exception when others then null;
    end;
    Then on page 200 I read it using:
    declare
    v varchar2(255) := null;
    c owa_cookie.cookie;
    begin
    c := owa_cookie.get('srprt');
    :TEXTFIELD1 := '';
    :TEXTFIELD1 := c.vals(1);
    exception when others then null;
    end;
    this works. So what I would like to do now is read in a cookie from the other site. Is this at all possible?

  • After updating my Iphone 4 on iOS7, my microphone stopped working when someone is calling me(or when I call someone). But the mic works with other applications like Skype... Any ideas ? Thanks.

    After updating my Iphone 4 on iOS7, my microphone stopped working when someone is calling me(or when I call someone). But the mic works with other applications like Skype...
    Any ideas ? Thanks.

    Hi Anis289,
    Welcome to the Support Communities!
    As a first step, I would suggest restarting and/or resetting the iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Here are some additional troubleshooting steps for sound on your iPhone:
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    Cheers,
    - Judy

  • My camera works with the photobooth and with skype but does not work with online applications such as "lolcam from facebook" or "faceonthehole" application. Please help

    My camera works with the photobooth and with skype but does not work with other applications like the "lolcam" from facebook or the " faceonthe hole" application. Can anyone help?

    There was a issue with school computers being used to spy on kids in their bedrooms, Mac's were involved.
    So Apple most likely tightened the API's to only select, trustworthy companies as not to abuse the web cam access priviledge.
    If you want to use a web cam with these other programs and services, you'll likely have to buy a third party USB one, so you can manually disconnect it.
    There isn't a way to physcially disconnect the built in web cam on Mac's without busting open the machine.

  • Combo LOV search on VO exposed on Shared Application Module

    Hello,
    My Jdev version 11.1.1.6. Technology stack is ADF BC and ADF faces.
    I have a generic lookup table that provides static list of values for many pages. Most lookup types have short list of values i.e. 15-20 and are implemented as selectOneChoice but some are 100+ and are implemented as Combo LOVs.
    This lookup VO has been exposed on Application level Shared Application Module and all LOVs are implemented on data model side.
    The problem is with Combo LOV search functionality. If I try to search on column, putting X%, it returns all values and I noticed that no query is sent to database which means it has all the data already cached on application server and returning all rows from there.
    If I change the LOV's Base VO [i.e. lookupVO] to regular [non-shared] then it perfectly searches as per entered criteria and returns correct rows.
    Do I need to set something on VO (or some where) to return filtered records from memory?
    My BC objects extends custom framework extn classes. Can something be done in custom framework etxn classes affecting only where it is required and not affecting other VOs [non-shared] functionality?
    Please help.
    Thanks,
    Jai

    Pratap,
    Thank you for the response.
    The reason I need to use new xxCO on the page is this.
    Seeded page CheckoutLinesPG.
    It has advanced table on it where every column has it's one external region.
    The new LOV region xxRN is put on a page also under this table new column.
    1. When a requester (seeded region on the seeded page) is changed then my xxLOV should reflect the change and be populated according to what is selected in the Requester LOV.
    2. When one-time address is added (another seeded region on the seeded page) my xxLOV should be disabled, when one time address taken out - enabled again.
    So xxCO should apply to the whole page.
    The VO behind advanced table PoRequisitionLinesVO is extended with 2 additional attributes and will substitute, the new xxVO is under xxAM data model.
    All works fine with my methods in the seeded RequisitionAM which I get a handle to in the xxCO. But I don;t know how to get the handle to the xxAM if I put my methods there.
    Thanks,
    Anatoliy
    P.S. just fyi - I know it is not the recommended approach but what I did for now I put all calls into the controller - in the controller I can get a handle to root AM, through that I am getting a handle to xxVO which (!) is substituted during runtime with my xxVO. But if you can figure out how to get a handle to xxAM in my case it will be great.
    Edited by: asmirnov on Mar 24, 2009 2:04 PM

  • Why doesn't CreatePDF Desktop Printer work with Win 8.1?

    I purchased this software because I need to convert Microsoft Office documents into PDF for my job. I did not see any prompt informing me that the program was incompatible with my Windows 8.1 OS until after the download was complete and installation began. When I attempt to print to PDF using the Adobe program, it appears to be the process then nothing else happens. No file created to save, no prompts, no error message, nothing! I need to get a refund or have the finds I used to purchase this program applied to the purchase of a PDF Creator program that works with 8.1.

    Looks like the Create PDF forum has been moved to Document Cloud PDF services. You might find that a more useful place to ask questions about that product.

  • Viewing or working with videos in iPhoto

    I downloaded a bunch of pictures and 1 video from my Canon camera and I can't play the video in iPhoto. How do I play it and how do you work with videos?

    Welcome to the Apple Discussions. When you installed Snow Leopard did you select the option to include Quicktime Player 7 in the installation? It would be in the Applications/Utilities folder. If it's not there then do a custom install of SL and select just QT Player 7.
    If it's there then it could be a codec issue as Roddy has already pointed out.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Would a rear view camera work with a garmin nuvi GPS

    If I buy a garmin nuvi with Bluetooth would a Bluetooth rear view car camera work with it.

    Only a few garmin models allow a back up camera to be connected. Check the link below for what garmins have this option.
    https://support.garmin.com/support/searchSupport/c​ase.faces?caseId=%7B22ca4500-2009-11df-d1b4-000000​...
    The Garmin 760LMT is the only one I could find on BestBuy.com that has this options.
    http://www.bestbuy.com/site/Garmin+-+dezl+760LMT+7​%26%2334%3B+GPS+with+Built-In+Bluetooth/7352055.p?​...
    You will also need a cable and a back up camera for it to work.
    https://buy.garmin.com/shop/shop.do?pID=70938

  • Design View not working with skins

    Hey,
    Excuses, I posted this question earlier in the "general
    discussion" topic.
    I'm using Adobe Flex 2. I have a pretty big project. If I
    open it, design view works. If I close Flex and open the same
    project again, design view wont work. There aren't any
    error-messages or warnings given. I have been able to track te
    problem down to graphical skins in a CSS declaration. I have to
    erase them, to make Design View work. Then, I paste the code back
    again. This is very inconvienent. Is this a normal problem,
    inherent to how Flex works. Is there an other, easier way around?
    Thanks in advance!
    Knut Nidelven
    Here is the code that does the damage...:
    .topBar {
    fontFamily: Arial;
    font-style: none;
    fontWeight: normal;
    font-size: 12px;
    upSkin: Embed('assets/button_top_up.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");
    overSkin: Embed('assets/button_top_over.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");
    downSkin: Embed('assets/button_top_selectedUp.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");
    selectedOverSkin: Embed('assets/button_top_selectedUp.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");
    selectedDownSkin: Embed('assets/button_top_selectedUp.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");
    selectedUpSkin: Embed('assets/button_top_selectedUp.png',
    scaleGridLeft="4",scaleGridTop="4",scaleGridRight="12",scaleGridBottom="12");

    VIEW | Style Rendering > Display Styles?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ganda1f" <[email protected]> wrote in
    message
    news:f11lt2$sv9$[email protected]..
    > Hi All,
    >
    > Design view does not render ( just plain text, no
    formating ! ) in CS3.
    > So I
    > loaded the same file in DW8 ( installed on same machine
    ) & it works fine
    > !
    >
    > Anyone have any ideas why ?
    >
    > html doc is lnked via this:
    >
    > regards, Dave P
    >
    >
    > <style type="text/css">
    > <!--
    > @import url("style.css");
    > -->
    > </style>
    >

  • I would like to know is McAfee's SiteAdvisor - a feature I love using in Firefox 3.6 works with Firefox 4 before I upgrade, or another add on that's recommended for secure web browsing.

    I'm thinking of upgrading to Firefox 4 but want to verify that most of my add ons should work before doing so. I'm a big fan of McAfee's SiteAdvisor & how websites are color-coated to let you know the quality of the site. I want to know if it's compatible with Firefox 4 or if not what would be a comparable feature. Thanks!

    You have found the correct place. Just continue asking your questions here in this thread.
    Reading some of the help article may be of assistance in getting started.
    * [[Firefox Hello - video and voice conversations online]]
    * [[Where is the Firefox Hello button?]]
    * [[Join a conversation on Firefox Hello]]
    * [[Which browsers will work with Firefox Hello?]]
    * [[Create and manage your contacts list on Firefox Hello]]

Maybe you are looking for

  • Free goods in Purchase

    Hi, Currently we are trying to map the following business requirement in SAP. Can somebody helps to give me a hint on how to carry out in the system? We are purchasing A product from a specific vendor. And the agreement is that B product will be gran

  • Pages import doesn't show portlets

    hi, we have 3 pages with multiple portlets. portlet contains forms and reports and other components. we exported pages with pageexp utility. when we import it , we cannot get the whole page,instead it shows only the tabs not the content and applicati

  • Apple numeric keyboard itself clicking keys

    Hello! I have got Apple Numeric Keyboard for about 3 years. My problem is, some keys are clicking itself without touching. Most keys clicking are: / \ ; = c v and enter. Keyboard was not flood. Tested on pc and mac. Thanks!

  • Motoprint on my motorola razr maxx smartphone will not print documents on eprint.

    I am able to print from my smart phone by sending a document as an email attachment by wifi to the eprint web page, but Motorola Motoprint will not open a document on my smartphone and send it direct to the printer by my wifi network. My RAZR MAXX ha

  • Los precios están en pesos o dólares?

    Los precios son en pesos o dólares?