Advanced APEX Tips and Techniques (tool tip, VCF), queries...

Hi everyone,
First of all, I would like to thank the community for their help.
I have been working with APEX since a few months (December) ago, since then it has captivated most of my attention, because of what can be done with it…
This time I would like to ask for your advice about some new topics (tool tip and VCF or saving contacts) in regard to APEX, I created a calendar application –works as it meant to be- but now got some question to which I have not yet found an answer, (I have already looked on some online info).
1). Regarding to tool tip: as I mentioned before I have created a calendar application, and on it I am linking the events (specifically on calendar region) on it to some other pages, in the link that leads to the page I have put this:
select '<a title="TGB SCHEDUL" href="f?p=&APP_ID.:5:' || :APP_SESSION || '::::P5_ID: ' || ID || '">' || EVENT_NAME|| '</a>
' EVENT_NAME, START_DATE
from APP_TGB
This script does what it is meant to do link to a specific page. As I understand tool tip, if I want some message I have to place the comments on the title=''#COMMENTS#'' as I am using mozilla, as you can see I have a phrase and I would like to adjust it to every event in particular, I thought in using bind variables, so I look in google about how to create it, found how to... but no where to apply.
2). In concern to the VCF, I saw an example and tried to adjust it to my needs, but apparently I have done something inappropriate.
DECLARE CURSOR member_cur IS
SELECT id, quarter_fy08, kind_of_campaign, event_name, owner, partner, associationcollaboration, location, presales, marketing, chanel_manager, territory_manager, start_date, end_date, list, emailing, telemk, status, source_code_omo, attendees, leads, opps, budget, pipe_estimado, objetives, comments
FROM app_tgb
WHERE id = (
SELECT ' f?p=&APP_ID.:5: '||:APP_SESSION||'::::P5_id: '||id||' '
FROM APP_TGB
BEGIN
htp.init; -- wipe out the buffer
owa_util.MIME_HEADER('text/x-vcard; method=request');
for member_rec in member_cur loop
--Get the member information
htp.print('BEGIN:VCARD');
htp.print('VERSION:3.0');
htp.print('Event Details:');
htp.print('Event ID (consecutive number):' || member_rec.id);
htp.print('Quarter FY:' || member_rec.quarter_fy08 || ';;Event Name:' || member_rec.event_name ||';;Kind of Campaign:' || member_rec.kind_of_campaign);
htp.print('Start date:' || member_rec.start_date ||';;End date:' || member_rec.end_date ||';;Location:' || member_rec.location);
htp.print('Partner:' || member_rec.partner ||';;Association/Collaboration:' || member_rec.associationcollaboration);
htp.print('Owner:' || member_rec.owner ||';;Marketing:' || member_rec.marketing ||';;Presales:' || member_rec.presales);
htp.print('Chanel Manager:' || member_rec.chanel_manager ||';;Territory Manager:' || member_rec.territory_manager);
htp.print('Call for Entries:');
htp.print('List:' || member_rec.list ||';;Emailing:' || member_rec.emailing ||';;Telemk:' || member_rec.telemk);
htp.print('Event status:');
htp.print('Status:' || member_rec.status ||';;Emailing:' || member_rec.emailing ||';;Source Code (OMO):' || member_rec.source_code_omo);
htp.print('Investment & Results:');
htp.print('Attendees:' || member_rec.attendees ||';;Leads:' || member_rec.leads ||';;Opps:' || member_rec.opps);
htp.print('Budget:' || member_rec.Budget ||';;Pipe Estimado:' || member_rec.pipe_estimado ||';;Objetives:' || member_rec.objetives);
htp.print('Comments:');
htp.print('Comments:' || member_rec.comments);
htp.print('REV:20050707T234724');
htp.print('END:VCARD');
end loop;
END;
3). Referring to user groups, I have read on chapter 8, that creating groups I will be able to restrict access to various parts of an application, so I did create them and applied them but once again something happens.
Re: authorization scheme methods/techniques
What I am trying to do with the users, is to restrict their access to specific pages, so for example let's say that I do have these pages.
Start, calendar, insertion, update and report, on the start page I have a link to the insertion page, that I want it to be accessed just by those users who have some privileges (which I understand can be done with groups, to manage who can access to a page and who can not.), and to allow other user to go around to the allowed areas.
I do appreciate any kind of help or guidance.
Best regards,
Jaison José González Chaux

ABOUT VCF IN APEX
Hi everyone,
This time I will like to ask you for some advise in regard to VCF, the picture is this.
VCF in theory is working and on practice is working more or less… I say more or less because of this…
This is a small idea of my application.
I have a test application on APEX that is a calendar to insert data, on the page where I do have the calendar I have some hyperlinks for insertion and for viewing the reports, and on the calendar itself I do have a link for updating the event.
I have assigned the VCF file to the updating page (page that is linked from the calendar) and bring in the values that are meant to be, in theory it should create the VCF file well but it does not.
The only way it does create the VCF file is when I insert a new registry, click insert and then on the status bar of the browser (in my case mozilla firefox) hit the back button, then the VCF file is created as it’s meant to be.
I will appreciate if anyone can give me a hint, a suggestion, anything :)
I will attach the code I use for the VCF file.
declare
cursor user_cur is
select ID, OWNER
from APP_TGB
where ID = :p2_ID;
l_ID number;
l_OWNER varchar2(60);
begin
htp.init; -- Wipe out the buffer
owa_util.MIME_HEADER('text/calendar; method=request');
-- Get the event information
htp.print('BEGIN:VCALENDAR');
htp.print('PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN');
htp.print('VERSION:2.0');
htp.print('METHOD:PUBLISH');
htp.print('BEGIN:VEVENT');
htp.print('ORGANIZER:MAILTO: [email protected]');
htp.print('LOCATION: Application ' || :APP_ID);
htp.print('TRANSP:OPAQUE');
htp.print('SEQUENCE:0');
htp.print('Today is: ' || to_char(sysdate, 'yyyy-mm-dd') || ' ' || to_char(sysdate, 'hh24:mi:ss'));
htp.print('OWNER: (' || nvl(v('P2_OWNER'),l_OWNER) || ') ');
htp.print('PRIORITY:5');
htp.print('CLASS:PUBLIC');
htp.print('BEGIN:VALARM');
htp.print('TRIGGER:PT60M');
htp.print('ACTION:DISPLAY');
htp.print('DESCRIPTION:Reminder for account expiring');
htp.print('END:VALARM');
htp.print('END:VEVENT');
htp.print('END:VCALENDAR');
end;
The distribution of my pages is the following:
1. pag_inicio, the form of referring to it is p1_”any-atribute”… on this page there are the hyperlinks (insertion and report viewing) and the calendar itself.
2. pag_insertion, the form of referring to it is p2_”any-atribute”… on this page there are the insertion fields and a VCF button, create and cancel ones.
3. pag_update, the form of referring to it is p3_”any-atribute”… on this page there are the fields where the information is brought up, and a VCF, update and cancel buttons.
4. pag_report, the form of referring to it is p4_”any-atribute”… on this page you can see the fields in a report format.
5. checking_events, the form of referring to it is p5_”any-atribute”… this page is like the updating one, but with letting the user modify any value, it has a VCF.
6. pag_VCF, where the VCF code is.
I do appreciate your help and guidance.
Best regards,
Jaison J. González Chaux

Similar Messages

  • How can I enlarge the videos in the tips and techniques welcome window?

    I'm trying to view the videos but they are small and it's difficult to follow the narrator's actions.

    I think you are stuck with what you have got for the time being at least.  There are apparently issues with Microsoft that making a similar provision for Windows, to what was done for Apple Retina displays, problematic.  In fact it might not happen at all!  
    That res at 27 inch shouldn't be too bad though.  We have posters here with 14 inch laptops with 3500 pixel wide screens.  Now that would be difficult to use!

  • Lightroom 5 - Advanced Healing Brush and Visualization tool | What's New in Lightroom 5 | Adobe TV

    Discover the new enhancements to Lightroom’s Advanced Healing Brush including the ability to heal and clone non-circular brush spots as well as remove easy-to-miss sensor dust using the new Visualization tool.
    http://adobe.ly/11rZVq5

    Can the removal spots (circular) be resized like they could in LR 4?

  • Tool tips not displaying

    I am running AI CS3 on Windows Vista and my tool tips do not display. I have the option selected in my preferences and have restarted the system after install to see if that helped. No luck. Thanks in advance for any help.

    Is caps lock on? If so, turn it off.

  • How to provide a tool tip in OBIEE?

    hi,
    how to provide tooltip in obiee 10g.
    give me details.

    Find the below are helpful,
    http://obieepractice.blogspot.com/2008/11/column-headerooltip-mouse-over.html
    http://oraclebizint.wordpress.com/2008/03/05/oracle-bi-ee-101332-conditional-drills-and-dynamic-tool-tips-html-formatting-and-go-url/
    http://www.obinotes.com/2010/02/tool-tip-in-obiee-answersdashboard.html
    Thanks,
    Balaa...

  • Tool tip help very easy one i know.

    I know this will be a simple one for everyone, but I have googled the heck out of this and must be googleing the wrong terms or something. How or where in dreamweaver do you put in your tool tips? When people hover over a image or a link and the tool tip pops up. I can't seem to find out where to put this information. And is it very important for SEO?
    Thanks

    You can also add it in the Tag Inspector under Attributes.
    As far as SEO goes, they're not very important due to the ease of "cramming" or filling attributes with keywords that may or may not have anything to do with the actual content of the page. For the same reason, the keywords meta tag is completely ignored by most Search Engines.
    The most important thing in SEO is relevant, keyword rich html text content.

  • HT1526 It seems to be the spotify app in my trash that won't delete. i tried the advanced tip and it deleted everything else but the spotify app. any suggestions?

    It seems to be the spotify app in my trash that won't delete. i tried the advanced tip and it deleted everything else but the spotify app. any suggestions? the progress bar when emptying the trash never changes.

    Not uncommon with spotify.   If you have 'Trashit', that will almost certainly clear it. If not, download it from here.    Download Trash It! for Mac - Force-empty your trash can. MacUpdate.com

  • Making Global Activity Heading Bold and Tool Tip over columns in OBPM10GR3

    Hi all,
    I would like to make my Global Activity Heading in Applications in the workspace BOLD and change the FONT of it.
    I also would like to have a Tool Tip explaining what a column in the view means.
    How can I do these things in OBPM10GR3?

    Thanks for the reply valf - you can see a trial version of the page here http://www.banded.co.uk/festighoul_trial.html
    Notice that there is a large empty black div at the top of the pagewhere flash content should be playing... The tool tip trigger is nearer the bottom of the page (a graphic of a '?')
    Thanks

  • [svn:fx-4.x] 14985: Add support for mirroring for both error tips and tool tips in positionTip ().

    Revision: 14985
    Revision: 14985
    Author:   [email protected]
    Date:     2010-03-24 09:40:24 -0700 (Wed, 24 Mar 2010)
    Log Message:
    Add support for mirroring for both error tips and tool tips in positionTip().  The layoutDirection of the toolTip will be the same as the component it goes with, or LTR, if the component is not ILayoutDirectionElement.
    QE notes:
    Doc notes: None
    Bugs: SDK-25821
    Reviewed By: Jason
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25821
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/framework/src/mx/managers/ToolTipManagerImpl.as
        flex/sdk/branches/4.x/tools/dependencychecker/frameworkSwcExceptionsList.txt

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • J Tool Tips - Strange and Awkward Bug

    Hello Everyone,
    I am having a very strange J Tool Tip bug. Okay first of all, the tool tip that I have created works when it is inside of a single panel for a single label. Basically, what I have is a number of J Labels - each having a unique tool tip. Here is the most basic of my code (notice that I have customized my own Tool Tip to have a yellow background and black foreground):
    currentLabel = new JLabel("LABEL TEST")
                // Extends the JLabel and overrides createToolTip() to return a custom tool tip:
                @Override
                public JToolTip createToolTip()
                    JToolTip toolTip = super.createToolTip();
                    toolTip.setComponent(this);
                    toolTip.setBackground(Color.YELLOW);
                    toolTip.setForeground(Color.BLACK);
                    return toolTip;
            currentLabel.setToolTipText("Testing Tool Tip Message");Okay, so here's the deal. Here's the tricky part. When I have this label nested inside of a Grid Bag Layout Panel, it works perfectly fine. It shows up when the user's mouse hovers over the label.
    Here's my problem. The project that I am working on is actually nested in many complicated panels. This project has about 100 java files, so I am just going to cut it short and let you know which kind of panels it is nested in.
    Starting from the lowest panel:
    1. J Panel (Grid Bag Layout)
    2. J Panel (Box Layout)
    3. J Panel (Border Layout)
    4. J Split Pane (Right Side)
    5. J Panel (Border Layout) (Largest Panel)
    One of the things I noticed is that now when I hover over the labels, a very small microscopic blue dot appears right to the left of the mouse cursor. I seriously think this is the Tool Tip, but for some reason it isn't showing any text. The strange thing is that the tool tip works when panels 2, 3, 4, and 5 are non-existent. If you guys have any ideas or suggestions, please let me know! I'd really appreciate it!
    Thanks,
    Brian

    What I might do is : see if listening for mouseEntered and mouseExited events work on the labels when in their complex arrangement. And make a little tooltip class based on JWindow (perhaps with a JLabel on its contentpane so you can display HTML). I found this approach more reliable. Though one would expect this is what is already implemented, the inbilt behaviour may overcomplicate things resulting in some no-shows. I seem to remember having this problem with tootips on table cell renderers.
    Edited by: kina_tji on Jul 23, 2008 6:33 PM

  • Tool Tip Text and JcomboBox/JList

    Is it possible to attach and display a different Tool Tip message for each item in a combobox or jlist.

    Hi try this code it will work
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.plaf.basic.*;
    public class ToolTipComboBoxExample extends JFrame {
    String[] items = {"Swing", "Applet", "RMI", "JDBC"};
    String[] tooltips = {"Swing ", "Applet", "RMI", "JDBC"};
    public ToolTipComboBoxExample() {
    super("ToolTip ComboBox Example");
    JComboBox combo = new JComboBox(items);
    combo.setRenderer(new MyComboBoxRenderer());
    getContentPane().setLayout(new FlowLayout());
    getContentPane().add(combo);
    class MyComboBoxRenderer extends BasicComboBoxRenderer {
    public Component getListCellRendererComponent( JList list,
    Object value, int index, boolean isSelected, boolean cellHasFocus) {
    if (isSelected) {
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    if (-1 < index) {
    list.setToolTipText(tooltips[index]);
    } else {
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    setFont(list.getFont());
    setText((value == null) ? "" : value.toString());
    return this;
    public static void main (String args[]) {
    ToolTipComboBoxExample frame = new ToolTipComboBoxExample();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
         System.exit(0);
    frame.setSize(300, 200);
    frame.setVisible(true);
    Thanks
    Paddy

  • Pai Chart layout and Tool Tip not refreshing

    Hi All
    We have an application where we displaying data on Pai Chart based on Data-Grid row clicked.
    Its an Polling kind of application, where multiple option are there.
    When a data grid row clicked, in the Pai chart we displaying polling votes in percentage.
    Some question has 2 option and some 4 and out of those few are having votes.
    Ex: Question 1 has 2 option ( A, B ) and both got some votes.
          Question 2 has 3 options ( X,Y,Z ) and only " X " got all the votes.
    So when we clicked on data grid row for Q1 the Pai chart shows all the options ( 2 ) in block dividing manner.
    It has also outward tool tip to show the count and percentage.
    And when we clicked on Q2 which has 3 options but got votes for only 1, the Pai chart shows perfectly with 100% and one circle without divide, but the tool tip of Q1 not cleared. It shows tool tips of Q1 as well as Q2.
    And when adjust the Pai Chart Layout, then only it clears unwanted tool tips, but not automatically.
    For better understanding i have attached the screen shot of the problem. please look into that once.
    So any one who faced similar kind of problem or know the solution then please help me.
    Thanks
    Bijaya Kumar

    Hi Mitalee,
    Would you please check the PAM at https://websmp108.sap-ag.de/~sapidb/012002523100018972812014E
    On page 11 it says 64 bit IE11 is not supported; is your IE11 32 bit or 64 bit?

  • When will Excel Support Tabular Model Table and Column Descriptions via Tool Tip or other display mechanism

    I have noticed that SSMS supports tool tips for the Tabular Model (tables and columns) however Excel 2013 doesn't appear to.   This is a very important feature to our end users.
    Does anyone know when this will be supported?
    Thanks
    M Meyer

    Hi Meyer,
    According to your description, you want to use the tooltip function in Microsoft Excel for the SQL Server Analysis Services Tabular model, right?
    I have tested it on my local environment (Microsoft SQL Server 2012 SP1 and Excel 2013), the result is that the feature is not supported currently. It's hard to say the detail date when this will be supported. If this feature is enabled, Microsoft will announce
    it on the document.
    Besides, if you have any concern about this behavior, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product. Your feedback enables Microsoft to make software and services the best that
    they can be, Microsoft might consider to add this feature in the following release after official confirmation.
    Regards,
    Charlie Liao
    TechNet Community Support

  • All tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS

    all tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS X 10.8.4
    The boxes that the icons were in are still there, but no icons

    Hello jo90733,
    I would recommend reinstalling Mountain Lion to replace the missing/damaged components of these applications. While the process shouldn't affect any data (images, music, etc) you have on the system, it's always a good idea to have a backup in place prior to reinstalling.
    OS X Mountain Lion: Back up your Mac
    http://support.apple.com/kb/PH11371
    OS X Mountain Lion: Reinstall OS X
    http://support.apple.com/kb/PH10763
    Important: You need to be connected to the Internet to reinstall OS X.
    Choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command (⌘) and R keys.
    If you’re not connected to the Internet, choose a network from the Wi-Fi menu (in the top-right corner of the screen).
    Select Reinstall OS X, and then click Continue.
    Follow the onscreen instructions. In the pane where you select a disk, select your current OS X disk (in most cases, it is the only one available).
    To start the installation, click Install.
    Cheers,
    Allen

  • CSS General Tips and Tricks, Please if you can add to this, thanks

    I thought of some general guidelines in CSS and XHTML, please feel free to add some more if you think i missed, thanks in advance !
    No Empty Divs
    Use text-indents in hyperlinks for images and images background so that the  div does not remain empty
    Even if you have a division marker that contains a backgrounds and is  embedding another inner-container (or any other reason), use a  text-indent:-9999px so that it does not appear empty.  This misuse has led to  many misinterpretations by search engines
    Validate your codes on W3C
    Even if there is a warning, there’s always this possibility to wipe it out  and write the right piece of code for it.
    No Ids! Classes & inheritance
    We’re in 2010 now ladies, things have changed and now it’s the new era.  Like  for me, it was quite a bite that day I got those slaps (uhh… let’s call that  e-slaps for the sake of this article) from my boss, who clearly mentioned the  important generic methodologies of using inheritance techniques in everything we  do… And that included CSS my oh my..
    Besides, even if you are using ids, make sure that they are unique and that  they are not being duplicated elsewhere on your page.  That’s the good thing  with the W3C validator: it doesn’t miss those
    Comment your lines of codes
    There are many advantages for this, the major one I’m considering is to help  situate the programmer in line who will be taking your codes elsewhere.  It’s a  form of diplomacy, hence good practice.
    No Styling in your html pages: out!
    It’s better to transfer all the related style, with comments alongside on  your generic style sheet
    Insert Images on web pages only if necessary
    Whenever there is an opportunity not to insert an image as an <img  src>, do it; the best practice is to load it as a background image and if  possible use write any text that’s ever found on the image instead of importing  the image from photoshop or any app you’re using down to tyou
    Anti-aliasing of gif images for better image  quality
    I have this luck of having a chief who knows quite a sleek stuffs in  photoshop and image rendering techniques and that includes gif images.
    Integrators love gifs: light, minimal use of colors.. when they’res no  curves in any way, but what about transparency ?
    There are possibilities to avoid the use of pngs, which are usually heavier  and take quite some time to load.  Sometimes when gifs are being exported, codes  or designers forget the background image on which the gif will be laid onto.   That is why anti-aliasing techniques are very important for keeping the design  intact.
    use overflow: hidden instead of clear:both
    More information can be found on this link:
    http://www.quirksmode.org/css/clearing.html
    To brief a bit, using clear is like ol’ school teaching stuff which was the  fast-driven solution while the overflow:hidden seems to satisfy the major  browsers like MSIE, FFx , Chrome, etc…
    Minimise the use of style sheets
    Avoid using different style sheets for different browsers. Use one generic  style sheet,  unless you have different themes for different pages, but that  depends.   All this creates confusion and that might also mean you are not be  using the right html codes and the right css styles
    To minimise the use of multiple style sheets, use:
    i.e. <!–[if IE  6]><div id=”IE6″><![endif]–>
    Validate your css codes on  http://jigsaw.w3.org
    Jigsaw is the CSS passport for integrators.  I never knew it, but now O I  know !
    It’s the haven.  The hide in our line of business.  It’s what keeps our ego  hmmm strong and heavily proud, the reason why integrators are so needed in the  web business.
    * Squeak *
    Always have this final habit to validate your css in the following  link
    http://jigsaw.w3.org/ to make sure that you are in line with your css  standards.  Even if there are warnings, that would mean you are wrongly  interpreting your css codes or that some styles have been duplicated here and  there.
    Conclusion
    That’s all for now folks.  I think , whenever I’ll have some more time, I’d  probably create a CSS tips and tricks Part 2, cos amending what’s already there  would sound so cheap and it’s not like facebook, uhh Sheran changed that  article, etc..
    It’s good to have some feedbacks and all, well, that’s probably interesting  to know what’s out in the CSS jungle, so jot in some lines, criticise, be blunt  and bold and don’t hesitate to contact me (except ma okes at work, you know who  you are, ladies) for any info ya need
    À La Prochaine !

    use CSS, it will save you time no matter how much DW does things automatically for you
    if you don't know how it's done, ask or view source. css is client side code and can be viewed.
    use divs instead of tables for layouts
    firefox has a great plugin called HTML Validator (http://users.skynet.be/mgueury/mozilla/). you don't have to keep going to the w3c website to validate. when viewing your page within firefox it will validate it and tell you any errors and warnings. saves me a lot of time. it's also great if you're development environment is behind a firewall - you won't have to view source, copy & paste onto w3c validator. they don't have support for html5 yet
    this could be more of style and preference but i use multiple files of css. usually 2 or 3. one is for the layout (layout.css), one is for forms (form.css) and one for display data. anything more can become more work when it's time to make any changes, especially with multiple people working on the same project
    create a standard workflow. naming conventions for file names, class names, etc.
    i'm not sure you can get away from those IE specific css. i've tried a campaign at work to not support IE so that we become fully compliant with the web but unfortunately, IE still has a lot of users. what we've done is support IE but the latest versions only. M$ is at least getting better with being compatible.
    view the page in firefox and IE. if they work, then you should be fine with the other browsers. as a developer, it's my responsibility to ensure that any user whether mac or pc can view the website - as long as they are running the "latest" version of the browser. latest as in what the software developer still supports.
    well that's my tips, tricks and a little pet peeve here and there

Maybe you are looking for

  • Airport Extreme/Time Capsule backup volume could not be found?

    I am having problem with Time Machine. When I try to backup using Time Machine, I get an error message, " The backup volume could not be found." Strangely, Time Machine recognized the drive when setting the Time Machine preferences, but not when I ba

  • Why can't I redeem a gift app?

    Received email from Apple because my boyfriend gifted me Robot Unicorn Attack. I clicked the redeem button and Apple.com sight pops up saying I need to download Itunes 10.6, I did that and it keeps popping up with the same message. How do I accept my

  • ESSO Error with IE 9 Compatibility Mode

    Can anyone help? We are implementing eSSO with OIM 11.1.2.. When testing the system, we receive an error that Compatibility Mode should be turned off. We can turn off Compatibility mode and the user can access the site fine while they are logged in.

  • Killing a oracle session

    Hi, I run a oracle query which has gone to deadlock.now i want to kill that session because it's happening frequently.How can i kill my own oracle process without needed DBA privs. Regards Anand

  • Been testing with my new Vista 64 install here's what I found

    Some one correct if I'm wrong but I've been doign alot of testing since adding Vista 64 to my computer. There's been alot of speculation about Vista 64 and possible benefits to premiere. From what I can tell there are none. Besides Photoshop being 64