List of project members and business process owners

Hi Experts,
Can any one tell me where we can view list of Business Process Owners and list of Project members who are involved in a particular project.
I know that we can view list of team member in authorisation view. is there any other view to view list all member who are all involved in a particulat project.
Regards
Sasikanth.Ch

Try this
IGPProcessInstance process = ... ;
IGPBlock processTemlate = (IGPBlock) process.getTemplate() ;;
for (int i = 0, len = processTemlate.getRoleInfoCount(); i < len; i++)
IGPRoleInfo roleInfo = processTemlate.getRoleInfo(i) ;
String techName = roleInfo.getRoleName() ;
Enumeration userEnum = process.getUsersForRole(techName) ;
//store users to some global collection or your table (IUser)

Similar Messages

  • Undeploying the BPM project from Oracle Business Process Workspace

    Hi all,
    I am facing problem in deploying the project to Oracle Business Process Workspace, I had some issues while deploying the project for the first time, and now when i am again trying to deploy the same project, it is giving the error "*Deployment failed, Module already exists on server*".
    is there any way i can deploy the project or delete the existing project from workspace and then redeploy the project ?
    IDE used : Jdeveloper 11.1.5
    Server used : Weblogic 10.3
    Please guide me in this as soon as possible.
    Thanks and Regards
    Debarati

    Hi
    1. Yes, from EM Console, first Undeploy the Workflow Project that you can find under SOA -> soa_infra -> default node.
    2. Then expand Application Deployments -> Look for the UI Project (that has taskforms etc) and make sure to select it and Undeploy this also.
    3. Now comes, what and how exactly are you deploying your SOA/BPM application. Any SOA/BPM application will have one Workflow project (atleast) and one or more UI Projects (for each user task). Also there may be some other utility projects or EJB projects. Now to deploy the entire application you have couple of options. Just select your Workflow project and deploy and during this time, it will list out all UI Projects and you can check all of them. Also for Workflow you can check one check box to overwrite any existing versions like 1.0. In this way you will have full Workflow deployed and all UI Projects also deployed. Once you do this, you cannot again deploy just the UI Project. Thats when you get these errors like already deployed etc. Now disadvantage here is, if you just make only UI changes, you cannot deploy only UI Project since it is already deployed as part of full app. So you had to again deploy Workflow project and check all ui projects also. this means all your existing workflow instances will become stale (redeploy of workflow makes all old tasks stale).
    4. Another and more ideal standard way is, first deploy just the Workflow project and DO NOT check any UI Projects. Then from the Application Level, deploy the entire application that includes all the UI Project and any other Projects. Just select your application, properties and deployment section. And see the projects included in the application. Make sure you DO NOT check the workflow project. But check all other projects like UI or any other project. In this way, any changes you make to UI or EJBs, just deploy the application. Your workflow is still the same old. Bottom line, Workflow Project is created as a SAR (SOA Archive) which is like a jar file. And entire application is deployed like an EAR file. So you will have 2 files for deployment to any other Env where you do not have like JDev.
    For now, follow first 2 steps, to undeploy all the stuff you have. Then you should be able to redeploy using one of the above options.
    Thanks
    Ravi Jegga

  • Diff. between business process masterlist and business process procedurelis

    hello gurus,
    pls tell me the main difference between business process master list and business process procedure list
    so please help me in this matter.
    regards,
    muralidhar.t

    hi, 
    Business process procdures ( normally called as BPP)  are one  which explain users how to perform a transaction  or a series of transaction for carry out a business acitvity  ( Like   creating a PR, converting PR  and releasing it).
    Business procedure Master list  ( called BPML )  is done in the begining of the project to define  the scope  and cover  all the processes that the project will be covering .   You will track all the deliverables on the project based on the BPML  ( It will contain  process and sub process descriptions )
    Example :  Order to cash  -->  Book order, Acknowledge order,  Amend order,  Ship , Bill, returns  etc..)
    Hope this  should give you an idea.  For details  refer to implementation methodlogies  ( like ASAP)  .
    cheers
    Rav

  • Difference between Business service, Business system and Business process

    Hi,
    Can anyone tell me the difference between Business service, Business system and Business process?
    Thanks,
    Harikumar. S

    Hi,
    <b>Business system</b>
    It is a logical system from a business point of view.
    One or more logical systems that belong together from a business point of view is called a group of Business system group. A business system group represents a unit within a company or organization that can be defined according to legal, economic, administrative or geographic factors.
    The objects in a business system group are uniquely identified by a uniform numbering system.
    <b>Business process</b>
    Business procedure within an enterprise that uses resources and can involve activites from a number of different cost centers in a controlling area.
    When executing a business process, activities can be utilized for several cost centers of a controlling area.
    <b>Business service</b>
    It’s a third party system.
    All these belong to a Business Scenario which is
    Description of the flow of business processes according to a business typology. A business scenario represents a template for a business process, which runs within a particular area of a company process. All processes required to completely process the task are listed in chronological order in the scenario. Business scenarios can be described graphically, in either aggregated or detailed form (EPC). Example: Direct sale to industrial recipient
    <b>**DO REWARD POINTS IF THIS IS HELPFUL FOR YOU**</b>
    Regards
    AK

  • Admin View or Functionality for the Business Process Owner

    Hi
    I have a requrirement that Business Process Owner (not the IT person), should be able the search the process instances and take action on them like "terminate process" or "Change Authorization".
    However the Business Process Owner do not want to go through the "Guided Procedures" -> "Administration" -> "General" menu clicks.
    Business Process Owner should able ONLY to get to "Maintain Processes" option of the "General" or "Overview" menu.
    Also,
    Business Proces Owner would like find the process instances based on only the  Instance Name and/or Instance Status and/or  Start Date Range.
    Is there a prebuilt functionality or is there way to utilize the SAP CAF delivered components by configuring the permission/roles. 
    IF NOT, how to access the process instance data so I can custom build this kind of functionality.
    Thanks,

    Hi Abhay,
    As I know GP does not provide such a pattern which covers your requirements.
    You can build this functionality in custom way.
    I propose the following:
    Use the
    public IGPProcessInstanceInfo[] com.sap.caf.eu.gp.process.rt.api.IGPRuntimeManager.getCompletedInstances(GPSearchRole searchRole, Date startDate, Date endDate, IGPUserContext userContext) ;
    and
    public IGPProcessInstanceInfo[] com.sap.caf.eu.gp.process.rt.api.IGPRuntimeManager.getRunningInstances(GPSearchRole searchRole, Date startDate, Date endDate, IGPUserContext userContext)
    to retrieve process instances by your search criteria.
    As search role you should use the GPSearchRole.OWNER.
    After this you can filter these processes by name in custom way and represent them.
    To terminate a process instance you can use the following method:
    public IGPProcessInstance com.sap.caf.eu.gp.process.rt.api.IGPRuntimeManager.stopProcess(IGPProcessInstance processInstance, IGPUserContext userContext) ;
    You need to use GP exposed public api:
    DC: caf/eu/gp/api
    PP: external
    POssible it helps.
    Best regards,
    Alaiksei

  • Customization and business process behind NRAB (free goods) condition type.

    Hi Experts,
    I am currently working on SAP DSD development. and for pricing procedure we are using ZCPB10 (beverage kalkulation).
    There is a condition type maintained NRAB for free goods .I had seen many threads explaining the concept behind it.
    But i am clueless about the customization and business process behind it.
    Can someone help me in customizing by giving an example ,so it would be very helpful for me to use .
    Regards
    Chinmaya

    Hi Lakshmi.
    The business process is pretty clear.We are selling 10 beer cans to the customer and charging for 8.So basically we need to get inclusive free goods.As per my understanding without going to free goods we can achieve this by NRAB condition type in our pricing procedure.
    So the point is how can i set it up or what is the configuration behind NRAB condition type so that it can act in our pricing procedure.

  • Fund management configuration and business process document

    hi,
    Can anyone provide me fund management configuration and business process document
    Mahendra M

    Hi,
    maybe this document will help you more:
    http://perlhosting.net/download/968192356.html
    SAP78V

  • Business Process Repository Server and Business Process Publisher

    Hello,
    How to install "Business Process Repository Server" and "Business Process Publisher"?
    Tanks
    Daniela

    Hi,
    Both business publisher and process repository are available in CD2 of BPA Suite complete (for windows OS).
    Important step before installing the business process repository is that you must have installed the database. Or else you must have installed BPA with OracleLite or XE database. At the time Business process repository installation you need to choose the database option 1 if Oracle enterprise data base is installed, else you may choose option 2 which says you already have BPA installed with database.
    regards,

  • Business unit in mitigation control and business process in rule architect

    Dear Friends
    Can any one please tell me the difference between business unit configuration in mitigation control and business process in rule architect.
    If they are same, why we are configuring the same two times.
    full points awarded for good answer.
    Thanks and Regards
    A.Rama Krishna.
    Edited by: Ramakrishna Ailanani on Nov 25, 2008 10:02 AM

    Hello Ailanani,
    The use for these entities solely depends on the business and has to be decided between the implementors and the BPOs. This can vary a lot from organization to organization and thus cant be generally stated.
    Also, as this would be an integral part of the implementation, would advice you to be sure and clear once you define them or take help from some GRC AC consultants who can guide you on the same. Without a clear definition of the BPs and the BU's you may end up putting a lot of time, money and resource for a thing which probably you might have to reverse later.
    Regards,
    Hersh.

  • Solman HP- ALM Integration and Business Process Configuration

    Hello Solman Experts,
    Can anyone provide me the links/docs/materials/SAP application Help/Wiki etc for Solution Manager to
    HP-ALM Integration and Business Process Mapping/Configuration.
    Thank you in advance and waiting for the answers.
    Regards,
    Eswaran

    Hi
    check below blog for this
    End to End testing with HP ALM 11 and SAP Solution Manager 7.1
    thanks
    Prakhar

  • Enterprise SOA and Business Process Platform

    http://www.surveygizmo.com/s/173766/enterprise-service-oriented-architecture-and-business-process-platform
    Appreciate if you could please spend a few minutes from your precious time to fill up the survey.

    Or that phase of product life cycle..
    It seems as if academics are taking an increasing interests in SDN for gathering data. Possibly a knock-on of the University Alliances.
    IMO this one is legitimate.
    Cheers,
    Julius
    ps: Haven't guestified a Professor yet for ponits gaming with students. A whole new market!...

  • Need table information for Business process ID and Business process status

    Hi Guys/Sap,
                         I need PI table for business process ID(BPM) and Business process status table .Kind if any one know help me out .
    I have checked blog but ia could only fine basic tables .
    https://wiki.sdn.sap.com/wiki/display/XI/Useful%20ABAP%20tables%20in%20SAP%20XI.
    Regards,
    Sriram

    Hi Sriram,
          Search SE11 for SWF* tables.
    Regards,
    Ravi

  • Blue Print Documents and Business Process

    Hi,
    I am looking to work in XI,
    Please give me brief idea about Blue Print documents in XI, who will  provide it, and who will use it.
    How the business process in XI is designed, who will design it, How many Integration scenarios it will consist,
    Please provide me an example for this.

    Please give me brief idea about Blue Print documents in XI, who will provide it, and who will use it
    there is normally a team who is assigned with the duty to perform requirement gathering......additionally there may be a team who consolidates all these reqs and builds the blueprint documents out of it....same may be the case in your project....get these details from the person handling your project.....usage of these documents is for the entire projecvt team
    How the business process in XI is designed, who will design it, How many Integration scenarios it will consist,
    business process is developed by the functional and techinal consultants.....
    Number of integration scnarios are not fixed/ limited and nobody in SDN can predict it for your project....this Q will be best answered by your manager....

  • List of all cubes and business descriptions.

    What is the best place is to get a list of all cubes and ods's along with their business descriptions?  Also, where can we find a list of all cubes, ods's and process chains containing these tables?
    Thanks,
    MB

    go to metadata repository
    in RSA1 n u will get list of all cubes, odses , queries.....(which are active n in use)etc
    in SE11
    tables for infocube:-
    RSDCUBE
    RSICCONT
    for ODS:
    RSDODSo,
    or type RSDOD* n press f4
    u will get all tables of ODS
    for Process Chain:
    typr
    RSPC* n press f4 u will get all tables of process chain
    Edited by: Arun Purohit on Apr 25, 2008 8:13 PM

  • Uprgade/update and business processes

    Dear Gurus.
    How can solution manager help to detect which   business processes are affected by support packages update?
    Is it possible to receive a list of transactions that wee nee to check after upgrade?
    Regards
    Vladimir

    Hi
    BPCA & SEA should help.
    SEA is more focused on code / DDIC changes.
    For both what you'll get will depend on what has already been defined in solution manager, and the time you'll spend working on it. Do not expect to get that transaction list in few clicks...
    Regards
    Overview of Business Process Change Analyzer
    How to guide of Business Process Change Analyzer
    Overview of Scope and Effort Analyzer
    How to Guide for Scope and Effort Analyzer

Maybe you are looking for

  • Suggestion for Incredible Owners

    If you care about the 2.2 update.  I got to thinking about a solution that should work.  In order for it to even have a chance we need to e-mail HTC support and make the suggestion.  The more people who do it the more likely it is but even if it isn'

  • Moving average price in case of project stock

    Hi, How to check the moving average price of a material in case of project stock? T code or table will help.. Regards,

  • Nokia n95 8gb CDC COMMS ERROR - FAILED DRIVER INST...

    Hi, If anyone could put this demon to rest I would be greatly appreciated. I have been using my NOKIA N95 8GB for over a year with my computer, that runs Wondows Vista. A few months back I discovered that My phone would no longer connect to the compu

  • Stuck Hard Drive in G5

    About 2 years ago, I added a hard drive in the second hard drive compartment. I would like to replace it with a recently purchased 1 TB SATA hard drive that is desperately needed, but the hard drive in the second compartment will NOT budge whatsoever

  • Can't Video Chat with iChat and AIM for PC

    I recently bought a MacBook Pro and I'm using iChat (obviously). I've tried many times to have a One-Way Video chat with my friend who is using Windows XP and the newest version of AIM for Windows. When we connect to the video chat I can see myself b