Extension Approach for WF Status Monitor

Hello All,
I need to restrict the external lov in WF admin>Status Monitor>Workflow Type
Path --> /oracle/apps/fnd/wf/lov/webui/WorkflowsLovRG
LOV --> WorkflowItemTypesLOV
The region is not associated to any CO and i need to restrict the LOV based on some conditions. Please let me know how to go about.
Thanks
Rakesh
Edited by: Rakesh S on Oct 28, 2009 5:46 PM

You can extend the page with a new controller even if there is no seeded controller associtated with the region.
Just extend the customController with OAController and write your logic.
Personalize and add your controller to the region.
--Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Best Approach for Performance/Event Monitoring

    I'm completely new to SAP and would appreciate the input of some more experienced folks.
    I have been given two tasks for SAP: performance monitoring of the SAP application/associated modules (e.g. SAP Memory utilization, number of processes, etc.) and alarm event monitoring (anything that would be characterized as a error and logged).
    For the performance monitoring I would like a access the metrics once every 5 minutes to keep a running history.  Several things I've started to look at are the Alert Manager and perhaps a Perl API interface.
    For alarm events, I assume there is some SAP module that can monitor for these and generate SNMP traps or perhaps a custom application that does log mining.  As part of this I am trying to determine where error events are written to in SAP (e.g. a log file??).
    If anyone has insight or can point me in the right direction, I would be very appreciative.  Thanks in advance.
    Ed

    Dear Ed,
    If Wily Introscope is configured for your Portal, which shoold be the case because SAP delivers it as with SAP Solution Manager, all metrics which oyu mention would be available.
    If you are running a testing instance which is not integrated with Solution Manager, you could try the Web Administrator
    http://<host>:<port>/nwa ->  Availability and Performance -> Resource Monitoring
    Best Regards,
    Sylvia

  • Most straight forward approach for monitoring scheduled tasks in SCOM 2012

    Hi,
    This one should be easy (?): looking for the most straight forward approach for monitoring scheduled tasks in SCOM 2012.
    Best regards
    Thanks in advance, Best Regards

          <Reference Alias="SC">
            <ID>Microsoft.SystemCenter.Library</ID>
            <Version>6.0.6278.0</Version>
            <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
          </Reference>
          <Reference Alias="Windows">
            <ID>Microsoft.Windows.Library</ID>
            <Version>6.0.6278.0</Version>
            <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
          </Reference>
          <Reference Alias="MicrosoftWindowsServerLibrary6063215">
            <ID>Microsoft.Windows.Server.Library</ID>
            <Version>6.0.7061.0</Version>
            <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
          </Reference>
          <Reference Alias="Health">
            <ID>System.Health.Library</ID>
            <Version>6.0.6278.0</Version>
            <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
          </Reference>
          <Reference Alias="System">
            <ID>System.Library</ID>
            <Version>6.0.6278.0</Version>
            <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
          </Reference>
        </References>
    You also need to add/copy the reference for the Scheduled Tasks MP you are using for other OSs. The above is from the MP for Windows 2012 Scheduled Tasks. Most of the existing MPs available for scheduled tasks already cover Windows 2003/2008 R2, I just extended
    support for 2012.

  • Error while updating a custom Windows Azure Diagnostics configuration xml from powershell. "Invalid update to extension reference for role"

    I am attempting to upload a manually edited WADConfig xml to my VM. The WAD service is functioning correctly, I needed to add some custom WinEventLogs. The prescribed steps result in an error.
    What am I overlooking?
    I am following these instructions:
    Step 5: Remotely install Diagnostics on your Azure Virtual Machine
    azure.microsoft.com/en-in/documentation/articles/cloud-services-dotnet-diagnostics/#virtual-machine
    $storage_name = "wadexamplevm"
    $key = "<StorageAccountKey>"
    $config_path="c:\users\<user>\documents\visual studio 2013\Projects\WadExampleVM\WadExampleVM\WadExample.xml"
    $service_name="wadexamplevm"
    $vm_name="WadExample"
    $storageContext = New-AzureStorageContext
    -StorageAccountName $storage_name -StorageAccountKey $key
    $VM1 = Get-AzureVM
    -ServiceName $service_name -Name $vm_name
    $VM2 = Set-AzureVMDiagnosticsExtension
    -DiagnosticsConfigurationPath $config_path
    -Version "1.*"
    -VM $VM1 -StorageContext $storageContext
    $VM3 = Update-AzureVM
    -ServiceName $service_name -Name $vm_name
    -VM $VM2.VM
    Unfortunately, I am receiving this error:
    Update-AzureVM : BadRequest: Invalid update to extension reference for role: XXXXXX and reference: IaaSDiagnostics.
    What's missing from the above script?

    Hi,
    Since Azure SDK 2.5 uses the extension model the diagnostics extension, the configuration and the connection string to the diagnostic storage are no longer part of the deployment package and cscfg. All the diagnostics configuration is contained within the
    wadcfgx. The advantage with this approach is that diagnostics agent and settings are decoupled from the project and can be dynamically enabled and updated even after your application is deployed. 
    Due to this change some existing workflows need to be rethought – instead of configuring the diagnostics as part of the application that gets deployed to each environment you can first deploy the application to the environment and then apply the diagnostics
    configuration for it.  When you publish the application from Visual Studio this process is done automatically for you. However if you were deploying your application outside of VS using PowerShell then you have to install the extension separately through
    PowerShell.
    There PowerShell cmdlets for managing the diagnostics extensions on a Cloud Service are -
    Set-AzureServiceDiagnosticsExtension
    Get-AzureServiceDiagnosticsExtension
    Remove-AzureServiceDiagnosticsExtension
    You can use the Set-AzureServiceDiagnosticsExtension method to enable diagnostics extension on a cloud service. One of the parameters on this cmdlet is the XML configuration file. This file is slightly different from the diagnostics.wadcfgx file. You can
    create this file from scratch by either following the article that you are referring to or  you can modify the wadcfgx file and pass in the modified file as a parameter to the powershell cmdlet.
    To modify the wadcfgx file –
    Make a copy the .wadcfgx.
    Remove the following elements from the Copy:
    <DiagnosticsConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
       <PrivateConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
         <StorageAccount name=" " endpoint="https://core.windows.net/" />
       </PrivateConfig>
       <IsEnabled>false</IsEnabled>
    </DiagnosticsConfiguration>
    Make sure the top of the file still has xml version and encoding –
       <?xml version="1.0" encoding="utf-8"?>
    Effectively you are stripping down the Wadcfgx to only contain the <PublicConfig> section and the <?xml> header. You can then call the PowerShell cmdlet along with the appropriate parameters for the staging slots and roles:
    $storage_name = ‘
    <storagename>’
    $key= ‘<key>’
    $service_name = '<servicename>'
    $public_config = '<thepublicconfigfrom_diagnostics.wadcfgx>'
    $storageContext = New-AzureStorageContext –StorageAccountName $storage_name –StorageAccountKey $key
    Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $public_config –ServiceName $service_name -Slot ‘Staging’ -Role ‘WebRole1’
    Hope this helps !
    Regards,
    Sowmya

  • What are the best approaches for mapping re-start in OWB?

    What are the best approaches for mapping re-start in OWB?
    We are using OWB repository 10.2.0.1.0 and OWB client 10.2.0.1.31. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    We have number of mappings. We built process flows for mappings as well.
    I like to know, what are the best approches to incorportate re-start options in our process. ie a failure of mapping in process flow.
    How do we re-cycle failed rows?
    Are there any builtin features/best approaches in OWB to implement the above?
    Does runtime audit tables help us to build re-start process?
    If not, do we need to maintain our own tables (custom) to maintain such data?
    How did our forum members handled above situations?
    Any idea ?
    Thanks in advance.
    RI

    Hi RI,
    How many mappings (range) do you have in a process flows?Several hundreds (100-300 mappings).
    If we have three mappings (eg m1, m2, m3) in process flow. What will happen if m2 fails?Suppose mappings connected sequentially (m1 -> m2 -> m3). When m2 fails then processflow is suspended (transition to m3 will not be performed). You should obviate cause of error (modify mapping and redeploy, correct data, etc) and then repeat m2 mapping execution from Workflow monitor - open diagram with processflow, select mapping m2 and click button Expedite, choose option Repeat.
    In re-start, will it run m1 again and m2 son on, or will it re-start at row1 of m2?You can specify restart point. "at row1 of m2" - I don't understand what you mean (all mappings run in Set based mode, so in case of error all table updates will rollback,
    but there are several exception - for example multiple target tables in mapping without corelated commit, or error in post-mapping - you must carefully analyze results of error).
    What will happen if m3 fails?Process is suspended and you can restart execution from m3.
    By having without failover and with max.number of errors=0, you achieve re-cycle failed rows to zero (0).This settings guarantee existence only two return result of mapping - SUCCSES or ERROR.
    What is the impact, if we have large volume of data?In my opinion for large volume Set based mode is the prefered processing mode of data processing.
    With this mode you have full range enterprise features of Oracle database - parallel query, parallel DML, nologging, etc.
    Oleg

  • Approach for Inter Organisational BPM

    Hi All,
    I am doing Masters Dissertation in Collaborative BPM. My research topic is the evaluation of three approached for collaborating BPM across value chain.
    Explanation of these approaches:
    Centralise CBPM: Ownership of Collaborative System is with one Central Organisation and Other Partners Participate in this collaboration through various UI such as portal. Example, Collaboration between the automobile manufacturer and dealer were automobile manufacturer provides portal for dealer to place order, manage its customer and handle warranty and recalls.
    Decentralise CBPM: In this approach every partner provides communication technology like Web Services for its Business Partner for collaboration. The ownership is decentralise and more flexible
    Peer-to-Peer CBPM: In ideal condition in this approach every Partner should have the same technology which is developed for handling collaborative Business Processes. In this case the same modelling facility is available across the value chain.
    I found below critical aspects for evaluating these three approaches:
    1] Autonomy
    2] Collaborative process Modelling
    3] Monitoring, Controlling, and Analysis
    4] “Plug and Play” based Platform for Collaboration (Includes Security, Web Service and various adapters for communication and Language Support like Java for easy custom enhancement)
    5] Governance
    I kindly request you all to post your views about pros and cons for evaluating these approaches from the aforementioned critical aspects.
    I welcome your questions and appreciate your valuable guidance.
    Thank you ,
    Regards,
    Ganesh Sawant

    PROS:
    Using the Webservices you can trigger the BPM Process and pass the values from the web dypro component which will available for the end user and pass it on to the BPM Proess.
    We can use EJB as a webservice, where the automated activity in the BPM can output the value based on the logic in the EJB Function. We can manage the automated activity which runs in the back ground of the process as per our logic and returns the value to the next task.
    CONS
    Using Webservices in the various activity with fewer data is not advisable as it takes longer time to deploy the process. And any change in the data in the webservices requires regularly re importing of the web services.

  • Peer-to-Peer approach for Cross Organisation BPM

    What are the pros and cons of using Peer-to-Peer based decentralise approach for managing Inter-Organisational BPM?
    ( Peer-to-Peer CBPM: In ideal condition in this approach every Partner should have the same technology which is developed for handling collaborative Business Processes.  In this case the same modelling, monitoring, and implementation technology is available across the value chain. )
    What are the challenges and what are the benefits from the aspects like autonomy, governance, security, modelling, monitoring, and process ownership?
    Thanks you
    Regards
    Ganesh Sawant
    Edited by: ganesh sawant on Jul 16, 2011 8:45 PM

    PROS:
    Using the Webservices you can trigger the BPM Process and pass the values from the web dypro component which will available for the end user and pass it on to the BPM Proess.
    We can use EJB as a webservice, where the automated activity in the BPM can output the value based on the logic in the EJB Function. We can manage the automated activity which runs in the back ground of the process as per our logic and returns the value to the next task.
    CONS
    Using Webservices in the various activity with fewer data is not advisable as it takes longer time to deploy the process. And any change in the data in the webservices requires regularly re importing of the web services.

  • Workflow Status Monitor in BPM

    Hi,
    In Oracle Workflow we're able to rewind, retry, skip activities via status monitor. Are those functions available in BPM suite 11?
    When i both look at E.M and google it, i've found Oracle document named "Migrating to Oracle BPM from Oracle Workflow" , but unfortunately again i'm not able to find tips about how to update payload (wf attributes) of a process instance, rewind to previous step, retry, skip current step. Can you please share any document or tips for those issues to fully implement wf admin functionalities like in wf status monitor.  Also is it possible to integrate both work flow and bpm task list applications into a common standalone ADF task list page?
    Regards
    Ümit Sadegüzel

    Hi Ümit,
    With Oracle BPM you're dealing with not only the process and its interactive activities, but also the human tasks that accompany every interactive activity.  What I think will probably be most helpful to you will be the Human Task API.  Below are the links I wish I’d known about when first getting started with the APIs.  Arun Pareek and Niall Commiski’s blog posts give you practical working examples that actually work.
    Although there are new REST APIs, you might want to concentrate on the SOAP and Java APIs for now.
    BPM 11g Samples: This samples site has two links you might find useful (the “BPM 11g APIs” and the “BPM 11g Update task and Message based Correlation” links) http://java.net/projects/oraclebpmsuite11g/pages/Samples
    Fusion Middleware Developer's Guide for Oracle SOA Suite – Chapters 33 (Building a Custom Worklist Client) and 34 (Introduction to Human Workflow Services).  These document the Human Workflow Java and SOAP APIs. http://docs.oracle.com/cd/E28280_01/dev.1111/e10224/bp_worklistcust.htm#SOASE839
    http://docs.oracle.com/cd/E28280_01/dev.1111/e10224/bp_workflow.htm#SOASE104
    Arun Pareek has two excellent blogs on the SOAP and Java Human Workflow Service APIs.  https://beatechnologies.wordpress.com/2011/08/22/oracle-human-workflow-web-service-apis/https://beatechnologies.wordpress.com/2011/08/24/using-java-apis-for-oracle-human-workflows/
    Human Task ITaskQueryService API example and JavaDoc reference - http://docs.oracle.com/cd/E14571_01/apirefs.1111/e10660/oracle/bpel/services/workflow/query/ITaskQueryService.html
    Oracle BPM IInstanceQueryService API JavaDoc reference - http://docs.oracle.com/cd/E28389_01/apirefs.1111/e25378/oracle/bpm/services/instancequery/IInstanceQueryService.html
    Oracle BPM API example to retrieve a list of instances – http://soadev.blogspot.in/2011/07/querying-oracle-bpm-process-instances.html
    Niall Commiski’s blog on reassigning tasks using the Java API - http://niallcblogs.blogspot.com/2013/12/292-bpm-11g-human-task-reassignment-via.html
    Niall Commiski’s blog on updating the payload in a human task using the human task api - http://niallcblogs.blogspot.com/2013/07/261-short-digression-into-human-task-api.html
    Niall Commiski’s blog on Purging Instances using the Composite API -  http://niallcblogs.blogspot.com/2011/12/soabpm-apis-manipulating-composites-and.html
    Niall Commiski’s blogs on the Human Workflow Java API: Oracle BPM 11g Human Workflow Service Java API – Part 1 - retrieve tasks and task information http://niallcblogs.blogspot.com/2010/11/oracle-human-workflow-service-java-api.html
    Oracle BPM 11g Human Workflow Service Java API – Part 2 - retrieving payload values http://niallcblogs.blogspot.com/2010/11/human-workflow-java-api-part-2.html
    Oracle BPM 11g Human Workflow Service Java API – Part 3 – retrieving tasks assigned to a user - ITaskQueryService.AssignmentFilter
    http://niallcblogs.blogspot.com/2010/12/oracle-human-workflow-part-3.html
    Human Workflow Java API sample (download the “workflow-118-JavaSamples” and “workflow-100-VacationRequest” zip file on this page) – this has Java API examples that add attachments, get attachments, get tasks, initiate tasks, query tasks based on different predicates, assign (route) tasks, reassign tasks, update the task’s outcome https://java.net/projects/oraclesoasuite11g/downloads/directory/HumanWorkflow?field=date&order=asc&page=2  
    Hope this helps,
    Dan

  • Ping Status Monitor doesn't create any alert

    Hello,
    for Windows Server you have the Ping Status Monitor testing connection to the servers. We have the problem, that if a server is not reachable the alert does not occure. We test it with one server - disebled the network card and the monitor does not alert.
    If I ping the server from the scom console it fails but status view and state change are still green.
    Is there something wrong with the monitor?

    Hi,
    Ping Status Monitor
    This monitor pings a agentless computer using an ICMP ping. If the computer is agent-managed, it ping itself locally.
    Please try to enable the Monitor Computer Not Reachable and
    Health Service Heartbeat Failure.
    For more information, please review the link below:
    How Heartbeats Work in Operations Manager
    http://technet.microsoft.com/en-us/library/hh212798.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error in the Status Monitor page

    I have been getting the following error, for the notification in the status monitor page:
    9004: An error has occurred in workflow processing: 3835: Error '-6508 - ORA-06508: PL/SQL: could not find program unit being called' encountered during execution of Generate function 'WF_XML.Generate' for event 'oracle.apps.wf.notification.send'.. The stack trace of the error is:
    Wf_Event.setMessage(oracle.apps.wf.notification.send, 2762135, WF_XML.Generate)
    Wf_Event.dispatch_internal()
    I am not able to understand what it is

    For some reason the changes i am trying to save to database is not getting reflected, when i check out the diagram in the Status Monitor.
    Also i am getting this error, while saving the Workflow into the database:
    1602: Could not save.
    1400: Could not save to database. MODE=UPGRADE EFFDATE=2009/05/20 12:16:36
    1401: Could not upload ACTIVITY entity 'HRSSA/HR_MAINTAIN_SIT'.
    1401: Could not upload ATTRIBUTE entity '<null>/P_SIT_LOOKUP'.
    210: Oracle Error: ORA-01653: unable to extend table APPLSYS.WF_ACTIVITY_ATTRIBUTES_TL by 16 in tablespace APPS_TS_SEED
    ORA-01403: no data found
    ORA-06512: at "APPS.WF_LOAD", line 1713
    ORA-06512: at line 1
    . SQL text: BEGIN WF_LOAD.UPLOAD_ACTIVITY_ATTRIBUTE(:activity_item_type, :activity_name, :activity_version, :name, :display_name, :description, :sequence, :type, :protect, :custom, :subtype, :format, :default, :value_type, :level_error); END;

  • What's Best Approach for Multitrack Classical Music?

    Can someone suggest the best approach for recording classical musicians onto
    four tracks? In this scenario, they play until they make a mistake on, say,
    measure 24, stop, then (take 2) go back to measure 20 and play until the next
    rough spot, and so on. Ultimately there may be 15 takes that all need to be
    trimmed and stitched together.
    In the old (tape) days, this was pretty basic editing. I would use a blade and block
    to cut out all the bad stuff on the multitrack tape, then I could mix. But how do I
    do this in Audition? (I use version 1.5.)
    I can't do the cuts it in edit view because the tracks would get out of sync
    Assuming all the takes are in one session, in multitrack view, this most basic of
    functions seems to elude me. What am I missing?

    Al the Drifter wrote:
    If you follow Steve's advice, and after doing the edits you discover
    that one instrument should come up 1db, you are screwed.
    I could be wrong about this in the classical music environment,
    where things are not close-mic'ed but if I am, I am confident Steve
    will correct me.  Ha.
    You always run the risk of small changes between takes - and that's where Audition 3 and the new improved crossfades score rather heavily. You won't notice 1dB on a single instrument across a fade though - it's hard to spot this as a jump, even, unless it's on pure tone. No, I very rarely close-mic stuff at all, although I did with a clavichord recently - it's seriously too quiet to mic any other way.
    jaypea500 wrote:
     when recording classical music, any engineer worth anything has the mix down pat as it's being recorded. 
    That's the way they used to work, certainly - but not nowadays, especially if it's done on location, which most classical recording is. What's more likely to happen is that you'd use decent mic preamps feeding straight into a multitrack, or even some software on a laptop. I generally record like that - but I also feed the multitrack outputs to a Yamaha mixer via ADAT, do a mix on that and record it back to a spare multitrack pair. I don't actually need to do that - but having a mix available from the multitrack that's pretty much there is good as far as being able to play back takes to conductors is concerned.
    Of course, one of the other reasons that classical sessions recorded on location aren't mixed on the spot is that the monitoring conditions are invariably far from ideal, and I'd have it that no engineer worth anything would ever risk a final mix done on location.
    But I only get paid to do all of this on a regular basis, so what would I know? Must be something though - my customers come back for more...

  • A process for the performance monitoring, tuning and fixing issues

    Hello
    Any recommendations for 10g a process/procedure/methodology for the performance monitoring, tuning and fixing issues for a team to follow ?

    Ranker wrote:
    Hello
    Any recommendations for 10g a process/procedure/methodology for the performance monitoring, tuning and fixing issues for a team to follow ?1) upgrade the DB to a supported version.
    2) Read The Fine Manual; Performance Tuning Guide
    http://docs.oracle.com/cd/E11882_01/server.112/e10822/toc.htm
    Handle:     Ranker
    Status Level:     Newbie
    Registered:     May 12, 2013
    Total Posts:     13
    Total Questions:     4 (4 unresolved)
    How sad!
    why do you never get your questions answered here?

  • MacBook Pro 2011 Repair Extension Program for Video Issues -Feedback?

    Anybody have any feedback from the MacBook Pro 2011 Repair Extension Program for Video Issues?
    I had my early 2011 15 inch 8,2 repaired (free) under the extension program. The machine now appears to run well - but much hotter than before. The case is significantly hotter - especially at the GPU corner and the fans are constantly on moderate to high (not full). Anybody else experiencing similar changes?

    Run an Apple Hardware Test;
    https://support.apple.com/en-us/HT201257
    Note an error free AHT is not definitive.
    install iStat menus:
    http://bjango.com/mac/istatmenus/
    Set Activity Monitor to ALL PROCESSES and set CPU to display values from high to low.
    When the MBP gets hot, post images of both for inspection.
    Ciao.

  • Epson Status Monitor

    Can anyone help me with this issue?
    We have an Epsons Aculaser C900 - the great thing about it is that it has a Status Monitor that lets us know what the go is re cartridges, etc...
    Since installing a new progam on the mac, the status monitor for the epson has disappeared, never to be found again! We have been told by Epson and our techies that Epson doesn't do a printer driver for 10.4, but it was working just fine prior to the installation...
    Any ideas?
    Thanks

    Hi Tom!
    Look here:
    http://gimp-print.sourceforge.net/
    Gutenprint is the new name for Gimp. The latest update works well.
    As a matter of interest I could never access the Epson driver's status monitor to check ink levels etc or ask it to clean. But I recently had to do an archive and install, which also meant re-installing both the original Epson driver for OS X, and the driver for my Epson Scanner. Now everything works! The trick is to add your printer to the list so that you can choose which driver you are using.

  • Design Patterns, best approach for this app

    Hi all,
    i am starting with design patterns, and i would like to hear your opinion on what would be the best approach for this app. 
    this is basically an app for data monitoring, analysis and logging (voltage, temperature & vibration)
    i am using 3 devices for N channels (NI 9211A, NI 9215A, NI PXI 4472) all running at different rates. asynchronous.
    and signals are being processed and monitored for logging at a rate specified by the user and in realtime also. 
    individual devices can be initialized or stopped at any time
    basically i'm using 5 loops.
    *1.- GUI: Stop App, Reload Plot Names  (Event handling)
    *2.- Chart & Log:  Monitors Data and Start/Stop log data at a specified time in the GUI (State Machine)
    *3.- Temperature DAQ monitoring @ 3 S/s  (State Machine)   NI 9211A
    *4.- Voltage DAQ monitoring and scaling @ 1K kS/s (State Machine) NI 9215A
    *5.- Vibration DAQ monitoring and Analysis @ 25.6 kS/s (State Machine) NI PXI 4472
    i have attached the files for review, thanks in advance for taking the time.
    Attachments:
    V-T-G Monitor_Logger.llb ‏355 KB

    mundo wrote:
    thanks Will for your response,
    so, basically i could apply a producer/consummer architecture for just the Vibration analysis loop? or all data being collected by the Monitor/Logger loop?
    is it ok having individual loops for every DAQ device as is shown?
    thanks.
    You could use the producer/consumer architecture to split the areas where you are doing both the data collection and teh analysis in the same state machine. If one of these processes is not time critical or the data rate is slow enough you could leave it in a single state machine. I admit that I didn't look through your code but based purely on the descriptions above I would imagine that you could change the three collection state machines to use a producer/consumer architecture. I would leave your UI processing in its own loop as well as the logging process. If this logging is time critical you may want to split that as well.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

Maybe you are looking for