Questions on Event Termination

Hi Experts,
Since long time I have few questions on terminating event.As I read some documentation I am aware of where it is used??but my question is for ex:My workflow has to trigger when a sales order is changed.I can use BUS2032,Event Changed to trigger my workflow here once the manual action is taken (sales order change) on va02 the workflow triggers I believe this is right.Will there would be any manual action required for terminating event ex:Deleted in bus2032.
My sincere apologies if my questions are treated silly and million thanks for the answers.Thanks in advance.
With Regards,
Srini..

I cannot present you the 100% explanation, but I can give you a example where we will come across the use of terminating events,
1. Let us assume that you want to open a BSP or WDA from the R/3 Inbox ( SBWP ) , for this  one of the possibility is to create a external service  and then create a task for that External service.
2. Once the task  is created, you can include this task in the in the simple activity step.
3. Assume that the workflow is instantiated, and the workitem is in the users inbox, then once he excuets the workitem the respective application will be opend in a a browser, once the process is completed you will  close the  browser, but in the backend the workitem will still remain in InProcess state, this might be because the R/3 and system and browser might not have the right interface to communicate,
   so what can be done is in this situtation in the application coding, under the method close window will raise the event TERMINATED  of the bor WEBSERVICE.
this makes sure that as soon as you close the window the workitem gets completed.

Similar Messages

  • MDM iView resultset problem and question about eventing

    Hi experts,
    I created a MDM iView resultset for my main table as search table (comparison is not supported). When I click on preview I get an empty table ("Found <Tablename>: 0 of 10", table contains 10 entries at the moment). I tried the same with a subtable and everything works fine (all entries have been in the preview table). Any ideas why I don't get a result?
    My 2nd question: can I choose the parameter name in eventing (EPCF) on my own? So if I have Vendor_Id as field can I use vendorid as parameter name? Do I have to define anything in the listener iView (e.g. in detail iView for an event from resultset iView)? Maybe you have a useful tutorial link (please not SAP help section)?
    Thanks for your answers.
    Regards, bd

    It is possible to retrieve the number of rows from a resultset --
    Statement stmt= con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
                                        ResultSet.CONCUR_READONLY);
    ResultSet rs= stmt.executeQuery("<your select query here>");
    int totalRows;
    if (rs.last()) // can it move to the last row?
       totalRows= rs.getRow(); // get its row number
    else
       totalRows= 0; // no rows in the resultset
    rs.first() // set the cursor back to the startNote that the resultset has to be scrollable (TYPE_SCROLL_INSENSITIVE).
    kind regards,
    Jos

  • Questions on events in a multi-class GUI

    I have a GUI application that is constructed as follows:
    1. Main Class - Actually creates the JFrame, contains main method, etc.
    2. MenuBar Class - Constructor creates a new JMenuBar structure and populates it with various JMenus and JMenuItems. A new instance of this class is instantiated in the Main Class to be used in the setMenuBar() method.
    3. ContentPane Class - Constructor creates a vertical JSplitPane. A new instance of this class is instantiated in the Main Class to be used in the setContentPane() method.
    4. BottomPane Class - Constructor creates a JPanel and populates it with various stuff. A new instance of this class is instantiated in the Content Pane Class to be used as the bottom pane in the vertical JSplitPane.
    5. TopPane Class - Constructor creates a horizontal JSplitPane and populates the left pane with a JScrollPane containing a JList. A new instance of this class is instantiated in the Content Pane Class to be used as the top pane in the vertical JSplitPane.
    6. TabbedPane Class - Constructor creates a JTabbedPane. A new instance of this class is instantiated in the Top Pane Class to be used as the right pane in the horizontal JSplitPane.
    7. DisplayPane Class - Constructor creates a JPanel. A new instance of this class is instantiated in the Tabbed Pane Class as the first tab. The user has the ability to click at points in this pane and a dialog box will pop up prompting the user for a string. Once the user enters something and clicks "OK", an instance of a custom Java2D component that I've created will be added to the DisplayPane where the user had clicked, with the string the user inputted being used as its name. The user can then drag the component around, enter a key combination to display all the names, etc.
    8. Custom Java2D Component Class - Constructor creates my custom Java2D component. Instances of this are added to the Display Pane Class, as I have described.
    Now, originally, I was going to ask "How do you work with events between these multiple classes?" but I have solved half of that problem myself with the following class:
    9. Listener Class - A new instance of this class is declared in the constructor of the Main Class, and is thus passed down through the GUI hierachy via the constructors of the various classes. I then use the addActionListener() method on various components in the other classes, and then the Listener Class can capture an event using the getActionCommand() method to figure out what fired the event.
    So that covers the "How do I capture events in multiple classes?" question. Now I'm left with "How do I affect changes on those classes based on events?"
    For example: In my MenuBar class, I have a "Save" menu item. When this is clicked, I want to declare a new JFileChooser and then use the showSaveDialog() method, which throws up a dialog for saving a file. The problem is, the showSaveDialog() method takes a Component which is the parent frame. Obviously the Listener Class is not a frame. I want to use the Main Class as the parent frame. How would I do this sort of thing?
    Another example: In my MenuBar class, I have a "New" menu item. For now, I want this to invoke a method in the DisplayPane Class that erases all of my custom Java2D components that have been made, thus giving the user a clean slate. How would I give my Listener Class access to that method?
    A final example: Every time the user adds one of my custom Java2D components, I want that component's name to be added to the JList that is in my TopPane class. Vice versa with deleting a component: its name should be removed from the JList. How would I listen for new components being added? (A change listener on the pane? One on the ArrayList<> that contains all of the components? Something else?) And, of course, how would I give the Listener Class the ability to change the contents of the JList?
    One idea I've come up with so far is to instantiate a new instance of each of my GUI classes in the Listener class, but that doesn't really make much sense. Wouldn't those be new instances that are totally separate from the instances the rest of my program is using? Another thought is to make the Listener Class an internal class inside the Main Class so that it can use the accessor methods of the GUI classes, but a.) I would like to avoid stuffing everything in one class and b.) this brings up the question of "How would I get an accessor method that is in a class that is two or three deep in the hierarchy?" (.getSomething().getSomethingInsideThat().getSomethingInsideTheInsideThing()?)
    Help with answering any or all of my questions would be much appreciated.

    Hrm. At the moment, for my first attempt, I'm doing something similar, it just strikes me as quite unwieldy.
    Start of Listener class, with method for setting what it listens to. (I can't use a constructor for this because the MenuBar and the ContentPane take an instance of
    this Listener class in through their constructors. You can't pass the Listener in through their constructors while simultaneously passing them in through this
    Listener's constructor. That would be an endless cycle of failure. So I just instantiate an instance of this Listener class, then pass it in through the MenuBar and
    ContentPane constructors when I instantiate instances of them, and then call this setListensTo() method.)
    public class Listener implements ActionListener
      private MenuBar menuBar;
      private ContentPane contentPane;
      public void setListensTo(MenuBar menuBar, ContentPane contentPane)
        this.menuBar = menuBar;
        this.contentPane = contentPane;
      }The part of my actionPerformed() method that does some rudimentary saving, which I will make more complicated later:
    else if (evt.getActionCommand() == "saveMenuItem")
      JFileChooser fileChooser = new JFileChooser();
      int returnVal = fileChooser.showSaveDialog(menuBar.getTopLevelAncestor());
      if (returnVal == JFileChooser.APPROVE_OPTION)
        File file = fileChooser.getSelectedFile();
        ArrayList<Node> nodes = contentPaneClass.getTopPaneClass().getTabbedPane().getDisplayPane().getNodes();
        try
          BufferedWriter out = new BufferedWriter(new FileWriter(file));
          for (int i = 0; i < nodes.size(); i++)
            Node node = nodes.get(i);
            out.write(node.getIndex() + "," + node.getXPos() + "," + node.getYPos() + "," + node.getName());
            out.newLine();
          out.close();
        catch (IOException e)
          //To be added                    
    }That part that seems unwieldy is the
    ArrayList<Node> nodes = contentPaneClass.getTopPaneClass().getTabbedPane().getDisplayPane().getNodes();The reason I'm using a separate Listener class is because if I put, say, the actions for the MenuBar in the MenuBar class, and then want to save stuff in the JPanel
    at the bottom of the hierachy, I would have to go up from the MenuBar into the JFrame, and then back down the hierachy to the JPanel, and vice versa. Kind of like
    walking up a hill and then down the other side. I imagine this would be even more unwieldy than what I'm doing now.
    On the plus side, I am making progress, so thanks all for the help so far!

  • Question about Events stored on an external drive

    Hello guys! I recently freed up a TON of space on my iMac by adding an external hard drive and you guys advised me on how to get iMovie '08 to store my Events there.
    Question: I'm going to Rome Italy tomorrow and I'm going to be doing a ton of video footage. My Macbook doesn't have the hard drive space to hold what I'm going to be shooting.
    So, my question is......considering that I'm using this external drive to store Events from my iMac will I be able to to use that same external drive on this trip to manage Events on my MacBook?
    In other words, I just want to make sure that I don't confuse either version of iMovie that I have operating on these two different machines. Can I use this same external hard drive to manage Events from both machines?
    Thanks in advance for the speedy assistance. I'm leaving tomorrow and need to get this issue nailed down.
    Thanks!
    Tony

    I actually have no set-up to test my speculations but...:
    when you tell iM08 to store Events on some ext. drive, it creates on 'Top Level' of that drive the 'iMovie Events' folder..
    so, when you do that with a second Mac/iMovie... I guess, it will confuse the file management.. (=you can not create two indentically named folders... ) ... and, I guess, you can not create/select a sub-folder for the Events...
    best practise would be to partition the drive.. but that isn't possible without erasing any content on your drive..
    Plan B) invest 100$ for a 2nd drive.. ? (last week offer: 79€ for 500 gigs.. no bad... )

  • Terminating Event Terminating all work items

    System : Solution Manager
    Business object : BUS2000116
    1. I have multiline container element for Agent.Agents are Dynamic not static.Approval from all agents is required.
    2. Work flow desing
    a.Defination of Agent : ABAP Dictionary type SWP_AGENT with Multiline
    b. FORK with two steps , One step Required
    c. One part of FORK has WAIT FOR EVENT "REJECTED" Event and other has Activity with Agent "_underline []Agent()Index of: Agent _underline"
    d. Under the Miscellaneous tab Multiline line element Agent.
    e. Terminating event for this activitiy is APPROVED Event, which I have defined in business object.
    Let say in Program [Custom tab for standard transaction CRMD_ORDER] I have three agents I am getting Three work item in the workflow log with different Agent.
    PROBLEM:
    When any user open the workitem from SAP Inbox and APPROVE it[ Custom button on standard screen CRMD_ORDER], Program raises Event APPROVED by using Function Module "SWE_EVENT_CREATE". But it set other two work items also in Completed status.
    concatenate 'US' sy-uname into v_creator.
            call function 'SWE_EVENT_CREATE'
              exporting
                objtype                       = c_objtype    "BUS2000116
                objkey                        = objectkey    "Key field Which is GUID from CRMD_ORDERADM_H  table
                event                         = gs_event      "APPROVE"
               creator                       = v_creator
                take_workitem_requester       = 'X'
              START_WITH_DELAY              = ' '
              START_RECFB_SYNCHRON          = ' '
              NO_COMMIT_FOR_QUEUE           = ' '
              DEBUG_FLAG                    = ' '
              NO_LOGGING                    = ' '
              IDENT                         =
             importing
               event_id                      = v_eventid
               receiver_count                = v_count
            TABLES
              EVENT_CONTAINER               =
             exceptions
               objtype_not_found             = 1
               others                        = 2
            if sy-subrc <> 0.
              message id sy-msgid type sy-msgty number sy-msgno
                      with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            endif.
    Please let me know what could be the reason?
    Thanks in Advance.

    I think instead of using a event you can use a container element. You want to make sure that the users performs the approving action properly. If the user does that inside your code you set this container element as X. You pu the approval step inside a loop that checks whether the container element is X. Also another important thing you need to put the parallel approval step along with the loop inside a subworkflow.
    Thanks
    Arghadip

  • Question on event

    What's the type of the new value for many condition in a event loop. The wire has a dark mauve color ?
    Thx

    Ok, the reason that you have a variant datatype is because you have two controls with different datatypes assigned to the same event. The attached code shows how you can tell which one actually fired the event and convert the variant back into a standard LV datatype.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    question-1.vi ‏15 KB

  • Quick question about null terminator string!

    Hello,
    I always feel that a char array should end with a "\0".
    But just to clear up something here, if I do:
    char *a[10];
    and I fill out the array with 10 characters, then, should we *always* append the "\0" at the end of this array?
    And if so, should it be appended at a[9] location or a[10] ??? It confuses me a little because since the array is supposed to take 10 characters, then does the compiler save an extra space at the 11th character location for the null terminator string?
    OR
    Is it up to us to make sure we fill the array with up to 9 characters making sure to save the 10th location in the array for the null terminator string?
    So in a nutshell, once we finish up with a char array do we do this:
    a[9] = '\0';
    or this:
    a[10] = '\0';
    I excuse the simple question but this has been haunting me for a while, but thanks for all replies!!!
    r

    Ok, a few misconceptions here.
    I always feel that a char array should end with a "\0".
    This is not strictly true.  This is only true of the data is to be treated as a string.  Often you will use a char array to hold binary data.  Normally such binary data will NOT end in a NUL character.  In fact, most binary data may contain
    NUL characters sprinkled throughout the data.
    char *a[10];
    This is NOT an array of ten characters.  This is an array of ten pointers to characters (or character arrays).  You probably intended
    char a[10];
    You then state
    I fill out the array with 10 characters, then, should we *always* append the "\0" at the end of this array?
    Again, this depends on whether you intend the data to be a string or binary data.  I will assume you mean string from here on out.  For a string, yes you should probably always append a '\0' Of course you don't actually have room for that NUL --
    see the following answer.  (Actually there are some string APIs that let you pass in a number of characters to process and those will work with no terminating NUL, but frankly you are playing with fire when you do that so I would recommend always putting
    the trailing NUL in myself.)
    And if so, should it be appended at a[9] location or a[10]
    The declaration "char a[10]" causes the compiler to reserve *exactly* ten bytes of data for that array.  If you write to location a[10], that is the
    eleventh byte and will cause undefined behavior.  At best you might not notice anything bad.  At worst it could cause any sort of crazy data corruption.  It could easily crash your program.
    You would need to write the NUL character at a[9].   Note that writing NUL at a[9] will overwrite the last byte that you put into that array.
    As a side note here:  This is why you try to always use a proper string class like std::string when using C++ -- it takes care of all of that for you, including growing the string larger if you fill it up.  Then you don't need to worry
    about these pesky details that are easy to get wrong.

  • IMovie Trailer Question about Event

    When I attempt to create a trailer I'm presented with a dialog box that asks me to create a title (no problem) and an event. I don't understand what event I should select. None of the media that I will use is in any of the listed events. I will be using photos from my iPhoto library.
    Since I have to select an event I am at a standstill.
    Help!

    Hi C Nelson,
    I apologize, I'm a bit unclear on the exact nature of your question. If you are having issues using the Trailer function in iMovie, you may find the following article and walkthough helpful:
    iMovie '11: Create a trailer
    iMovie ’11: Create a Trailer (video walkthrough)
    Regards,
    - Brenden

  • Question about event handling in JComponents

    I have often found it useful to create a component that acts as an event handler for events the component generates itself. For example, a panel that listens for focus events that effect it and handle these events internally. (See below).
    My question is: Can this practice cause synchronization issues or any other type of problem that I need to watch out for? Is it good/bad or neither. Are there any issues I should be aware of?
    Thanks in advance for the help.
    Example:
    public class qPanel extends JPanel implements FocusListener
    public qPanel () {
    super.addFocusListener(this);
    public void focusGained(FocusEvent e) {
    //Do stuff
    public void focusLost(FocusEvent e) {
    //Do stuff
    }

    Hi,
    Handling events this way is completely fine and saves on number of classes. Only thing you may want to watch out for is that the handler methods have to be public. This means that someone could use your component and call one of the methods. For example, I could write:
    panel.focusGained(new FocusEvent(....))
    when it's not really gaining focus. So, if you're writing this component for re-use you might want to be aware of this.
    An alternative:
    Use a single internal class to handle all events. It can then delegate to private methods of your component. Example:
    class MyEventHandler implements FocusListener, MouseListener, etc... {
    public void focusGained(FocusEvent fe) {
    doFocusGained(fe);
    public void mousePressed(MouseEvent me) {
    doMousePressed(me);
    Then your component could have:
    private void doFocusGained(FocusEvent fe) {
    private void doMousePressed(MouseEvent me) {
    etc...
    Just ideas :)
    Thanks!
    Shannon Hickey (Swing Team)
    I have often found it useful to create a component
    that acts as an event handler for events the component
    generates itself. For example, a panel that listens
    for focus events that effect it and handle these
    events internally. (See below).
    My question is: Can this practice cause
    synchronization issues or any other type of problem
    that I need to watch out for? Is it good/bad or
    neither. Are there any issues I should be aware of?
    Thanks in advance for the help.
    Example:
    public class qPanel extends JPanel implements
    FocusListener
    public qPanel () {
    super.addFocusListener(this);
    public void focusGained(FocusEvent e) {
    //Do stuff
    public void focusLost(FocusEvent e) {
    //Do stuff

  • Hopefully simple question. Event ID 2 Task Category (2) Lenovo Message Center Plus Admin

    Hey group,
    Wanted to ask you guys what I was missing. In my event log as the title implies I have a Event ID 2 Task Category (2) error in Lenovo Message Center Plus Admin coming as a result of a 404 error. Issue is I don't know what page it is looking for when it is tossing me the 404 error. Is this a result of Lenvo Updater goofing up using the ADM templates for GPO or is this something else? Would be helpful if it registred the non working link it was trying to obtain so we could isolate it better. Thoughts on this? Thanks!

    try this when you download the file save it to your download folder then right click it and run as admin. it says there is no Lenovo Digital Signature I tried to install it didn't work but I did it this way and it worked
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

  • Question concerning Early Termination

    Well as of late, I have been using my phone less, especially anything to do with the Data plan that I have. I have also been running rather light on funds to continue to pay my bills. My question is am I able to end my contract online or do I have to go in to the store? If I can do it online I ask where I can do this?
    Up until this point I have had great service, but I need to find something cheaper and will more then likely go with a trac phone so I only have to pay for what I use. I apologize for any inconvenience this may bring. As I said I was very happy with the coverage, I just can no longer afford it. Also, does the termination fee have to be paid in one large sum?

    You need to call Verizon customer service or visit a store to cancel; it cannot be done online.
    Consider putting a simple flip phone on the line to eliminate the data plan fee - the ETF is payable in a lump so avoiding it by eliminating the frills is preferable. You can also look into a basic phone on a text only plan...I don't have the link handy but I'm sure you can find it or someone can pop in and provide it.

  • Question regarding early termination and handset earpiece volume

    Hello,
    I purchased iphone a week ago from ATT.
    If I terminate my contract after 10 months, do I have to return my iphone to ATT even though I pay the early termination fee?
    Another question is this,
    when I get a phoe call, the handset earpiece volume is not loud enough to hear in the noisy place.
    Is there anyway to fix this problem?
    Thank you.

    chung1q wrote:
    If I terminate my contract after 10 months, do I have to return my iphone to ATT even though I pay the early termination fee?
    No, you only have to return it if you cancel within the first 30 days and don't pay the fee.
    Is there anyway to fix this problem?
    Your volume switches work differently depending on what you are doing. You may get a readout above the "speaker" symbol that appears on the screen telling you what volume is being adjusted.
    If you are not using anything, the volume switches adjust the ringer volume.
    If you are playing music or video, they adjust the music/video volume.
    If your headphones are plugged in, they adjust the headset volume.
    If you are actually on a call, they adjust the earpiece volume or speakerphone volume, whichever you are using (without a readout).
    If you are on a phone call using bluetooth, they adjust the bluetooth volume.
    Dial something like the National Time Signal (303) 499-7111 or your local recdorded weather and adjust the volume during the call.

  • [JS] Basic question about event listeners and event handlers

    I am very new to the whole topic of event listeners and event handlers.  I'd run the test for the following problem myself, but I don't know where to start, and I just want to know if it's impossible -- that is, if I'm misunderstanding what event listeners and event handlers do.
    Say I have an InDesign document with a text frame that is linked to an InCopy story.  Can I use an "afterImport" event listener on the text frame to perform some action any time the link to the InCopy story gets updated?  And will the event handler have access to both the story that is imported, and the pathname of the InCopy file?
    Thanks.

    Thank you, Kasyan.
    Both of those are good solutions.
    We are currently using InDesign CS4 and InCopy CS5.  I'm hoping to get them to purchase the whole CS5 suite soon, since I'd like to start writing scripts for InDesign CS5 as soon as possible, as long as I'm going to have to be doing it in the not too distant future anyway.  The greater variety of event handlers sounds like it might be something that is crucial to the project I'm working on, so that adds to the argument for getting CS5.
    Thanks again.  You have no idea how helpful this is.  I made some promises to my boss yesterday that I later realized were  based on assumptions of mine about the InDesign/InCopy system that didn't make any sense, and I was going  to have to retract my promises.  But after reading your response I think I can still deliver, in a slightly different way that I had been thinking before.
    Richard

  • Question on event object

    In the official flex tutorial. They called a function and
    passed in the event object, but they never used that object in that
    function. Why is that? I have realized several times in Day1 and
    Day2 tutorials. Here is the tutorial video:
    Link
    Here is partial of the code:
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var account:ArrayCollection;
    private function resultHandler(event:ResultEvent):void {
    employeeData = event.result.employees.employee;
    ]]>
    </mx:Script>
    <mx:HTTPService id="employeeService"
    url="data/employees.xml result="resultHandler(event)" />

    In the official flex tutorial. They called a function and
    passed in the event object, but they never used that object in that
    function. Why is that? I have realized several times in Day1 and
    Day2 tutorials. Here is the tutorial video:
    Link
    Here is partial of the code:
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var account:ArrayCollection;
    private function resultHandler(event:ResultEvent):void {
    employeeData = event.result.employees.employee;
    ]]>
    </mx:Script>
    <mx:HTTPService id="employeeService"
    url="data/employees.xml result="resultHandler(event)" />

  • A simple question about events

    I have created many event-based jobs. One task sends message to a queue to drive those tasks to run. If the task sends two message to the same event-based job in a very short time such that that job has not finished yet. Will that job run twice?
    And when the job is ready to response the message in the queue, if there are two messages in the queue. Will these two message be both dequeued or just one be dequeued and the job will response the second message later on? What I mean is this:somebody sends two message into the queue, will the event-based job run twice or just once? Thanks
    Message was edited by:
    KingMing

    Hi,
    In 10.2 the job ignores events that come in while it is responding to another event. So if two events come in at the same time, the job will begin running one of them and the other will be ignored.
    In 11g you can change this behaviour by setting the job attribute "PARALLEL_INSTANCES" to true for the job. If this is set to TRUE, then the job will run exactly once for every single message no matter when the messages come in.
    Hope this helps,
    Ravi.

Maybe you are looking for

  • Help, pleeeese,. lost disk 2 of mac osx install cds

    I have lost my Powerbook G4 Mac OS X Install Disk 2 and its asking for disk 2! can anyone help please? I have tried my original Tiger 10.4 DVD and it won't boot of that either, just sits on a blue screen. Can anyone help please? on the CD it states:

  • Using SQL Loader to insert data based on conditionally statements

    I would like to use sql loader to insert records from a single text file into an Oracle database table. Sounds easy but the problem is that I need to check the existence of data in another table (Table A) before data can be loaded into Table B. Table

  • LR4 psd image can not be found

    Have a dng image in my Catalog: A 1. Edited it using PS CS6 2. Saved it as psd image 3. The psd image appeared in the Catalog, but with a question mark in the upper right corner -  viz., it could not be found  4. The image also appeared in Windows Ex

  • Installing Arch on external hard drive

    Hi guys, I'm trying to install Arch on an external hard drive, and making it bootable. However, I can't install grub on it. The grub installation failed during setup, and when I run grub-install, I get: /usr/sbin/grub-setup: warn: This GPT partition

  • Contacts 2 way sync

    Hi all, We are using Data Synchroniser Version: 1.2.3 Build: 882. My question is in relation to synchronisation of contacts both ways from phone to GroupWise and from GroupWise to phone. As it stands the contact information will sync when added into