How to retrieve Notification Instance of a GP Action

Hello All,
Does anyone has idea how to retrieve Notification Instance of an action.GP API provides method as
Enumeration notifications = processInstance.getNotificationInstanceEnumeration();
which gives alll notifications instances for that process at process level only not deeper.I need notification instance for an action.
Vikrant

I have the same problem. I have a program that start a gp process at runtime and I need to modify a notification Instance of an action, but when I try to find the action using processInstance.getChildrenInformation (), it returns an array with 0 elements.
have you solve your problem?
Thanks very much
Ignacio

Similar Messages

  • How to retrieve deleted instances

    Hello Everybody,
    In Guided Procedure Administration, we have one link for Maintain tasks. Using this feature, we can find the existing GP instances.
    There is one option to delete the instances.
    Is there any way ti get the deleted instances back any how?
    By deleting one instance, all the running instances are gone from the list. Now, there are no running instances shown.
    CAn you please let me know whether any way to get those back?
    IT would be really appriciated.
    Thanks,
    Bhavik

    Hi
    Have a look on similar thread
    1. [GP process |GP process and Delete instances Button aunder GP Administration invisible;
    2. [Question to Guided Procedures   |Question to Guided Procedures;
    3. [test|GP Folders not deleted on undeploy;
    BR
    Satish Kumar

  • How to Retrieve a Crystal Report's Unmanaged Destination Filename

    Hi all,
    I have looked very closely at Robert Twigg's response to the post "[Destination Path and name of a scheduled Report|http://forums.sdn.sap.com/thread.jspa?messageID=9588160#9588160]" dated 9/1/10 and while it does retrieve the unmanaged destination path, the filename retrieved is the managed filename.  How does one go about retrieving an instance's unmanaged filename?
    When I look at a Crystal Report instance details, it definitely knows what the unmanaged filename that was populated, here is a sample instance detail:
    External Destination: File copy the instance with the filename: "ALOG_Deferred_Clearing_RPT_2011-12-13-11-43-09.pdf" to the folder: "/apps/efs_bobj/IMPL/XX" .
    As you can clearly see, the filename consists of report name, date, and time that was specified as "%SI_NAME%_%SI_STARTTIME%.%EXT%" in the destination filename.
    Here's the snippet to retrieve the managed filename:
    IInfoObject report = (IInfoObject) reports.get(0);
    // Get the file name from the instance.
    IFiles files = (IFiles) report.getFiles();
    IFile file = (IFile) files.get(0);
    Any insight on how to retrieve an instance's unmanaged filename would be highly appreciated.
    Thanks in advance,
    Hart Penn
    Edited by: hartpenn on Dec 14, 2011 2:14 PM
    Edited by: hartpenn on Dec 14, 2011 2:15 PM
    Edited by: hartpenn on Dec 14, 2011 2:19 PM

    Thank you for your response.  I am querying for the report instances using the query below:
    IInfoObjects iRptObjects = infoStore.query("SELECT * FROM CI_INFOOBJECTS " +
                                               "Where SI_KIND='Pdf' AND " +
                                               "SI_INSTANCE>0 ");
    Collection<IInfoObject> iRptObjs = iRptObjects;
    for (IInfoObject iRptObj : iRptObjs) {
        ISchedulingInfo iSchedInfo = iRptObj.getSchedulingInfo();
        IEvents triggerEvents = iSchedInfo.getDependants();
        if (triggerEvents.size() > 0) {
            for (int j=0; j < triggerEvents.size(); j++) {
                IInfoObjects events = (IInfoObjects)infoStore.query("SELECT * FROM CI_SYSTEMOBJECTS " +
                                                                    "Where SI_KIND='Event' AND " +
                                                                    "SI_ID=" + (Integer) triggerEvents.get(j));
                if (events.size() > 0) {
                    IEvent curEvent = (IEvent)events.get(0);
        IDestinationPlugin destPlugin =
            (IDestinationPlugin) infoStore.query("Select Top 1* from CI_SYSTEMOBJECTS " +
                                                 "Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'").get(0);
        IDestinations dests = iSchedInfo.getDestinations();
        Collection<IDestination> destObjs = dests;
        if (dests.size() > 0) {
            // we have a dest set up
            for (IDestination destObj : destObjs) {
                if (destObj.getName().compareTo("CrystalEnterprise.DiskUnmanaged") == 0) {
                    // Copy the destination properties to the destination plugin.
                    destObj.copyToPlugin(destPlugin);
                    // Get the scheduling options for the unmanaged disk.
                    IDiskUnmanagedOptions diskUnmanagedOptions =
                        (IDiskUnmanagedOptions) destPlugin.getScheduleOptions();
                    // Get the destination files
                    List destFiles = diskUnmanagedOptions.getDestinationFiles();
                    String pathName = (String)destFiles.get(0);
        IFiles iFiles = (IFiles) iRptObj.getFiles();
        IFile myFile = (IFile) iFiles.get(0);
        logger.debug("Object: " + iRptObj.getTitle() +
                     ", ID: " + iRptObj.getID() +
                     ", Kind: " + iRptObj.getKind() +
                     ", Trigger Event: " + curEvent.getEventName());
        logger.debug("Dest: " + pathName);
        logger.debug("Filename: " + myFile.getName());
    while this is not efficient, it does retrieve the instances. However, the file name returned is not what was specified in the destination filename. Here is some info returned and displayed:
    Object: ALOG_Deferred_Clearing_RPT, ID: 128776, Kind: Pdf, Trigger Event: EVT_121311_114308
    Dest: /apps/efs_bobj/IMPL/XX/%SI_NAME%_%SI_STARTTIME%.%EXT%
    FileName: ~ce46086dd492ac788.pdf
    As you can see, the filename is clearly the managed filename.
    Edited by: hartpenn on Dec 14, 2011 3:43 PM
    Edited by: hartpenn on Dec 14, 2011 4:02 PM
    Edited by: hartpenn on Dec 14, 2011 4:03 PM
    Edited by: hartpenn on Dec 14, 2011 4:17 PM
    Edited by: hartpenn on Dec 14, 2011 4:26 PM
    Edited by: hartpenn on Dec 14, 2011 4:27 PM
    Edited by: hartpenn on Dec 14, 2011 4:28 PM

  • How to retrieve data from the HTML form in the JEditorPane?

    I could quite easily use JEditorPane to render and display a simple HTML file.
    My HTML looks like this:
    <html>
    <head>
    <title> simple form</title>
    </head>
    <body bgcolor="cccccc">
    <center><h1>SURVEY THING</h1>
    </center>
    <form id="survey">
    <p>1.Type something in.</p>
    <textarea cols=25 rows=8>
    </textarea>
    <BR>
    <p>2.Pick ONLY one.</p>
    <input type="radio" name="thing" value="0" Checked> NO choice <BR>
    <input type="radio" name="thing" value="1"> First choice <BR>
    <input type="radio" name="thing" value="2"> Second choice
    <BR>
    <p>3.Pick all you like.</p>
    <input type="checkbox" name="stuff" value="A"> A <BR>
    <input type="checkbox" name="stuff" value="B"> B <BR>
    <input type="checkbox" name="stuff" value="C"> C <BR>
    <input type="submit" value="give data">
    <input type="reset" value="do clensing">
    </form>
    </body>
    </html>
    It gets diplayed fine and I can type in text, select radio buttons (they behave mutualy-exclusive,
    as they should) and check checkboxes.
    The problem I have is with retrieving the values which were entered into the form.
    If I, after editing, try to write the html to the file using HTMLWriter,
    it records the changes I made into the textarea, however all the radio and checkbox selections are lost.
    Maybe the problem is that when I enter the values I do not use any methods like
    insertBeforeStart and so on, but I believe I shouldn't need to use them to populate a form.
    Especially I never change the structure of the HTML.
    Also, when I try to traverse the Element tree and see the input elements attributes,
    I can never see a change in the entered values. However it is probably b/c I am traversing through
    the model and the changes are in the view (just a guess.)
    Anyway, if anybody could direct me onto the right path: how to retrieve the values typed in the form,
    or if it is possible at all in the JEditorPane, I would greatly appreciate.
    thanks
    maciej
    PS. I have seen the answer to a similar question posted some time last year. However, I am trying
    to find a soultion which allows forms/surveys to be built by people who have no java and only basic
    html knwledge. And Axualize way is probably a little bit too "high-tech."

    Maybe helpful for u.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Container;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    public class TestHtmlInput extends JFrame {
         JEditorPane pane=new JEditorPane();
         public TestHtmlInput() {
              super();
              pane.setEditorKit(new HTMLEditorKit());
              pane.setText("<HTML><BODY><FORM>" +
              "<p>1.Input your name.</p>" +
              "<INPUT TYPE='text' name='firstName'>" +
              "<p>2.Input your information.</p>" +
              "<TEXTAREA rows='20' name='StationDescriptions' cols='100'>" +
              "<p>3.Pick ONLY one.</p>" +
              "<input type='radio' name='thing' value='0' Checked> NO choice <BR>" +
              "<input type='radio' name='thing' value='1'> First choice <BR>" +
              "<input type='radio' name='thing' value='2'> Second Choice <BR>" +
              "<p>4.Pick all you like.</p>" +
              "<input type='checkbox' name='stuff' value='A'> A <BR>" +
              "<input type='checkbox' name='stuff' value='B'> B <BR>" +
              "<input type='checkbox' name='stuff' value='C'> C <BR>" +
              "<p>5.Choose your nationality.</p>" +
              "<select name='natio'>" +
              "<option>12</option>" +
              "<option selected>13</option>" +
              "</select>" +
              "</FORM></BODY></HTML>");
              this.getContentPane().add(new JScrollPane(pane));
              JButton b=new JButton("print firstName text");
              b.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.out.println("Number of Components in JTextPane: " + pane.getComponentCount());
                        for (int i = 0; i <  pane.getComponentCount(); i++) {
                             //NOTE FOR BELOW: know its a Container since all Components inside a JTextPane are instances of the inner class
                             //ComponentView$Invalidator which is a subclass of the Container Class (ComponentView$Invalidator extends Container)
                             Container c = (Container)pane.getComponent(i);
                             //the component of this containers will be the Swing equivalents of the HTML Form fields (JButton, JTextField, etc.)
                             //Get the # of components inside the ComponentView$Invalidator (the above container)
                             Component swingComponentOfHTMLInputType = c.getComponent(0);
                             //each ComponentView$Invalidator will only have one component at array base 0
                             //DISPLAY OF WHAT JAVA CLASS TYPE THE COMPONENT IS
                             System.out.println(i + ": " + swingComponentOfHTMLInputType.getClass().getName());
                             //this will show of what type the Component is (JTextField, JRadioButton, etc.)
                             if (swingComponentOfHTMLInputType instanceof JTextField) {
                                  JTextField tf = (JTextField)swingComponentOfHTMLInputType;
                                  //downcast and we have the reference to the component now!! :)
                                  System.out.println("  Text: " + tf.getText());
                                  tf.setText("JTextField found!");
                             } else if (swingComponentOfHTMLInputType instanceof JButton) {
                             } else if (swingComponentOfHTMLInputType instanceof JComboBox) {
                                     JComboBox combo = (JComboBox)swingComponentOfHTMLInputType;
                                     System.out.println("  Selected index: " + combo.getSelectedIndex());
                                } else if (swingComponentOfHTMLInputType instanceof JRadioButton) {
                                     JRadioButton radio = (JRadioButton)swingComponentOfHTMLInputType;
                                     System.out.println("  Selected: " + new Boolean(radio.isSelected()).toString());
                             } else if (swingComponentOfHTMLInputType instanceof JCheckBox) {
                                     JCheckBox check = (JCheckBox)swingComponentOfHTMLInputType;
                                     check.setSelected(true);
                                     System.out.println("  Selected: " + new Boolean(check.isSelected()).toString());
                             } else if (swingComponentOfHTMLInputType instanceof JScrollPane) {
                                  JScrollPane pane = (JScrollPane)swingComponentOfHTMLInputType;
                                  for (int j=0; j<pane.getComponentCount(); j++) {
                                       //JTextArea area = (JTextArea)swingComponentOfHTMLInputType.getComponent(0);
                                       Container c2 = (Container)pane.getComponent(j);
                                       for (int k=0; k<c2.getComponentCount(); k++) {
                                            Component c3 = (Component)c2.getComponent(k);
                                            if (c3 instanceof JTextArea) {
                                                 JTextArea area = (JTextArea)c3;
                                                 System.out.println("  " + area.getClass().getName());
                                                 System.out.println("     Text: " + area.getText());
                                                 area.setText("JTextArea found!");
                             } else {
              this.getContentPane().add(b,BorderLayout.SOUTH);
         public static void main(String args[]) {
              TestHtmlInput app = new TestHtmlInput();
              app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              app.setSize( 400, 900 );
              app.setVisible( true );
    }

  • How to create an instance

    Hi all,
    Actually, I want to create an instance without priting or sending to any destination.
    My code steps should be:
    1. logon
    2. get report object
    3. set parameters information
    4. create an instance / schedule report
    once I create all instances for different reports, then I need to read all created instance objects (report with data populated) and sent to printer.
    Is this possible? If possible, please suggest how to proceed further.
    Thanks,
    Krishna

    here is a general code sample - you may need to modify it.
    <%
    IEnterpriseSession oEnterpriseSession = null;
    IInfoStore oInfoStore = null;
    String username = "administrator";
    String password = "<password>";
    String cmsname = "<cmsname>";
    String authType = "secEnterprise";
    String reportName = "<reportname>";
         oEnterpriseSession = CrystalEnterprise.getSessionMgr().logon(username, password, cmsname, authType);
         oInfoStore = (IInfoStore)oEnterpriseSession.getService("","InfoStore");
         String query =      "select top 1 * from ci_infoobjects where si_name='" + reportName + "' and si_instance=0";
         IInfoObjects reports = oInfoStore.query(query);
         IReport report = (IReport) reports.get(0);
         ISchedulingInfo schedInfo = report.getSchedulingInfo();
         schedInfo.setRightNow(true);
         schedInfo.setType(CeScheduleType.ONCE);
         // schedule the report to default destination.
         oInfoStore.schedule(reports);
         // retrieve report instance. You may have do this multiple times if the report is still in process.
         query = "select top 1 * from ci_infoobjects where si_name='" + reportName + "' and si_instance=1 order by si_creation_time desc";
         IInfoObjects instances = oInfoStore.query(query);
         IInfoObject instance = (IInfoObject) instance.get(0);
         IReportAppFactory rptAppFactory = (IReportAppFactory)es.getService("", "RASReportService");
         ReportClientDocument clientDoc = rptAppFactory.openDocument(instance, 0, Locale.ENGLISH);
         //set PrintReportOptions object properties. Look in RAS SDK documentation for further info.
         clientDoc.getPrintOutputController().printReport(PrintReportOptions object);
         clientDoc.close();
    oEnterpriseSession.logoff();
    %>

  • How to retrieve the value of last identity has been updated in a database?

    how to retrieve the value of last identity has been updated in a database

    Hi,
    Oracle 10g, FGA - Fine grained auditing, supports DML statements (9i only select).
    Set up FGA using the DBMS_FGA.ADD_POLICY procudure:
    sql> BEGIN
    DBMS_FGA.ADD_POLICY (
    policy_name => 'AUD_EMPLOYEE_SAL',
    object_schema => 'HR',
    object_name => 'EMPLOYEE',
    audit_column => SALARY',
    audit_condition => '',
    statement_type => 'UPDATE');
    END;
    NEXT:
    sql> SELECT dbuid, lsqltesxt FROM sys.fga_logs$;
    The database inserts the audit record into the FGA_LOG$ table using an autonomous transaction; even if you roll back the update statement, the update action will still be logged in this table. The fga_log$ tracks the session, machine id, timestamp, schema, scn, etc:
    SQL> desc fga_log$
    Name Null? Type
    SESSIONID NOT NULL NUMBER
    TIMESTAMP# DATE
    DBUID VARCHAR2(30)
    OSUID VARCHAR2(255)
    OSHST VARCHAR2(128)
    CLIENTID VARCHAR2(64)
    EXTID VARCHAR2(4000)
    OBJ$SCHEMA VARCHAR2(30)
    OBJ$NAME VARCHAR2(128)
    POLICYNAME VARCHAR2(30)
    SCN NUMBER
    SQLTEXT VARCHAR2(4000)
    LSQLTEXT CLOB
    SQLBIND VARCHAR2(4000)
    COMMENT$TEXT VARCHAR2(4000)
    PLHOL LONG
    STMT_TYPE NUMBER
    NTIMESTAMP# TIMESTAMP(6)
    PROXY$SID NUMBER
    USER$GUID VARCHAR2(32)
    INSTANCE# NUMBER
    PROCESS# VARCHAR2(16)
    XID RAW(8)
    AUDITID VARCHAR2(64)
    STATEMENT NUMBER
    ENTRYID NUMBER
    DBID NUMBER
    LSQLBIND CLOB
    SQL> spool off

  • How to retrieve DB package from JDev custom context menu

    Hi everyboby,
    I have a question, sorry in advance if it sounds dumb .
    In my JDev project I declaratively added a context menu to a database package (<folder type="PACKAGE">...) . It's to say when log in to a DB and you click on a package you can see the defined custom menu.
    Here is the structure of my custom menu added in the package context menu:
    -MyMenu
         -MySubMenu
    Programmaticaly, I managed to open a JFrame by affecting MySubMenu a java class file (<item className="OpenJFrame"><title>MySubMenu</title></item> for instance) which is in charge of creating the JFrame. Now if I click on MySubMenu a window opens.
    This window simply contains a button "commit package - svn".
    There comes my struggle. The opened window would let me press the button and commit the content of the package but I can't find how to retrieve the name or even the content of the previously clicked package.
    I tried to add a listener to the button and searched for the parent but I miserably failed to access the package.
    Do you have any idea on how I can perform this?
    Thank you.

    Hi',
    I think you are trying to do this "select empName from emp where empID=$empid" and the $empid should dynamically come.
    check this http://kr.forums.oracle.com/forums/thread.jspa?threadID=674513
    -Yatan

  • How to retrieve main message without Headers

    Hi,
    I am doing email application. In that, I can send mail successfully
    with encrypt format.
    but my problem is when i want to decrypt that mail while reading
    it gives me error : unknown block type
    So plz can anyone tell me how to retrieve the main text(encrypted) message without header.
    plz tell me how to do that
    regards
    Shilpa

    Yes a BPM is required.  The scenario is as follows:
    Receive IDOC from R/3
    Transformation using JAVA class mapping program
    Switch statement evaluating target structure from JAVA class
                   If supporting data required in other system – Transformation using another JAVA class
                   If supporting data required but not available - end process
                   If no supporting data required continue
    Switch statement to route output document
    Evaluate Target Structure of JAVA class 1 to determine the type of output
    .     If email – Transformation step to form email for email adapter
         If Industry Standard output - Transformation step that uses another JAVA class
         Evaluate output from JAVA class 1 to determine vendor
         route to appropriate vendor through JAVA class 3 - this module takes the IDOC as input and outputs the industry standard document that will be routed to customer
    Send Step – send document or email
    Within each of our JAVA mapping programs we do additional processing by updating the database and writing to log files.  Since there is a significant amount of work being done in the JAVA modules we have the "create new instance" checked in the transformation steps that are using JAVA mapping programs.  Eventually this will be unchecked but for now we need it for development.  We want to capture the message id of the outbound Industry standard document that is being routed to the customers.

  • Duedate Notification Instance in Process

    Dear Experts,
    I am not able to get the Action2 Notification Instance through Due date Notification code.I am able to get the details till Action1.
    I observed clearly through above code i can get the details of Notifications only till Current Action.I am unable to get the next Action Notification details.Is der any other way to get all the notification details existing in Process.
    If a process Contains Duedate Notification's  @ Action level  for all Action's in the process.
    Process
    -->Action1
    -->Action2
    -->Action3
    -->Action4
    For example If I performed Action2->Action3.I am writing the code to change Deadline of Action3  before
    executionContext.processingComplete(); 
    In Action2 .But I am not able to get Notification Instance details of Action3 through the code which is given in this message Due date Notification.
    So please let me know how can i get the Notification details of entire process.
    Thanks in Advance.
    Regards,
    Rajesh N

    Hello Sebastien,
    "one Q-notification by inspection lot" applies to Inspection lot only irrespective of Notification type and it will set other notifications in-process if you record new defects.
    In your case i guess both A1 and B1 are customized notification types. And in B1 notification you have incorporated "inspection lot" field by using some Exit.
    When you create manual notification B1 using QM01, you enter Inspection lot number and it hits Table QMEL. Now when you record defects and create notification A1 system gets another Notification with the same inspection lot number and puts it In-Process.
    Now if you consider standard notification types F2, Q2; When you go for QM01, you can not maintain Inspection lot number in Q2 notification, but for F2 (Automatically) system copies inspection lot number into notification. And as it does not get any other entry in QMEL there is no effect on Q2 notification created earlier.
    Experiment on user Exit QQMA0030  Check validity of status change; and see if you can restrict putting notification in-process if Notification type is Not Same. 
    Amol.

  • PBL to retrieve all instances assigned to a participant

    Hi there,
    I have a requirement to print a series of work items as a single PDF. I think i may have a solution but struggling with the PBL - any help much appreciated. My solution is this..
    * Participant will take a number of work items using bulk actions -> assign to me
    * Use a Global Interactive to call a screen flow
    * Screen flow activity includes PBL to retrieve all work items assigned to the current user
    * Take all the required data from the work items and pass to a PDF generation service as one print item.
    Could anyone please help with how I would retrieve all instances assigned to the current user in PBL? I am using Oracle BPM 10.3.
    thanks
    Neil
    Edited by: user13297570 on Jul 2, 2010 9:32 AM

    Neil - try something like this to get a list of instances assigned to the current participant:
    busProcesses as BusinessProcess
    instanceFilter as InstanceFilter
    instance as Fuego.Papi.Instance
    processName as String = "/" + "<your process Id here>"
    connectTo(busProcesses, url : Fuego.Server.directoryURL,
       user : "<a Participant's name that is used for API access here>",
       password : "<the password here>", process : processName)
    create instanceFilter
        using processService = busProcesses.processService
    instanceFilter.searchScope = SearchScope(participantScope : ParticipantScope.ALL,
    statusScope : StatusScope.ONLY_INPROCESS)
    addAttributeTo instanceFilter
        using variable = VarDefinition.PARTICIPANT_ID,
              comparator = Comparison.IS,
              value = Participant.id
    // list the instances
    for each inst in getInstancesByFilter(busProcesses, filter : instanceFilter) do
    endDan

  • PAPI-Add/Delete/Retrieve BPM Instance's data and attachment for an instance

    Could you please me tell me how to Add/Delete/Retrieve BPM instance's data and attachment for a new as well as running instance using PAPI. Is it possible to have
    a sample code.
    Thanks,
    Ben.

    Hi Ben,
    Start with this thread that shows you how to create a new work item instance in a process and pass in input argument variables to the new instance as it is created:
    Creating a new work item instance in a process using PAPI
    Here's a thread that shows how to retrieve variables from an instance:
    Re: Instance info using PAPI in studio
    Here's a thread that shows
    1. how to run an activity in the process and pass in arguments using the "runActivity()" method,
    2. How to run a Global activity and pass in arguments (runGlobal() and
    3. How to send in a notificationto a notificationWait activity using the "sendNotificationInstance()" method:
    Re: Acces Oracle BPM Process through Standalone Java Program
    Finally, you can use the session.instanceAttach() method to attach a file to an instance.
    Hope this helps,
    Dan

  • My safari menu bar is missing --the menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away.  Any ideas how to retrieve it?

    My safari menu bar is missing.  The menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away when borrowing my computer.  Any ideas how to retrieve it?  Thanks. 

    I too was having the same problem However, I could access both the menu bar and the dock by hovering my mouse over them so it wasn't a huge problem but I prefered having it there anyway. I was not in full screen mode and I could still go into full screen mode if I wanted to.  I found the easiest solution was to just quit safai and restart it, but it might not work for you considering you couldn't access you menu bar either way.
    I found this article that allows you to hide/show the menu bar and the dock through TextEdit (didn't work for me) http://www.mactricksandtips.com/2009/07/hide-the-menubar-or-dock-in-specific-app s.html It is pretty old so it might not work for lion and a bit risky if you don't know what you're doing so I wouldn't really recommend doing it this way.
    And KSheppard, I know it's not really any of my buisness, but the way to get answers to a question isn't by insulting others and being quick-tempered. Even if you feel like you were insulted first, don't try snapping at people who aren't obligated to help you. Honestly, it just makes everything easier if everybody is cooperative and polite.

  • How to run multiple Instances of wls5.1 under one instance

    Hello forum,I want to make 3 instance of weblogic that runs under one instance,but
    i don't know how.
    for example I will like to have the following.
    Weblogic is my main instance,so i will like to have more instances called web,db,batch
    witch run on their own under.
    Weblogic/web,db,batch,
    I have made the 4 instance first weblogic has empty weblogic.properties file,
    and the otheres 3 have their full weblogic.properties,my problem is how can I
    refer eatch instance individually, that means the
    subinstances like web,db,batch in my startweb.cmd,startdb.cmd,startbatch.cmd
    I don't know how to start eatch instance alone.
    HELP

    To run more than 1 instance of Logic at the same time, you really need 2 copies as while the license allows you to install on 2 machines (1 laptop 1 desktop ideally), they can not run at the same time.
    So, where now? Well there is a legitimate way around this, assuming you have a fast enough network between the 2 computers and that is to have 1 machine running as a Logic Node to share the work out. When I'm not 'Out and about' I could use the MacBook Pro as a node for my home setup (For example) running some of the soft synths for example.

  • My all voice memos are deleted,how to retrieve them

    my all voice memos are deleted after syncing it with itunes...how to retrieve them ??

    Thanks Bro. I have backup. and I did the same thing twice but only 26 contacts appear on the device. Now again yesterday after your suggestion again I restored the device but the result was same. Then I thought a new thing. I restored the device one more time but after restoring I didn't configure the icloud account. Surprisingly all my old contacts are there in the device but those 26 contacts are not there. Now I will tell you how this must have happened? I had 3gs earlier. that was stolen 3 months ago. I put the device in lost mode. I purchased new iphone4. I restored with itune. All my data came back. After that I saved these 26 new contacts to my device which also saved in icloud but when I tried to backup on my pc it was not happening. the messege coming device disconnected. 2 days back my stolen device came online. Lost mode was activated by icloud. But what I think in between that time the other fellow must have deleted the phone contacts. And as per icloud also deleted the same. Only the 26 contacts which I saved in these 3 months remained in icloud. Now bro can u help me out? What I should do? I have 26 contacts in icloud and < 500 in my device. I don't understand when all other Co's mobile you can import contacts from any backup file iphone can not. This is the DRAWBACK OF IPHONE.

  • I accidently deleted my voice memos on my iphone. i was using itunes on two different computers and my voice memos are gone. DOES ANYONE KNOW HOW TO RETRIEVE MY LOST VOICE MEMOS? PLEASE HELP!

    itunes asked me if iwanted to erase all my files on my iphone when i connected it to my second computer.
    i clicked yes
    and all of my very important voice memos were deleted
    however none of my photos were deleted...... and they count as files don't they?
    anyway i need help on how to retrieve deleted voice memos
    PLEASE HELP!!!

    You should never try to sync your phone with more than one computer or you will lose your data.  The pictures were not deleted because the sync process does not touch Camera Roll pictures (it only includes them during the backup step of the sync process).
    If you had these voice memos on your phone when you last synced it to your first computer, and if you haven't synced to this computer since then, you could restore from the backup created during your last sync.  This will replace the data on your phone with the data from this older backup so anything new will be lost.  If you think that is the case, do not sync your phone again to the first computer prior to restoring from this backup or you will overwrite it and the backup will be lost.  Instead, prior to connecting your phone to your first computer, open iTunes and disable automatic syncing by going to iTunes Preferences and on the Devices tab checking "Prevent...from syncing automatically".  Then connect your phone and when it appears in iTunes on the left sidebar right-click on its name and select Restore From Backup and choose your last backup (containing your voice memos).
    If you didn't have these voice memos on your phone when you last synced to your first computer, or if you have synced again to your first computer since losing your data, then your voice memos and other data are lost.

Maybe you are looking for

  • Multiple devices with seperate icloud accounts

    Ok, I am going to try and explain this as best as possible.  On my itunes account between me and my fiancee we have 2 computers, 2 ipads and 2 iphones.  He set up an icloud account that is showing my email address as the itunes account but it is then

  • How can I make a pdf-file of the front panel?

    I like to make a pdf-file of the front panel. Thus I need a vi, where I can input the printer name (as the pdf-printer is not the default one), the vi and the name of the future pdf-file. Thanks, Verena

  • Photo Stream working... sometimes and very slowly

    I'm having these issues with Photo Stream: 1. I see the Photo Stream is selectively uploading photos to iCloud. I expected to see every photo that went into the Camera Roll uploaded to iCloud, but that's not the case. Lots of photos have been skipped

  • How to write the right pattern to replace string after a static string?

    select regexp_replace('Do not replace CONSTANT "VAR_123" should be replaced ', 'CONSTANT "[A-Z0-9]' ,'CONSTANT "REPLACE') from dual; Output is: Do not replace CONSTANT "REPLACEAR_123" should be replaced Proffered output is : Do not replace CONSTANT "

  • How many connections can be supported by FMS2?

    Hi all, I have researched the Server.xml file in FMS2. This file have property : quote: <!-- Max connections requests that can be pending. Connections will be rejected if queue size limit is reached. --> <!-- -1 = default = 1000. --> <MaxConnectionQu