Groovy in Java bean code

Hello

I want to use an expression goovy in my Java bean. adf.context.securityContext.getUserName)

Can anyone help how can use it in my grain of java. I use that way, but he's back just a string instead of the current user.

String currentUserName = "${adf.context.securityContext.getUserName ()};  Thank you

Why you did not say that from the beginning. Try this code

public String getBpmUserName()
  {
    FacesContext context = FacesContext.getCurrentInstance();
    String ctx = (String) context.getApplication().evaluateExpressionGet(context, "#{pageFlowScope.bpmWorklistContext}", String.class);
IWorkflowServiceClient workflowSvcClient = ADFWorklistBeanUtil.getWorkflowServiceClient();
    ITaskQueryService wfQueryService = workflowSvcClient.getTaskQueryService();
    IWorkflowContext wfContext;
    String userName = "";
    try
    {
      wfContext = wfQueryService.getWorkflowContext(ctx);
      userName = wfContext.getUser();
      System.out.println("userName= " + userName);
    }
    catch (WorkflowException e)
    {
e.printStackTrace();
    }
    return userName;
  }

Tags: Java

Similar Questions

  • Complex "validation rule" using Java Bean code

    Hello

    I've never used with jdeveloper validation rules, but I need a complex validation rule to a column of my table.

    Can I put a 'validation rule' on an attribute of an object of display or on a column in a table, using the Bean code?

    My column must contain different values depending on the other columns in the table, so I think I can't do this without java code...

    I tried to doubleClick on column to create a validator, but I put a 'printing' inside and saw that running many times, but I want to run validation only when the value of the column change!

    How can I do this? What should I use?

    Kind regards
    Trigger

    Trigger,

    If you want to validate an attribute that is dependent on another attribute - you must upgrade the VO (or EO), not at the level of the attribute. You can write a validator method (which is a Java method) to achieve this. I don't think that nini will work for postings that depend on several attributes.

    John

  • Read configuration data source AM from Java Bean code

    Hi experts,


    I use Jdev 12.1.3 and I need to read the name of AM Datasource from Java Code, to get a text like "jdbc/nomsourcededonnees.


    Is this possible?

    Thank you very much
    Jose.

    This object has methods getURL(), getUser() and others.

    But there is no method as getDataSourceName()

    (AFAIK, jdbc connection "knows" nothing about the Data Source)

    You can try something like this inside your AppModuleImpl class:

    this.getSession () .getEnvironment () .get (Configuration.JDBC_DS_NAME)

    Dario

  • The bean code is not activate when-custom-point-event trigger

    I wrote a java bean to read card reader Omnikey.  It works - almost.  When-custom-point-event is not fired.  Get the key of the reader in the java console, but then follows an exception.  The exeption complains, I believe, m_handler null variable in dispatchMessage() call which is what should be pulled when-custom-point-event in the form. I'm missing something minor and that everything works.  See Oracle Forms java console ATR key followed then path exception at the bottom of this post.  I have to FBean.Enable_Event.  What would be the name of the event listener?   I got the kifani of this example code: https://community.oracle.com/thread/68004------ this example isn't mention or implement a listener.  I just need to return the key and place it in a named text field: test.atr.

    a time new form instance

    FBean.Register_Bean('TEST.) CARD_READER_BEAN_AREA', 1, 'CardReader.CardReaderWrapper');

    FBean.set_logging_mode('TEST.) CARD_READER_BEAN_AREA', 1, FBEAN. LOG_ALL);

    button with when button pressed

    fbean. Invoke('TEST.) CARD_READER_BEAN_AREA', 1, 'main');

    When-custom-point-event

    DECLARE
    eventName varchar2 (30): =: system.custom_item_event;
    eventValues ParamList;
    number of eventValueType;
    tempString varchar2 (100);
    BEGIN
    IF (eventName = "CARDINFO_EVENT") THEN
    eventValues: = get_parameter_list(:system.custom_item_event_parameters);
    get_parameter_attr (eventValues, 'CARDINFO_DATA', eventValueType tempString);
    END IF;

    - Then do something with tempString...
    -for example
    -message ("payload has been: ' |") tempString);
    : test. ATR: = tempString;
    END;

    Java Bean code...

    package, card reader;

    import java.util.List;

    Javax.smartcardio import. *;

    Import oracle.forms.ui.VBean;
    Import oracle.forms.properties.ID;
    Import oracle.forms.handler.IHandler;
    Import oracle.forms.ui.CustomEvent;

    SerializableAttribute public class CardReaderWrapper extends kifani {
    Property registered under the name of the custom event
    Call it what you want...
    public static String strOut = null; used in part of the code ATR

    public static final ID CARDINFO_EVENT = ID.registerProperty ("CARDINFO_EVENT");

    Property to set the name of the parameter that contains the payload
    the event - for example your data
    public static final ID CARDINFO_DATA = ID.registerProperty ("CARDINFO_DATA");

    A reference to the Forms Manager associated with this component.
    It is used to send custom form events
    private IHandler m_handler = null;

    /**
    * Method of the oracle.forms.ui.IView class and substitute of the kifani
    * base class.  This life cycle method is called one time what forms creates a
    the instance of the JavaBean.
    *
    < B > @param Manager < /b > a reference to the handler for the JavaBean class.
    */
    {} public void init (Manager IHandler)
    Manager = m_handler;
    Super.init (Handler);
    }

    /**
    * Function to dispatch an event and the data payload
    * Return to forms
    * In this case, we use the pre-defined event and the IDs payload
    *
    @param payload < b > < /b > to return to the event data.
    */
    Private Sub dispatchMessage (String payload) {}
    try {}
    The CustomEvent = new CustomEvent (m_handler, CARDINFO_EVENT);
    m_handler. SetProperty (CARDINFO_DATA, payload);
    super.dispatchCustomEvent (this);
    } catch (Exception e) {}
    e.printStackTrace ();
    }
    }


    the rest of your bean code follows
    and calls the dispatchMethod() method, which precedes
    to contact forms

    Public Shared Sub main (String [] args) {}

    CRW CardReaderWrapper = new CardReaderWrapper();
    Plant of TerminalFactory = TerminalFactory.getDefault ();

    CardTerminals cardTerminals = factory.terminals ();
    The list < CardTerminal > cardTerminalList;

    try {}

    cardTerminalList = cardTerminals.list ();

    for (CardTerminal cardTerminal: cardTerminalList) {}

    If (cardTerminal.isCardPresent ()) {}
    Card card;

    try {}

    map = cardTerminal.connect ("T = 0");

    card.beginExclusive ();
    } catch (CardException e) {}
    strOut = ("8"); This card but with card error
    System.out.println (strOut);
    crw.dispatchMessage (strOut);
    continue;
    }
    ATR atr = card.getATR ();

    Byte [] atrBytes = atr.getBytes ();
    System.out.println ("0" + javax.xml.bind.DatatypeConverter.printHexBinary (atrBytes));
    strOut = '0' + javax.xml.bind.DatatypeConverter.printHexBinary (atrBytes);
    card.endExclusive ();
    Card.Disconnect (true);

    crw.dispatchMessage (strOut);
    }

    }

    } catch (CardException e) {}
    System.out.println("7"); no card reader not connected? ») ;
    crw.dispatchMessage("7");

    }
    If (strOut == null) {}
    System.out.println("9");
    crw.dispatchMessage("9");
    }
    }


    }

    Key to Java Console ATR with the Exception

    0 3B0500026E05BA

    java.lang.IllegalArgumentException: null source

    to impossible. < init >(Unknown Source)

    to oracle.forms.ui.CustomEvent. < init >(Unknown Source)

    at CardReader.CardReaderWrapper.dispatchMessage (CardReaderWrapper.java:48)

    at CardReader.CardReaderWrapper.main (CardReaderWrapper.java:97)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at oracle.forms.beans.MethodHelperPM.invokeMethod (unknown Source)

    at oracle.forms.beans.MethodPM.setProperty (unknown Source)

    at oracle.forms.ui.VBean.setBeanProperty (unknown Source)

    at oracle.forms.ui.VBean.setProperty (unknown Source)

    at oracle.forms.handler.ComponentItem.setCustomProperty (unknown Source)

    at oracle.forms.handler.ComponentItem.onUpdate (unknown Source)

    at oracle.forms.handler.JavaContainer.onUpdate (unknown Source)

    at oracle.forms.handler.UICommon.onUpdate (unknown Source)

    at oracle.forms.engine.Runform.onUpdateHandler (unknown Source)

    at oracle.forms.engine.Runform.processMessage (unknown Source)

    at oracle.forms.engine.Runform.processSet (unknown Source)

    at oracle.forms.engine.Runform.onMessageReal (unknown Source)

    at oracle.forms.engine.Runform.onMessage (unknown Source)

    at oracle.forms.engine.Runform.processEventEnd (unknown Source)

    at oracle.ewt.lwAWT.LWComponent.redispatchEvent (unknown Source)

    at oracle.ewt.lwAWT.LWComponent.processEvent (unknown Source)

    at java.awt.Component.dispatchEventImpl (unknown Source)

    at java.awt.Container.dispatchEventImpl (unknown Source)

    at java.awt.Component.dispatchEvent (unknown Source)

    at java.awt.LightweightDispatcher.retargetMouseEvent (unknown Source)

    at java.awt.LightweightDispatcher.processMouseEvent (unknown Source)

    at java.awt.LightweightDispatcher.dispatchEvent (unknown Source)

    at java.awt.Container.dispatchEventImpl (unknown Source)

    at java.awt.Window.dispatchEventImpl (unknown Source)

    at java.awt.Component.dispatchEvent (unknown Source)

    at java.awt.EventQueue.dispatchEventImpl (unknown Source)

    at java.awt.EventQueue.access$ 500 (unknown Source)

    in java.awt.EventQueue$ 3.run (unknown Source)

    in java.awt.EventQueue$ 3.run (unknown Source)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.ProtectionDomain$ JavaSecurityAccessImpl.doIntersectionPrivilege (unknown Source)

    in java.security.ProtectionDomain$ JavaSecurityAccessImpl.doIntersectionPrivilege (unknown Source)

    in java.awt.EventQueue$ 4.run (unknown Source)

    in java.awt.EventQueue$ 4.run (unknown Source)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.ProtectionDomain$ JavaSecurityAccessImpl.doIntersectionPrivilege (unknown Source)

    at java.awt.EventQueue.dispatchEvent (unknown Source)

    at java.awt.EventDispatchThread.pumpOneEventForFilters (unknown Source)

    at java.awt.EventDispatchThread.pumpEventsForFilter (unknown Source)

    at java.awt.EventDispatchThread.pumpEventsForHierarchy (unknown Source)

    at java.awt.EventDispatchThread.pumpEvents (unknown Source)

    at java.awt.EventDispatchThread.pumpEvents (unknown Source)

    at java.awt.EventDispatchThread.run (unknown Source)

    Well... I solved this problem by making static m_handler.  Now I have another question.  I post another question...

  • passage of setting of JS to Java Bean.

    We use the bing map to display data from failures.
    Requiement is now

    We have our JS
    description of the var;
    description = description + "< br br > > < ' + ' click on ' + ' < a href = 'javascript:openPopUp ()' > '+' * here *" + "< /a >" + "to see full list of incidents"; "."
    I am also getting cityname [i]

    so here, I have to spend cityname during the click on here to one of my java bean feature.
    where did I call a method that takes the city name as input and returns a complete list of incidents.

    Here is how I could do... In my javascript I prepare set param and an event and raise this event.
    On my UI... using a ServerListener... I lie this event to a bean method where I am able to access the param.

    Here's the javascript code:
    function myClientListener (event) {}
    element var = event.getSource ();
    var param = {City: "new york", country: 'US'};
    AdfCustomEvent.queue (element, "jsServerListener", param, true);
    Event.Cancel ();
    }

    JSPX:

    Method = "#{MyBean.serverEventHandler}" / >

    bean method:
    {} public void serverEventHandler (ClientEvent clientEvent)
    System.out.println (clientEvent.GetParameters () .get ("City"));
    System.out.println (clientEvent.GetParameters () .get ("Country"));

    }

    This can be useful:
    http://naive-amseth.blogspot.com/2011/02/calling-methodbindingwebservice-on.html

    Amit

  • Deployment of Java Bean

    Hello

    IM using forms 6i. I want to deploy javabean in my forms.

    I had crossed the documentation of oracle to deploy.

    Initially, I need to do the following 3 steps to deploy the bean,

    * Copy the directory oracle integer and its subdirectories in the directory of classes in < ORACLE_HOME > \orant\forms60\java directory. This will place the JavaBean class files in the location where the Oracle Form Builder can locate them at development time.
    * Place the JAR JavaBean (CalendarWidget.jar) file in the base directory of code used to deploy Oracle Forms 6i Server applications. This will allow the client computer to download the files of class for use when running.
    * Change the HTML page used to launch the Oracle Forms application to reference the JAR file in the tag of the ARCHIVE. This should be added the standard JAR of Oracle Forms Server files and notifies the client JVM which archive files must download before you start the application.

    < ARCHIVE = "f60all.jar, CalendarWidget.jar" >

    I did the first step. Im trying for the second and third stages.

    In the second stage i couldnot understand what actually means 'Codebase directory. I couldn't find the correct path to the base directory of code.

    good help will be appreciated...

    Don't rule no 1... your forms should be deployed on the Web... with forms 6i make sure is not client server to get the benefits of Java bean

    Check this blog could help you configure things http://baigsorcl.blogspot.com/2010/02/how-to-add-java-bean-by-writing-your.html

  • CQL the java bean complex

    Hello

    Is there a known problem with CQL not able to deal with a structure of the complex java bean? Simple java bean works fine, but when I've nested within one another bean bean, CQL is unable to treat him.

    Any pointer is greatly appreciated.

    Thank you

    Brandon

    Hello

    OK, so you must have the object (for example com.event.agreement@2bd2873) implements Serializable.

    The reason is that the event could be potentially "paged" on the disk, and that's why we need to know how to serialize. It improved later in the code base.

    Best rgds,

  • How to create java beans.

    Hi all

    How to create java beans and why we use java bean? Please guide me thanks in advance.

    Sarah

    A java bean is a piece of code written in the java language. In the "conditions of forms", a java bean is a piece of code that "reinforces" an element of user interface of standard forms, or create a completely new user interface element. For example, you can create a javabean that enhances a standard textitem, which only allows typing in special characters. An example of a completely new user interface element could be for example a dropdown list control or a slider control. There are a lot of things about java-Bean development and also a lot of javabeans ready to download here http://forms.pjc.bean.over-blog.com/article-26108921.html

  • Java Bean works is not on server remote weblogic

    Hi all

    Let's all start, I use oracle 11 G R2, Oracle Weblogic Server 10.5 forms.

    My requirement:

    I need a custom form in my Oracle Application with which the user selects color

    My form:

    The custom form has a button and a JavaBean (ColorPicker) Area


    I use the Fbean package to register and call colorpicker as java bean


    My problem:

    The form runs successfully on my weblogic server locally (on my laptop), but when I run the same form on remote weblogic server and click the button to choose the color, nothing happens, and the dose of java console does not display an error

    I added colorpicker.jar to check tag in formsweb.cfg and put the colorpicker.jar in the OracleHome/forms/java directory.

    I tried the jar sign, but no solution

    Please help me

    the problem is now solved, the problem was in the browser to the URL

    the file formsweb.cfg on the remote application server containing sections of configuration multi like this:

    [TEST11G]

    ---------------

    [TEST11]

    ------------------

    [webutil]

    -------------

    etc...

    I was adding the colorpicker.jar to the tag of archive in the TEST11 section, while I am running the form using config TEST11G like this:

    http://aptest:8888/forms/frmservlet? config = test11g

    The problem is in the location of my jar file in the file formsweb.cfg

    Thank you very much.

  • What is the java script code that makes an annotation appears as flattened (permanent) on a page?

    I have custom dialog box based on the java script code that prompts the user to enter data for a room tag.  This label is then annotated on the pdf document. At the present time, the captured annotation can be deleted.  I want to be show as permanent on the pdf page. 

    Thank you.

    You must flatten the page that this annotation is one to convert static content into PDF. To do this, use the Doc.flattenPages () method:

    The SDK Acrobat DC - Doc.flattenPages () SDK documentation

  • Difference between standard java bean and dynamic bean?

    Hi all
    Can does anyone of you tell me the difference between the dynamic standard java bean and bean?

    Thanks in advance...
    Sudhakar.

    DynamicBean

  • How to compile the connection pool java example code

    I recently bought David Knox of 'Effective Oracle Database 10' g security by Design and worked through his examples with identifiers of customers and how to exploit the database security with anonymous connections pools.

    The side of the things database I totally understand and have implemented, but I now want to compile / the java run the examples of code, but do not know what is required to compile this.

    I am running Oracle 10.2.0.4 (64-bit) Enterprise Edition on a Linux (RHEL 5) PC. Version Java is 1.6.0_20. .Bash_profile relevant environment variables are:
    export LD_LIBRARY_PATH = $ORACLE_HOME/lib: / lib: / usr/lib
    Export CLASSPATH = $ORACLE_HOME/jre: $ORACLE_HOME/jlib: $ORACLE_HOME/rdbms/jlib
    export PATH = $ORACLE_HOME/bin: $ORACLE_HOME/OPatch: / usr/kerberos/bin: / usr/local/bin: / bin: / usr/bin

    When I try to compile, I get:
    Oracle Java: DB10204$ FastConnect.java
    Exception in thread "main" java.lang.NoClassDefFoundError: java/FastConnect
    Caused by: java.lang.ClassNotFoundException: FastConnect.java
    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged (Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    The main class is not found: FastConnect.java. Program ends.

    Below is an example java source code. Is anyone able to point me in the right direction as to how to get this to compile? I have just a configuration syntax change and/or the environment to do, or there it more for this example doesn't work? Any help much appreciated.
    oracle:DB10204$   cat FastConnect.java 
    package OSBD;
    import java.sql.*;
    import oracle.jdbc.pool.OracleDataSource;
    
    public class FastConnect
    {
      public static void main(String[] args)
      {
        long connectTime=0, connectionStart=0, connectionStop=0;
        long connectTime2=0, connectionStart2=0, connectionStop2=0;
        ConnMgr cm = new ConnMgr();
        // time first connection. This connection initializes pool.
        connectionStart = System.currentTimeMillis();
        Connection conn = cm.getConnection("SCOTT");
        connectionStop = System.currentTimeMillis();
        String query = "select ename, job, sal from person_view";
        try {
          // show security by querying from View
          Statement stmt = conn.createStatement();
          ResultSet rset = stmt.executeQuery(query);
          while (rset.next()) {
            System.out.println("Name:   " + rset.getString(1));
            System.out.println("Job:    " + rset.getString(2));
            System.out.println("Salary: " + rset.getString(3));
        }
          stmt.close();
          rset.close();
          // close the connection which resets the database session
          cm.closeConnection(conn);
          // time subsequent connection as different user
          connectionStart2 = System.currentTimeMillis();
          conn = cm.getConnection("KING");
          connectionStop2 = System.currentTimeMillis();
          // ensure database can distinguish this new user
          stmt = conn.createStatement();
          rset = stmt.executeQuery(query);
          while (rset.next()) {
            System.out.println("Name:   " + rset.getString(1));
            System.out.println("Job:    " + rset.getString(2));
            System.out.println("Salary: " + rset.getString(3));
          }
          stmt.close();
          rset.close();
          cm.closeConnection(conn);
        } catch (Exception e)    { System.out.println(e.toString()); }
        // print timing results
        connectTime = (connectionStop - connectionStart);
        System.out.println("Connection time for Pool: " + connectTime + " ms.");
        connectTime2 = (connectionStop2 - connectionStart2);
        System.out.println("Subsequent connection time: " +
                            connectTime2 + " ms.");
      }
    }
    Code download is: http://www.mhprofessional.com/getpage.php?c=oraclepress_downloads.php & cat = 4222
    I'm looking at Chapter 6.

    I extracted the .jar (jar - xvf) file

    The ODBC .jar file? Don't, don't. Add it to your classpath as it is, or paste it into the WEB-INF/lib directory, or what you have to do.

  • Java beans do not work with baseHTMLjinitiator = basejini.htm! ?

    Hello

    java bean use at work are used to open a file... dialog box and it does not work well when'm with baseHTMLjinitiator = basejini.htm in file formsweb, but when I'm trying to change the jinitiator to:

    baseHTMLjinitiator = basejpi.htm

    This isn't a job. !!!

    any help for coz I want to leave the work of all operating systems on my system with different Os (vista - xp - 7)

    Thank you

    Hello

    With JInitiator, you add the name of Java Bean to the archive_jini tag.
    With the plugin from Sun, you add the Java bean name to the tag archive .

    François

  • Change Guide to Fusion? Creation of opening WLS for Backing Bean Code

    I noticed between the 11.1.1.1.0 and 11.1.1.2.0 Developer Guide of JDev for a subtle change to the code example for a connection programmatically in via WLS:

    First note '29.7.2.1 Creating connection to the Backing Bean Code' section of the 11.1.1.1.0 step 4 doLogin method():
    http://download.Oracle.com/docs/CD/E12839_01/Web.1111/b31974/adding_security.htm#BGBFJJJH

    Secondly, notes that same named section 30.7.2.1 6 simplified again doLogin():
    http://download.Oracle.com/docs/CD/E15523_01/Web.1111/b31974/adding_security.htm#BGBFJJJH

    Specifically, I note in the new 11.1.1.2.0 points out the subtle inclusion of ServletAuthentication.generateNewSessionID (request);

    What is what and what is the effect on my request to ADF?

    I ask, because we use the example of Steve Muench 129 for dynamic JDBC connections + programmatically the user connection based on the 11.1.1.1.0 notes. For some reason any code of Steve is thrown:
    oracle.jbo.InvalidObjNameException: Houston-25005: view.pageDefs_myAppPageDef object of type Binding definition of the form name is not valid.

    .. .when ever I add all links to my pageDef to the page that requires authentication. Go debugging it looks like the JdbcPagePhaseListener is called at a time when the definition of page files will still be initialized (well, that's a guess). This leads me to believe the 11.1.1.1.0 original method of logging via the WLS is not something properly to the connection needed by the ADF.

    Can someone give more information above why the doLogin() in the merger Guide method changed between versions please?

    With our thanks

    CM.

    Hi Chris,

    Wow! Your so quick that you have noticed that there is difference. :)
    I just noticed the note on the line with difference as follows:

    Line 11 ensures that the session for the session ID is changed after the user is successfully authenticated. This is necessary in order to avoid leaving the application open a session fixation attack, that would be a security breach.

    I hope someone can explain that.

    Kind regards
    Pino

  • How to create screen saver using the java bean

    Hi all

    can someone knows how to create screen saver using java beans?

    Thanks in advance.
    Sarah

    It is a strange requirement, but you can go

    A TIME-NEW-FORM-INSTANCE:

    DECLARE timer_id Timer;
     one_minute NUMBER(5) := 60000;
    BEGIN
     timer_id := CREATE_TIMER('chnage_color', one_minute, REPEAT);
    END; 
    

    WHEN-TIMER-EXPIRED:

    DECLARE
         RandomR NUMBER(10):=dbms_random.value(1,256);
         RandomG NUMBER(10):=dbms_random.value(1,256);
         RandomB NUMBER(10):=dbms_random.value(1,256);
    BEGIN
    
     SET_CANVAS_PROPERTY('CANVAS2',BACKGROUND_COLOR, 'R'||RandomR||'G'||RandomG||'B'||RandomB);
    END; 
    

Maybe you are looking for

  • We cannot connect to Outlook - this isn't an isolated problem!

    The last count, 49 other people had this problem and it has not been processed correctly. There are 16 other entries newly affected when I looked last. Firefox insists on the fact that the hotmail Web site is not an approved connection, i.e. does not

  • Chroma 6320 x drivers missing chr6320x_32.dll

    Hi all Recently, my company bought a Chroma 63201 electronic load and I was instructed to implement this piece of hardware in LabVIEW our programs. I downloaded the driver LabVIEW 2011 of idnet NOR (http://sine.ni.com/apps/utf8/niid_web_display.downl

  • I need to remove McAfee Anti-virus.

    I get free Super Boost Talktalk Safe, but when I try to install this it is impossible to delete McAfee and asks me to do. McAfee does not appear in the list of programs so I can't uninstall it myself. Under XP. Can you help me please?

  • World of app blackBerry Smartphones

    Hi is poss to still download apps from app world blackberry if your blackberry bolt missed? Thanks in advance

  • Inserting changes into an intermediate table rather than change the main table on a form.

    I am trying to create a process inserts changes the date in an intermediate table for approval, rather than change the main table.  I am currently using 4.2.4. Here's how I went on this subject.I've created a report interactive and connected the prim