Search for a process

If there are a lot of processes in the WorkSpace, is there a way for end user to search for a process by its name (in order to Start that Process)?
The WorkSpace help only talks about searching a process in the "Tracking" section. And I can't find a search box in the "Start Process" section.
thanks

Hi
We've found searching for processes is a very common requirement among our clients, and have developed an extension to Workspace to allow this.
It allows end user to search on any process type. Search fields are very simple to define, and you can control who has access to each process type.
You can see details here:
http://www.avoka.com/avoka/enquirytool.shtml
You can download a trial here:
http://www.avoka.com/apps/checkcookie?location=/apps/qpacdownload&qpac=y&qpac_code=Workspa ceEnquiryTool1.7
Howard
http://www.avoka.com.

Similar Messages

  • Workspace searches for wrong process type

    Hi,
    I'm experiencing a strange behaviour on the workspace (at least for me):
    Using the search filters, when I choose one specific process (actually 1 out of 40), let's suppose it is called "PROC_XYZ", the workspace retrieves only the instances of the process "PROC_ABC"!
    I've checked the code of the presentations and the views and the files seems to be correct.
    Someone has an idea?
    Thanks a lot.
    G

    Each JSP file should contain the following, generally towards the top:
    <%
    // make sure the application is registered
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session , "mybcproject_myAppModule");
    %>
    If you copied a JSP file from another workspace to use as a starter/template, it's possible it is still referencing a different property file?
    The property file must be in the classpath for the webserver in order for the JSP to find it at runtime. When you are running the JSP within JDeveloper using the Web-to-Go server, it will look in your project's 'working directory' as set in Project Properties.
    Laura

  • How to search for a process chain in RSPC ?

    Hi,
    Is there any way that i can find a process chain by giving the name of the variant.
    I know that i can click on the DTP and from there i can go to the process chain if i know the DTP.
    But here my problem is that i have a program which is calling a process chain now i what to what this process chain is doing.
    Is there any way to find it?
    Thanks in advance.
    Reagrds,
    Raghu

    Hi Surendra,
    Thanks for the inputs. Thanks for sharing some useful table names.
    But this haven't solved my issue.
    I have the below mentioned code in a program.
    CALL FUNCTION 'RSPC_CHAIN_START'
           EXPORTING
             I_CHAIN             = 'YPC_VARIANT_FOODS'
           I_T_VARIABLES       =
           I_SYNCHRONOUS       =
           I_SIMULATE          =
           I_NOPLAN            =
          IMPORTING
            E_LOGID             = LOGID.
    Now i want to see the Process chain ( 'YPC_VARIANT_FOODS' ) in RSPC.
    Actually 'YPC_VARIANT_FOODS' is a variant.
    Any way to achieve this?
    Thanks,
    Raghu

  • Search for active processes?

    I'm still new to using UNIX but is there a command I can use in Terminal to show all running processes?

    I assume you do not want to use activity monitor (in the utilities folder of your applications folder) but will mention it just in case you do
    LN

  • Database for Completed Processes

    Hi All,
    in our business case, we need a possibility that user can search for completed processes.
    I know about the Runtime View in GP, but there is a problem when the user, who is searching, wasn't attached to a processrole like Overseer, or Administrator.
    Is there any solution?
    Thanks for your help
    Steve

    I know GP Development has in their short-term plans to deliver analytical capabilities to GP and I would expect such requirement would be easily handle using Visual Composer

  • Correct User Exit search  for a Buisness Process..

    Hi Team,
    Can someone please explain me how should i go about to search for the correct User Exit running behind a Process(A buisness Process )  which would require certain enhancements ..
    Thanks .
    Regards,
    SK

    Hi,
    Go to SE93, and give the t.code which you want
    Then take the package and go to SMOD
    There click F4 for enhancements, then click on information system, there you give package and enter
    Now, you will get corresponding exits.
    this is one way.
    other way is  we need to check whole program or exit
    go to that t.code, goto system -->status .There find out the prog name.
    Then double click the program name.
    In attributes  teb, you find the package.
    go to SMOD, press F4 and input package
    Hope this helps
    Regards,
    Anbu

  • Search for tasks that belong to running process instances

    Hi, I am trying to search for tasks that belong to running process instance by using the follwoing code:
         ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
         TaskManagerQueryService queryManager = TaskManagerClientFactory.getQueryManager(myFactory);
         TaskSearchFilter filter = new TaskSearchFilter();
         filter.setServiceName(serviceName);
         filter.addCondition(TaskSearchingConstants.pPROCESS_INSTANCE_STATUS, Operator.EQUALS, JobStatus.JOB_STATUS_RUNNING);
         filter.setAdminIgnoreAllAcls(true);
         List<TaskRow> result = queryManager.taskSearch(filter);
    It returns no results while I search it via adminui I found a few running process instance. I tried to comment out the line addCondition, then it returns all tasks, and I found that when I retrieve the taskinfo by taskinfo.getProcessInstanceStatus(), it return -1 for all tasks.
    My question is how can I set the condition to search the tasks belong to running process instance? Thanks.

    You have to use:
    filter.addCondition(TaskSearchingConstants.pPROCESS_INSTANCE_STATUS, Operator.EQUALS, ProcessInstanceRow.STATUS_RUNNING);

  • In Pages document, how do I search for word and view its frequency and page numbers in a sidebar?

    I have a long document and I want to be able to search for certain key words and phrases, and then see how many times they appear in the document and exactly where.  How do I conduct this sort of search and viewing?  In the past, in Pages and Word, I've been able to view my "finds" in a sidebar but I can't figure out how to activate that service anymore.
    Thanks!

    Here is a word frequency concordance Automator Service that works in both versions of Pages. It does not present a page number reference. It is by descending count, and alphabetically, within the repetitive counts as shown in the image here. In any document, you select the text to process, then Menu > Application Name > Services > Frequency. The Service will open TextEdit with the n-pages of scrollable results. It is 16 pt Helvetica Neue for legibility.
    Here is the code:
    on run {input, parameters}
         try
              set mySelection to input as text
              set formatted_result to concordance(mySelection)
              if formatted_result is not null then
                   set textHeading to "Word Frequency List"
                   tell application "TextEdit"
                   activate
                         set NewDoc to make new document with properties {name:"Concordance"}
                         make new paragraph at beginning of text of NewDoc with data textHeading & return
                         make new paragraph at end of text of NewDoc with data formatted_result
                         tell text of NewDoc
                               set font to "Helvetica Neue"
                               set size to 16
                               set color of paragraph 1 to {0, 0, 65535}
                         end tell
                        end tell
              else
                        display dialog with title ¬
                         "No input selected" with icon stop ¬
                          giving up after 15
              end if
         on error errmsg number errnum
                    display alert ¬
                               "AppleScript Error" message errmsg & "[" & errnum & "]" as critical ¬
                                  giving up after 30
         end try
         return input
    end run
    on concordance(mySelection)
    -- Use Ruby to count word frequency and alphabetically sort words
        set rb to ¬
        "selected = String.new\nfreqs = Hash.new(0)\nselected = ARGV.join('  ').gsub(/[,.]/, \"\")\n
         words = selected.split(/[^\\w-]+/)\nwords.each { |word| freqs[word] += 1 }\n
         freqs_sorted = freqs.sort do |a,b|\n\t
         a.last == b.last ? a.first <=> b.first : b.last <=> a.last\nend\n
         freqs_sorted.each { |k,v| printf \"[ %8s ]          %s\", v, k }"
        do shell script "/usr/bin/ruby -e " & rb's quoted form & space & mySelection's quoted form
    end concordance
    Launch /Applications/Automator and choose New Document, then click the Service icon, and then select the Choose button.
    On the left, you will have a list of Libraries from which to choose workflow items. Find Library > Utilities. In the adjacent column, locate the Run Applescript workflow. Click on it, then drag and drop it in the large workflow window to your right.
    At the top, you can select Service receives text in any application. Leave Output replaces selected text unchecked.
    In your Run AppleScript workflow window, you will see AppleScript boilerplate. Click on it and press command+A, then backspace to delete this content. Copy and paste the above code into this Run AppleScript workflow window. Press the Run button in Automator's upper right corner. If (and it should) a TextEdit window pops up, you are good, and you want to press File > Save. A dialog box will pop-up where you can name your Service. I called my Frequency, you may wish to call it something else. Once you have save it, you can exit Automator. Services are deposited in yourlogin directory/Library/Services.
    If you have a Pages document open with text, either select it, or command+a to select the entire document. Now, you select your Service via Pages > Services > Frequency. This will now pop-up a new TextEdit document with the results. If you want to save this new document, you must use option+File to Save as...

  • Searching for a Project status = CLSD and open purchase orders?

    Hi,
    I am searching for a project status (Project Builder CJ20N) which allowed my to set a CLSD or a simillar status for settlement with open purchase orders.
    This staus should allowed to process with open orders BUT  not allowed to add new orders after setting this status.
    Have somebody any idee? Or it is impossible?
    Tahnk you in advanced for your Help.
    Regards Baldy

    Hi TV-kid,
    while I was waiting for an answer I got to the same conclusion, so what you offers me is quite tempting actually.
    I got a look to your website and it seems convincing. Still though, your case studies are in other business area, It's only a mater of good knowledge of File Maker.
    I did download the test-drive last version of File Maker plus their samll Business Solution. I did read most of the documentation and the learning process would be too long to construct ourself a good crossed-data base.
    I'd like to get in contact with you to look for a possible colaboration. to get private, I'd liketo do it through your contact link in your website .
    To whom shall I write?
    Thanks
    Cheers
    Cheers

  • Windows Server 2003 R2 Enterprise Edition 32 bits Service Pack 2 never finishes searching for updates and use 100% of CPU.

    Hi everyone, I am having issues updating a clean Windows Server 2003 R2 Enterprise Edition 32 bits Service Pack 2, so any help with be appreciated cause I've already tried all my cards for the past 5 days in this particular issue without success.
    All I did so far is installing Windows Server 2003 R2 Enterprise with Service Pack 2, open IE to update, it keeps searching for updates and never stop, after 20mn to 30mn the process svchost.exe start using 100% of my CPU.
    I already tried the following scenarios:
    1-  Install IE8, install the update KB927891 and the Windows Update Agent 3.0 (I already had this one installed). Reboot and run windows update trough IE8 and the problem did not solved.
    2- Install those 2 software "MicrosoftFixit.wu.MATSKB.Run" and "MicrosoftFixit50777", open IE to update, it still hangs and continues eating my CPU. This is the output of "MicrosoftFixit".
    Windows Update error 0x8007000D(2014-01-06-T-06_06_34A) --> Not Fixed
    Cryptographic service components are not registered (This service is actually running successfully) --> Not Fixed
    3- I found the following script that would register some DLL, deleting the "SoftwareDistribution" and forcing windows update to solve the problem and nothing happened either.
    Link to script:
    http://gallery.technet.microsoft.com/scriptcenter/Dos-Command-Line-Batch-to-fb07b159#content
    Here is a link to the content of my WindowUpdate.log file:
    https://skydrive.live.com/redir?resid=883EE9BE85F9632B%21105
    Thank you in advance for helping.

    All I did so far is installing Windows Server 2003 R2 Enterprise with Service Pack 2, open IE to update, it keeps searching for updates and never stop, after 20mn to 30mn the process svchost.exe start using 100% of my CPU.
    Herein is the root cause of your issue. A topic that's been discussed in several blogs, forums, and even in the media since September regards a known issue with attempting to patch IE6 RTM via Windows Update.
    Aside from that particular issue... browsing the Internet with an unpatched instance of IE6, especially from a Windows Server system, is also asking for a world of hurt.
    Might I suggest the following:
    Download the IE8 for Windows Server 2003 installer to a thumb drive.
    Download the latest Cumulative Security Update for IE8 for Windows Server 2003 to a thumb drive.
    Reinstall Windows Server 2003 with Service Pack 2.
    Upgrade to IE8 from the thumb drive installer and apply the
    Cumulative Security Update.
    Now your machine is capable of safely browsing to Windows Update to install the rest of the updates (well, maybe, there's also all those other Security Updates from the past seven years that your machine still has vulnerabilites for -- even those seven
    years of updates are going to take a Very Long Time to scan for, download, and install).
    Why don't you have a WSUS server? -- noting, wryly, that you've posted in the *WSUS* forum.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • HT1237 Searching for an EFI Firmware update to enable Lion Internet Recovery on MacBook Pro (15-inch, Mid 2010)

    Hi All,
    My Mid-2010 Apple MacBook Pro 15-inch started having random kernel panics lately (more than 1 month of random kernel panics now), usually associated with request such as "open new tab in Safari" etc.
    Since I installed 2x4GB RAM modules from Crucial when I bought my MBP (they are +- 2 years old now) and also exchanged my DVD-drive for an extra SSD that now runs the system (fully updated 10.7.4) I have a feeling that those kernel panics might be HW related.
    I wanted to run Apple Hardware Test but found out that it is no longer supported on Lion. Since I don't have any optical drive to install AHT from (also I don't have the CDs with me atm), I found out that I can install an EFI Firmware update that enables internet-based (?) AHT.
    At http://support.apple.com/kb/HT4904# , the link from MacBook Pro (15-inch, Mid 2010) links to MacBook Pro EFI Firmware Update 2.6 which is for Early 2010 models only and doesn't allow me to run the installation process. I'm looking for an EFI update to enable Apple Hardware Test on my Mid-2010 Apple MacBook Pro 15-inch.
    Is there an update that can do this? Is there a wrong hyperlink on Apple page or am I searching for a wrong update?
    Also, even though this should probably be in a separate topic, can anyone please point me to the right direction for a good Apple Kernel Panic how-to-read-those topic?
    Thank you very much in advance.

    Hey Cris from London,
    I would try out the recommended steps in the following link:
    OS X Mavericks: If your Mac runs slowly
    http://support.apple.com/kb/PH13895
    Let us know if any of the steps within resolved the issue.
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • How to use a standard library binary search if I'm not searching for a key?

    Hi all,
    I'm looking for the tidiest way to code something with maximum use of the standard libraries. I have a sorted set of ints that represent quality levels (let's call the set qualSet ). I want to find the maximum quality level (choosing only from those within qualSet ) for a limited budget. I have a method isAffordable(int) that returns boolean. So one way to find the highest affordable quality is to start at the lowest quality level, iterate through qualSet (it is sorted), and wait until the first time that isAffordable returns false. eg.
    int i=-1;
    for (int qual : qualSet) {
         if !(isAffordable(qual))
              return i;
         i++;
    }However isAffordable is a slightly complicated fn, so I'd like to use a binary search to make the process more efficient. I don't want to write the code for a binary search as that is something that should be reused, ideally from the standard libraries. So my question is what's the best way of reusing standard library code in this situation so as to not write my own binary search?
    I have a solution, but I don't find it very elegant. Here are the important classes and objects.
    //simple wrapper for an int representing quality level
    class QualityElement implements Comparable<QualityElement>
    //element to use to search for highest quality
    class HiQualFinderEl extends QualityElement {
         HiQualFinderEl(ComponentList cl) {...}
    //class that contains fair amount of data and isAffordable method
    class ComponentList {
         boolean isAffordable(int qual) {...}
    //sorted set of QualityElements
    TreeSet<QualityElement> qualSet When you create an instance of HiQualFinderEl, you pass it a reference to a ComponentList (because it has the isAffordable() method). The HiQualFinderEl.compareTo() function returns 1 or -1 depending on whether the QualityElement being compared to is affordable or not. This approach means that the binary search returns an appropriate insertion point within the list (it will never act as if it found the key).
    I don't like this because semantically the HiQualFinderEl is not really an element of the list, it's certainly not a QualityElement (but it inherits from it), and it just feels ugly! Any clever suggestions? Btw, I'm new to Java, old to C++.
    If this is unclear pls ask,
    Andy

    Thanks Peter for the reply
    Peter__Lawrey wrote:
    you are not looking for a standard binary searchI'm not using a binary search in the very common I'm searching for a particular key sense, which is the Collections.binarySearch sense. But binary searches are used in other situations as well. In this case I'm finding a local maximum of a function, I could also be solving f(x)=0... is there a nice generic way to handle other uses of binary search that anyone knows of?
    I would just copy the code from Collections.binarySearch and modify itI have this thing about reusing; just can't bring myself to do that :)
    It would be quicker and more efficient than trying to shoe horn a solution which expects a trinary result.Not sure I understand the last bit. Are you referring to my bastardised compareTo method with only two results? If so, I know, it is ugly! I don't see how it could be less efficient though???
    Thanks,
    Andy

  • Using Tags, Can i Search for Multiple Tags in One Search Folder?

    Hi forum,
    i would like to set a Search Folder and search using Tags. I would liek to use one such folder and search for everythign i haver tagged last week. How cna i search for 'TAG A' and 'TAG B' in one Search Folder?

    Hi mumbles2701,
    All you need to do is to briefly type in your tag in the search bar and in the drop down menu, you should be able to select a tag, press enter and just repeat this process for as many tags as you like
    Hope I helped!

  • Error while searching for Business Partner in Web UI

    Hi,
    While searching for the Business Partner in Web UI either by First Name, last name or Account ID, we are getting following error:
    Cannot display view BSPWD_BASICS/ErrorView2 of Component CRM_UI_Frame
    An exception has occured
    Exception class: CX_BOL_EXCEPTION - Access previously deleted Entity
    Method: CL_CRM_BOL_ENTITY=>GET_ROOT
    Source Text Row: 12
    When the business partner blind search is given (i.e. by entering *), all the business partners get displayed without any problem.
    Also, this problem occurs only for some business partners and NOT ALL.
    This problem, has also been observed sometimes when an IBase entry is created in the background.
    We are not quite sure whether notes, 135814 & 1515327 will help us in this regard, as the root cause is still unknown.
    Could anyone suggest possible causes and solution for the same. We are on CRM 7, using the standard business role.
    Thank you in advance.
    Regards,
    Chhaya

    Hi Shiromani,
    We have observed that this problem is peculiar with the data records attached to IBase ONLY. It means, if we process them further e.g. create a contract for the Business Partner after attaching the IBase, this problem doesnt occur. Then we are able to search the BP without any error.
    In short, when an IBase is created for a BP, and if a search is given for such BP, the error given in the first thread occurs, But when an IBase is created and immediately after that a contract is attached to the BP, and if a search is given for such BP, then there is no error.
    We are still further investigating the root cause. But any suggestion/inputs are welcome.
    Thank you.
    Regards,
    Chhaya

  • My search media bar brings up the stuff I want when I search for it but won't let me click on the results for anything.

    Hi guys, I've been having troubles with my search bar for searching media in itunes. It worked a while ago but now when I search it brings up results and the results I want but it won't let me click them for anything. I can't go to the song, album or artist or add it to the song queue. It's really annoying to go through my library and search for a specific song without using the search. Please Help!
    Thank You!

    you said you turned your phone off. was it a reboot, or an off? Ive noticed that if the memory is low and you have
    a lot of apps or processes running, it really causes the system lag. Try holding down the top button and home button at the same time. Then wait until it has powered down. In 60 sec or so, restart it the same way. Should fix your issue. There is an app I use called Lite Scan. It allows me to see what is running and it will free up 30mg at a time. Not much granted but enuf to keep the system from going to a crawl.
    as far as your device in itunes goes, open itunes, without your phone connected. look in the advance settings and make sure everything is as it should be. Back up your data and try again. good luck

Maybe you are looking for

  • How to write  to weblogic.log from JSP ?

    It is possible to write some messages to weblogic.log from JSP?           

  • Change in SELECT by splitting into two

    Hi Gurus, I am splitting below selection into two as follows. SELECT * FROM z_rider_hist INTO TABLE gt_rider_rpt      FOR ALL ENTRIES IN gt_revsed_docs      WHERE ( /bic/zopbel = gt_revsed_docs-/bic/zstbel2 OR              clr_doc_no = gt_revsed_docs

  • Cannot convert webpage

    Hello:  I have been working with Acrobat Pro 9.5.2 and Windows 7 Ultimate.  Starting from the past two days, I am not able to convert webpages to PDF.  I get the message "Could not access acrobat's Web capture facility.  Acrobat may be busy or waitin

  • Graphic Driver Win 7 Pro NB550D

    Still the same Problem to find a valid device Driver. If I download and extract the driver there is not the right driver in the package. Also tried to use AMD Driver and and and.... Any idea?? N. Message was edited by: Nightmare0815

  • CSA MC insufficient disk space

    Hello! There is a little problem - low disk space on CSA MC machine. Shrinking database doesn't help. And backups store on anouther logical disk so they don't take free space. As I understand the way is to "move" all CSA MC database to anouther machi