Filtering users based on return of past query

Greetings!
We have a Users table with over 3 million user records in it (like a data warehouse). The requirement is to execute 2 queries on the Users table, where the return of the second query should not have any users that were returned in the first query.
For e.g. Consider a sweepstake user-list, where you want to send flyers to people, notifying them about prizes, but do not want to send two flyers to the same person, even if he fulfills the selection criteria for both the sweepstakes.
So -
Query.1. has conditions, which state: All Users from New York, with age=25 (independently run, returns 500,000 users)
Query.2. has conditions, which state: All Users of age=25 (independently run, returns 700,000 users)
Expected Output:
Query 1 should return 500,000
Query 2 should return 700,000 MINUS those users that were already returned in Query 1. i.e. Only return all users of age 25, but who are not from New York
Any inputs will be much appreciated!
Thanks,

Given that you know that the first query uses state = NY and age = 25, why can't you do the second query as:
SELECT * FROM table
WHERE age = 25 and
      state <> 'NY'John

Similar Messages

  • IronPort, user based filtering with MS terminal / Citrix?

    Hi there,
    Can someone tell me if the IronPort can handle user based filtering on MS terminalserver / Citrix (multi-user server) with AD-integration?
    Thanks a lot.
    Greets,
    Norbert

    If you're using transparent redirection on the Citrix boxes you can use
         Use Cookie Surrogates
         Turn on the "Virtual IP" feature in Citrix. (which really means Citrix is dealing with the problem, not the WSA)
    The issue with cookie surrogates is that https traffic appears to be unauthenticated to the WSA and some applications can't deal with them. (check the help file on the box under "Understanding How Authentication Affects HTTPS and FTP over HTTP Requests")
    How are you doing the redirection?  If you're using explicit redirection, you can turn off surrogates for an identity and it does authentication that is session based...
    The simplest would be Virtual IP on Citrix, since that looks the most like a regular workstation to a WSA...

  • How to do data level security on users based on region

    Hello guys
    I currently have created a report with dashboard prompt on column "state" with a default value "CA"
    Now, the requirement is to perform data level security on this report, so different users based out of different state will log in to the dashboard and this prompt will change its default value accordingly so the user will have the report on only users home state prompted, and users can't see other state data..
    I have thought of creating session variables to achieve the same, but how should i set up the initialization string?
    Do I need to create a new table called "user table" that stores username/password and state columns and make that user table join to the fact table in the db?
    If so, how should I configure the session value so that users get filtered date based on its state location?
    PLease provide guidance
    Thanks

    Here’s an idea off the top of my head (untested):
    First, set up your security constraints normally using Manage…Security in the Administration Tool, so that each user can only see his/her state. Refer to the previous responses to this post for guidelines.
    Then, in your dashboard prompt, for the “Default Value”, write a tiny bit of logical SQL to query the “state” column from the presentation layer. If your security constraints are properly in place, the SQL should only return one value.
    To get an idea of what the logical SQL should look like, select “All Values” as the default value, then switch it to ‘SQL Results’. That will show you the basic format of the logical SQL. It’s really just normal SQL (select <this> from <that> where <the other>), but referring to presentation layer objects rather than to physical tables and columns.
    Untested. Please reply back and let us know how it goes.

  • WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER

    Dear Sir,
    please any one can answer me as soon as possible its very urgent
    WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER
    I     As oracle mapviewer Chapter 8 (Oracle Maps) says generating our own Web based mapping application we are trying to generate our own maps for our own data contains in our layers like example boundary lines and roads and etc. and we are following complete example as described in Oracle Mapviewer Document Chapter 8.
    Before this step we tried with demo data downloaded from OTN mvdemo. And we downloaded latest demo today itself from the OTN and imported into our database schema called mvdemo. And we copied all three jar files mvclient and mvconnection and mvpalette into our jdeveloper .
    II.     We created a jsp to execute the following code from oracle mapviewer chapter 8 documents
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/customizable" prefix="cust"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jwcache.tld"
    prefix="jwcache"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/fileaccess.tld"
    prefix="fileaccess"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jesitaglib.tld"
    prefix="JESI"%>
    <f:view>
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html" charset=UTF-8>
    <TITLE>A sample Oracle Maps Application</TITLE>
    <script language="Javascript" src="jslib/loadscript.js"></script>
    <script language=javascript>
    var themebasedfoi=null
    function on_load_mapview()
    var baseURL = " http://localhost:8888/mapviewer/omserver";
    // Create an MVMapView instance to display the map
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    // Add a base map layer as background
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    // Add a theme-based FOI layer to display customers on the map
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','mvdemo.customers');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    // Set the initial map center and zoom level
    mapview.setCenter(MVSdoGeometry.createPoint(-122.45,37.7706,8307));
    mapview.setZoomLevel(4);
    // Add a navigation panel on the right side of the map
    mapview.addNavigationPanel('east');
    // Add a scale bar
    mapview.addScaleBar();
    // Display the map.
    mapview.display();
    function setLayerVisible(checkBox){
    // Show the theme-based FOI layer if the check box is checked and
    // hide the theme-based FOI layer otherwise.
    if(checkBox.checked)
    themebasedfoi.setVisible(true) ;
    else
    themebasedfoi.setVisible(false);
    </script>
    </head>
    <body onload= javascript:on_load_mapview() >
    <h2> A sample Oracle Maps Application</h2>
    <INPUT TYPE="checkbox" onclick="setLayerVisible(this)" checked/>Show customers
    <div id="map" style="width: 600px; height: 500px"></div>
    </body>
    </html>
    </f:view>
    <!--
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>mapPage</title>
    </head>
    <body><h:form binding="#{backing_mapPage.form1}" id="form1"></h:form></body>
    </html>
    -->
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_mapPage--%>
    III.     When we run this jsp it’s giving us following Two errors
    1     Error:     ‘MVMapView’ is undefined
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    2     Error:     ‘themebasedfoi’ is null or not an object
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    Please let us know what could be problem as soon as possible. Very urgent
    Please let us know where we can find Mapviewer AJAX API’s for Jdeveloper Extention
    Thanks
    Kabeer

    I currently use parameters, and they are passed from the form to the report. Report is then generated based on a function returning ‘strongly typed’ cursor. The ‘strongly typed’ cursor in my case returns a record consisting of an orderly collection of fields.
    This collection of fields is returned by another function that relies on the IF … THEN logic.
    However, the number of IF ... THEN statements is quite large (currently 64 covering all possible combinations of 6 parameters available in the form).
    I would like to avoid the large number of IF … THEN statements, and hope that there is a way of passing a string to a query, where the Dynamic SQL would in Select close and Where close reflect parameters passed by the form.
    In addition to this I would like to avoid creating and populating a table or a view dedicated to the report, because this may lead to a conflict in case of multiple users concurrently generating reports with different choice of parameters.
    Edited by: user6883574 on May 28, 2009 9:16 PM

  • User based uninstall collections - Dynamic

    Hi Guys,
    I have been looking for sometime at how User based uninstalls are done and I see that mostly people do an Exclude on the collection and deploy an uninstall to basically everyone who DOESNT have the application deployed to them. The issue with this is
    if you have a high number of apps (500 lets say) you deploy 400 either uninstall or install deployments to everyone which dramatically slows down deployment of apps on new machines etc.
    With APP-V the queries are fairly straight forward and we have dynamically changing uninstall collections that only show users that have the app for them in a compliant state on a workstation in the estate, when they are fully unpublished they drop
    out of the collection based on compliance state.
    I am trying to achieve the same method for uninstall collections where physical installs are used. Unfortunately there isn't a class like the APP-V AppClientState for Physical apps, or from what I can see at least and just wanted to see if anyone had
    achieved uninstall collection for physical apps in a more dynamic way than doing Include/Exclude on the collections which I see as very static and uneconomical.
    Many thanks,
    Adam

    Hi Hican, Torsten,
    Thanks both for your replies. below is the query i have used. I'll just be clear that this may not suit a lot of environments because of users moving around etc.
    select SMS_R_USER.ResourceID,SMS_R_USER.ResourceType,SMS_R_USER.Name,SMS_R_USER.UniqueUserName,SMS_R_USER.WindowsNTDomain from SMS_R_User where uniqueusername in (select distinct SMS_G_System_SYSTEM_CONSOLE_USAGE.TopConsoleUser from SMS_G_System_ADD_REMOVE_PROGRAMS INNER JOIN SMS_G_System_SYSTEM_CONSOLE_USAGE ON SMS_G_System_SYSTEM_CONSOLE_USAGE.ResourceID=SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID WHERE SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = '<ARP DISPLAYNAME>' and TopConsoleUser not in (Select SMSID From SMS_CM_RES_COLL_XXXXXXX))
    This query basically finds all workstations with a specific Display name in ARP, it then looks at the topconsoleuser in the SystemConsoleUsage class for that workstation. The User resource is then pulled back based on that username and the uninstall is deployed
    to the user alongside the install.
    When the machine tied to that user no longer has that software installed the user drops out of the collection. I have these collections scheduled to do an update overnight at random intervals.
    You will note at the end i use a "NOT IN" clause so i can exlude specific accounts from being included in the uninstall collections. The reason for this is we have a couple of service accounts that gets used heavily in various places
    and end up getting registered as the top consoleuser in some instances. This is put in as a safeguard.
    the only bits in the query that change is the <DisplayName> section which is what gets added in ARP.
    SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = '<ARP DISPLAYNAME>'
    Again you need to be careful here as a program may have the same displayname as another if it hasnt been versioned correctly. in this case it may be better to use another attribute such and Product GUID.
    Lastly if you choose to have an exclude collection like myself the collection Class will also need amending:
    and TopConsoleUser not in (Select SMSID From SMS_CM_RES_COLL_XXXXXXX)
    Somone may say there is an issue with doing it this way. obviously if users roam a lot you could end up stripping software off peoples machines which is why i say it may not suit some environments but this goes quite well where we are.
    Some users may also not show if they are not yet registered as the TopConsoleUser of their workstation yet as this is a 3 month calculation (if i remember rightly). If this is being put in with a new not yet deployed app it looks clean from a returned list
    of users standpoint, if however you have an estate where applications have never been unstalled and workstations have changed hands, initially you will see a lot of users in the uninstall collections which werent in the install. These applications will uninstall
    for them and they will drop out of the collections.
    Hican, like i said adding the software metering part in to the above query could prove even more economical as the uninstall deployment wouldn't actually be deployed if the software was active. If i get a chance i will look at this.
    Hopefully the above makes sense, obviously this is just my take on how to do some uninstall collections and if somone decides to try it they are doing so at their own risk. retrofitting uninstalls is painful and risky.
    Thanks,
    Adam

  • WLCS 3.5 on WebLogic 6.0 - Getting users based on a property

    Hello all,
    I am developing a web application atop WebLogic Commerce Server 3.5 and
    WebLogic 6.0. One of the features of the application shows users based on a
    property in the profile. For example, the profile has a property called
    "State", and the list would show all users from California.
    My questions are:
    1. Is there a way to get a list of usernames based on a property in a
    property set?
    2. Has anyone solved a similar problem? If so, how?
    Currently I can only see two options for solving this problem:
    1. Through the UserManager I can use:
    com.beasys.commerce.axiom.contact.UserManager
    getUserNamesForGroup(java.lang.String groupName, java.lang.String
    searchExpression, int limit)
    This would give me a list of users in the group. I would then have to
    iterate through each profile and check the property. This approach seems
    like it would be expensive and consume a lot of system resources.
    2. Alternatively, I could develop a data access object to query the database
    and return a result set of usernames. This approach seems like a better
    solution; however, if there is a way to accomplish what I need through the
    WLCS API I would prefer to use the API (I don't want to re-invent the
    wheel).
    Any assistance you can offer is much appreciated.
    Thanks,
    Erik

    Eric,
    There is no way of doing this through the API that I am aware of. We are
    actually considering adding this feature for 8.0.
    Sincerely,
    Daniel Selman
    "Erik Pilz" <[email protected]> wrote in message
    news:[email protected]..
    Hello all,
    I am developing a web application atop WebLogic Commerce Server 3.5 and
    WebLogic 6.0. One of the features of the application shows users based ona
    property in the profile. For example, the profile has a property called
    "State", and the list would show all users from California.
    My questions are:
    1. Is there a way to get a list of usernames based on a property in a
    property set?
    2. Has anyone solved a similar problem? If so, how?
    Currently I can only see two options for solving this problem:
    1. Through the UserManager I can use:
    com.beasys.commerce.axiom.contact.UserManager
    getUserNamesForGroup(java.lang.String groupName, java.lang.String
    searchExpression, int limit)
    This would give me a list of users in the group. I would then have to
    iterate through each profile and check the property. This approach seems
    like it would be expensive and consume a lot of system resources.
    2. Alternatively, I could develop a data access object to query thedatabase
    and return a result set of usernames. This approach seems like a better
    solution; however, if there is a way to accomplish what I need through the
    WLCS API I would prefer to use the API (I don't want to re-invent the
    wheel).
    Any assistance you can offer is much appreciated.
    Thanks,
    Erik

  • Multiple Mac Mail Users Getting Wrong Return Addresses

    Hello,
    Having an odd problem with Mac Mail. We just switched to Gmail and it's been working fine for about two weeks until this. I have a computer with 4 users using Mac Mail. It's been that way for about 4 years now. What happens is this...
    When one of the users sends out an email, somewhere along the line the return address is getting changed to another user of that computer. So for example: Joe Brown ([email protected]) is what his email address SHOULD look like in the return address. But for some reason it is this: Joe Brown ([email protected]) Whenever someone replies to Joe's email, it gets sent to Steve's mailbox instead due to the wrong email address.
    Things I've tried.
    1. Rebuilt the mailboxes
    2. Deleted all the accounts and started over
    3. Repaired Permissions
    4. Made sure there's enough space on the computer (In the past, odd problems have crept up because there wasn't enough disk space.
    At first it seems to be fixed but eventually it all starts over again...
    HEEEEELP!!
    Thank you - Randy

    Randy,
    Is it always the same user in the return address ?
    And can we assume that whatever email address is involved it ends up with a return address at gmail.com or googlemail.com (or other GMail variant) ?
    could be the smtp login used for all the mail has been set to an address on gmail. I don't use OSX Mail, but I use this feature in Entourage, I can send mail from any of my email addresses - some by different ISPs who would normally require me to dial in to their network to send mail, Gmail allows me to use their SMTP server to send mail from my other ISP mail account.
    A consequence of this is that any replies come back to my gmail (googlemail.com in my case) account.
    This doesn't happen by default, I needed to set some preferences on gmail, key a few passwords, etc. Can't check your gmail settings, but start by checking the SMTP server, and login, used for each user sending mail.

  • Multiple Line item proposal in SAP based on return reason for Material Serv

    Hi,
    I have a requirement in which the customer returns the faulty material for repair, the company does the inspection of the material and sends the faulty material to the External vendors for Repairing.
    External Vendor after repairing sends the material back to the company, which is then returned back to the customer.
    I want to understand , is it possible in SAP to have a sales document created with different line items (One for the material returned from the customer, one for the Material to be send to the external vendor for repairing , and one for the material to be returned back to customer after repairing)
    Is it possible to have this proposal automatically based on return reason in SAP ?
    Kindly Advise.
    Regards,
    Harsh

    Hi Harsh,
    I think you are trying to amalgamate 3 processes which is quite ambitious by all means :). However in my past experience we have been able to track these articles but playing around using the standards. Customer return was a process through which an article was brought in a seperate storage location for repair and was sent out for repair using sub contracting process, after repair it was again sent out to the customer with the sales process. Of course there were quite a few physical processes that were needed to support this. We started to think but than refrained ourselves from using batches and serial numbers for this.
    Regards
    Kaizad

  • How to count no of records returned from a query?

    Hello,
    I need to find out how many records displayed from a query without writing any other queries.
    i mean that.
    I have a query such as:
    query = "select * from users";
    and the resultset for it is rs.
    and i need to display how many records fetched from this query without using any other query such as "select count(user_id) from users" etc.
    Is there any function ?

    No, unfortunately there is no method or property that will tell you how many rows have been returned by a query.
    People use many different techniques.
    1.The simplest would be, keep incrementing a counter in while ( rs.next() ) and at the end you'll have the count. But only at the end, after the loop.
    2. Run another query with count(*) just to fetch the count.
    3. Run the same query twice, once for counting and then again for printing out. Very dumb idea though, might as well do 2. suggested above.
    4. If you have a scrollable resultset, you could go to the lastRecord and then getRow number and hence know how many there are and then rewind the resultset. I don't know how advisable using scrollable resultsets is.
    5. Create a slightly clumsy query like : select count(*) as "totalcount", emp_id, emp_name, emp_email, emp_phone from employees group by emp_id, emp_name, emp_email, emp_phone. You'll need to use the group by clause since count() is an aggregate function and you can't mix aggregate functions and columns unless you add the group by to all the columns you're fetching.

  • User based deployment not working

    Looking to make app available to user IDs.
    I have the user IDs into a user collection and making package available to collection.  Content is on the distribution points.
    It isn't showing up on client.  Package is set to be available, so I'm not getting an return code automatically.
    It isn't required so there is no package ID or deployment ID to search for.
    Where do I start looking?
    Also, this is my first use of user based collections, so is there anything I need to enable.

    Here's a post to reinforce Torsten's answer and provide additional detail:
    http://blogs.technet.com/b/configmgrteam/archive/2012/03/31/introducing-the-application-catalog-and-software-center-in-system-center-2012-configuration-manager.aspx
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Expire OIM User based on End Date

    This is a query on expiring an OIM User based on end date.
    Does OIM need any configuration for it to expire the user based upon end date?
    The start date seems to work well as expected but the end date doesn't.
    Even after the end date has arrived the OIM User is not being expired.He is still able
    to login into OIM without any issues.
    Thank you

    Theres a scheduler task that has to be run to check the date and deactivate the users.

  • Deny user based policy for a specific computer

    I have a user based policy that deploys software for specific users when they log in to their Windows 7 workstations.  
    Some of these same users also have login access to a test server.  I am trying to prevent the software deployment policies from being processed when users login to this test server.  I have denied the 'read' and the 'Apply group Policy' security settings
    to the test computer, but since it is a user based policy I believe these computer level denies are being ignored.  
    I have looked into loopback processing but I cannot grasp how it would fit in to my environment.     Do I enable the loopback processing in the same policy that deploys the software?  
    Any suggestions?

    Use loopback merge in the policy of the software that I want to keep?  Or in the Policy I want to deny?
    I finally got it to work.
    I moved the computer object to a new OU and blocked inheritance.<o:p></o:p>
    I created a new policy that only has Loopback Policy enabled (replace).
     I linked that new policy to the OU that has the test server.<o:p></o:p>
    I removed any loopback processing settings from any other policies. I left them at 'Not Configured'.<o:p></o:p>
    For the software I was trying to block I modified its security permission to read DENY for the computer object (Computer Name) of the test computer
    .  ('Apply group policy' was left blank).<o:p></o:p>
    I then linked all other software deploy policies to this new OU and modified the security filtering from authenticated users to whichever users specifically
    needed the software.<o:p></o:p>
    Ran Gpresult /R /scope computer and verified that the only computer policy the server was receiving was my loopback policy<o:p></o:p>
    Reboot test server.
    <o:p>Thanks everybody for your help!</o:p>

  • FM to assign role to the user based on HRPOSITION

    Hi All,
    I have a query. I am working on security based product where in our current functionality role is assigned to user based on position.
    EX:
    Current Scenario:
    role1, role2, role3, role4 are assign to position P1.
    and that position P1 is assign to USER so USER is able to have those roles.
    Now, Required functionality is:
    Every position has one HRPOSITION maintained in our product. so now all roles should assign to user based on HRPOSITION.
    My colleague is saying, To achieve this, we have a BAPI. I got some word as hint for that BAPI which is : HR*INITIAL*DATA*. It can be in any combination.
    I tried to find in se37, even did goggling but couldn't succeed.
    This is what I got as requirement. May be, I am not understanding the requirement or understanding but not able to get the desire output.
    Please help. Thanks in advance

    Hi Somu,
    Have a look at the below FM which is  used to submit position based request.
    GRAC_IDM_ORG_ASSG_REQ_SERVICES (Organisation assignment request service)
    Thanks
    KH

  • OIM - Email notification to a specific user based on a dynamic rule

    Hello, After creation of account in a particular target resource I need to send an email to a specific user based on the location of the user (e.g area admin).
    In the notification tab of process tasks, I see only "Assignee", "Requestor", "User", "User Manager"? How can I achive the above specified requirement?
    Before posting this question, I tried to search the forum for any previous posts related to this. But I couldn't find any. May be I was not searching with right key words.
    Any help is appreciated. Thanks in advance.

    You'll need to custom code an adapter to send the email, then you can send to any user you want. Create a new task and trigger it off the completion response code. You can use the following apis:
    tcEmailNotificationUtil sendMail = new tcEmailNotificationUtil(ioDatabase);
    sendMail.setBody("Type your body here or use a string variable");
    sendMail.setSubject("Type your subject here or use a string variable");
    sendMail.setFromAddress("[email protected]");
    sendMail.sendEmail("[email protected]");
    Just populate the above pieces with the information needed.
    -Kevin

  • How to get number of rows return in SELECT query

    i'm very new in java, i have a question:
    - How to get number of rows return in SELECT query?
    (i use SQL Server 2000 Driver for JDBC and everything are done, i only want to know problems above)
    Thanks.

    make the result set scroll insensitve, do rs.last(), get the row num, and call rs.beforeFirst(), then you can process the result set like you currently do.
             String sql = "select * from testing";
             PreparedStatement ps =
              con.prepareStatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
             ResultSet rs = ps.executeQuery();
             rs.last();
             System.out.println("Row count = " + rs.getRow());
             rs.beforeFirst();~Tim
    NOTE: Ugly, but does the trick.

Maybe you are looking for

  • How can I print only 'even' or 'odd' pages in Pages version 5.1?

    Hi, Sorry but I was not able to see it in the detailed Print menu. Does anybody know the solution? Thanks

  • Creation of vendor based on the title

    while creation vendor master record the system is asking title (Individual,company) if iam select individual  vendor name,address........., Afterthat j1id we will give the vendor pan numer, ECC Number so and so If i given vendor name this vendor is b

  • Problem in Performing PGI

    Hi all, I created a Standard sales Order, Then 2 deliveries according to 2 different shipping points (with reference to sales order created). Then successfully created 2 Trasfer Orders. But when I try to do PGI, It shows ERROR that  'PGI not possible

  • Crash on the account screen after an upgrade

    Hi experts. We have made recently an upgrade from CRM 5.2 to 6.0 and we have some errors. For example, we can't no longer access the Individual account creation screen, 3 exceptions are raised. Cannot display view MainWindow An exception has occurred

  • Application Error Nokia 6500 Slide

    Hi hope someone can help, whenever i open some games on phone, it opens ok until its ready to start and then i get an 'application error'...... details 'out of memory.......' etc etc, theres plenty of memory, something simple i know but... please hel