Clarity

Expand all | Collapse all

CA PPM - Action Item - Processes

  • 1.  CA PPM - Action Item - Processes

    Posted Oct 26, 2018 10:34 AM

    Hi, 

     

    I am working on building a portlet to list the processes against the object. Is there any way to obtain the custom processes name that is running against the object ? I would need the table name 



  • 2.  Re: CA PPM - Action Item - Processes
    Best Answer

    Broadcom Employee
    Posted Oct 26, 2018 02:30 PM

    If I am understanding what you are trying to do correctly, this should do the trick:

     

    select ccn.name from bpm_run_processes brp, bpm_def_process_versions bdpv, bpm_def_processes bdp, cmn_captions_nls ccn
    where brp.id = your_running_process_instance_id
    and brp.process_version_id = bdpv.id
    and bdpv.process_id = bdp.id
    and bdp.id = ccn.pk_id
    and ccn.table_name = 'BPM_DEF_PROCESSES'
    and ccn.language_code = 'en'

     

    Jeanne



  • 3.  Re: CA PPM - Action Item - Processes

    Posted Oct 26, 2018 03:03 PM

    Thanks Jeanne