Role of an instance

Hi,
short question, how can I get the role of the active activity, when I have an instance object of another process (not the current one)?
I have tried to get the activity by "Activity(instance.activityName)", but this works only for activities of the current process, not of another one. So I tried to get the Process itself and cycle through the activity list, but there is also only the possibility to get the current one.
So, does anyone how to get the role for an instance of another process?
Many thanks for your help.
Kind regards
Matthias

Hi Matthias,
Here's one approach to getting the name of the activity and the role for an instance if all you know is the instance's id (e.g "/Test#Default-1.0/2/0"). Sure there are better ways to have done this.
It's a bit of overkill (it retrieves all the instances for the process "Test" and shows all of their activity and role names).
As you know, the instance id is a String formatted like this: "/Test#Default-1.0/2/0". In this example, you can use this instance id string to figure out the instance's number ("2") for the instance and the process id ("/Test"). Since you know the instance id, your logic would just need to create the session and the filter and the second of the two "for" loops shown below. The second "for" loop is iterating through an array, but the array will always have only one value since there will only be one instance with the unique instance number.
package papistudiotest;
import fuego.papi.BatchOperationException;
import fuego.papi.CommunicationException;
import fuego.papi.Comparison;
import fuego.papi.Filter;
import fuego.papi.InstanceInfo;
import fuego.papi.OperationException;
import fuego.papi.ProcessService;
import fuego.papi.ProcessServiceSession;
import fuego.papi.SearchScope;
import fuego.papi.StatusScope;
import fuego.papi.VarDefinition;
import fuego.papi.collections.InstanceInfoList;
import fuego.papi.collections.ProcessIdSet;
import java.util.Properties;
public class PapiInstance {
    public static void main(String[] args) {
        /////////////////// API Initialization ///////////////////
        Properties configuration = new Properties();
        configuration.setProperty(ProcessService.DIRECTORY_ID, "default");
        configuration.setProperty(ProcessService.PROJECT_PATH,
                                  "C:/OracleBPMWorkspace/TestProcess");
        configuration.setProperty(ProcessService.WORKING_FOLDER, "/tmp");
        int instNumber;
        instNumber = 0;
        try {
            ProcessService processService =
                ProcessService.create(configuration);
            /////////////////// Establish a session ///////////////////
            ProcessServiceSession session =
                processService.createSession("test", "test", null);
            /////////////////// Operate with PAPI ///////////////////
            // get the instances
            for (InstanceInfo instance: session.processGetInstances("/Test")) {
                System.out.println("** fetching id -> " +
                                   instance.getInstanceIn());
                instNumber = instance.getInstanceIn();
                // Search instances which begin with a specific string in an external variable value and
                // stay in a specific activity.
                Filter filter;
                filter = ProcessService.createFilter();
                SearchScope searchScope =
                    new SearchScope(fuego.papi.ParticipantScope.ALL,
                                    fuego.papi.StatusScope.ALL, null);
                searchScope.setStatusScope(StatusScope.ONLY_INPROCESS);
                filter.setSearchScope(searchScope);
                filter.addAttribute(VarDefinition.getDefaultVarDefinition(VarDefinition.INSTANCE_NUMBER),
                                    Comparison.IS, instNumber);
                filter.setMatchAll(true);
                ProcessIdSet pids;
                pids = ProcessIdSet.create();
                pids.add("/Test");
                // Search instances.
                InstanceInfoList instances;
                instances =
                        session.processesGetInstancesByFilter(pids, filter);
                for (InstanceInfo ii: instances.toArray()) {
                    ii.getId();
                    System.out.println("id is: " + ii.getId());
                    System.out.println("activity name - this is the one: " +
                                       ii.getActivityName());
                    System.out.println("role name - this is the one: " +
                                       ii.getRoleId());
            /////////////////// Release API Resources ///////////////////
            /////////////////// Close the session ///////////////////
            session.close();
            /////////////////// Release API Resources ///////////////////
            processService.close();
        } catch (CommunicationException e) {
            System.out.println("Could not connect to Directory Service");
            e.printStackTrace();
        } catch (OperationException e) {
            System.out.println("Could not perform the requested operation");
            e.printStackTrace();
        } catch (BatchOperationException e) {
            System.out.println("Could not perform the batch operation");
            e.printStackTrace();
}Hope this helps,
Dan

Similar Messages

  • NW 7.3 and roles from backend instances

    Hi
    I'm trying to find out more information about roles from backend instances in NW 7.3.  In particular how the roles are synchronised with changes that may occur to the roles in the backend (ie role changes or users allocated to the role).
    I haven't been able to find this kind of details in SAP Help or SMP.
    Thanks
    Doug

    Hi,
    I did face the same problem when i first configured AS JAVA system and really struggle and grease my elbow to get it working.
    I would advise your to upgrade to latest SP level, SP03 and also the CIM and CR Content for SLD to eliminate all possible bugs.
    However you can try as below:
    1) go to SMSY -> search for the SID instance
    2) Highlight the SID and click "Change"
    3) Technical system editor will prompt out, and you'll see no Product Version and Product System assigned.
    4) Next, navigate to software component and click on "Software Component Versions" and assigned the correct product instance by click the fitting SC proposal. SAVE and leave the page.
    5) Now, go to SOLMAN TX: LVSM and webdynpro will display
    6) Ensure the Landscape verification job is full sync and completed. Else, you can trigger using LVSM_LOAD.
    7) Go to tab "Errors Warnings" and look for the SID, and you'll see that product instance SID is not assign to a product system.
    8) on the same page, click "Add product system" and select the correct product and product version. For eg: Your product is Netweaver EHP2 you should first assign product as SAP Netweaver, and Version is EHP1.
    9) Select the correct SID and correct Product Instance on the next screen, click Finish and SAVE once done. Remember, you can only select ONE PRODUCT INSTANCE HERE!!
    10) Now, go back to Technical System Editor and change the entry for the particular SID.
    11) Here, you can see the Product Versions and Product System is filled on the main object. Check all your entry and save is everything is correct.
    12) Go back to SMSY, and you should able to see the SID is populated under the correct Product and Product Version.
    13) Now in SMSY, you should able to change the data for Product System such as assign Installation no, read system number, sync with SAP and etc.
    Hope it helps,
    Cheers,
    Nicholas Chang

  • Co-Loc versus Dedicated In-Role Cache - both available to all instances?

    Trying to confirm that this is true. The only real difference between the co-located and dedicated in-role cache is that the co-located shares the memory with the role whereas the dedicated uses all the memory of the role. I'm assuming that even in a co-located
    cache the cache is synced and not per instance? Meaning if I set up a co-located cache on my web role and that role has multiple instances, the cache will be the same for all instances (objects added to cache from one instance would be available in all instances). 
    Dan

    Hi,
    We can see this from Role Cache FAQ (Windows Azure Cache).
    Here is a snippet.
    What is the difference between co-located and dedicated Caching topologies?
    There are two main ways a role can host In-Role Cache: co-located and dedicated. In the co-located topology, the role that hosts In-Role Cache also hosts other web role or worker role functionality. The memory and resources of the role are shared between
    caching and non-caching application code and services. In the dedicated topology, which is supported for worker roles, the worker role only hosts caching. These Cache topologies differ primarily in the percentage of memory that is dedicated to Cache. For more
    information, see the topics on co-located Caching roles and
    dedicated Caching roles.
    Best Regards
    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.
    Click
    HERE to participate the survey.

  • How to count direct plus indirect roles assigned per user (8.1.7.4) ?

    Hi, because of the 148 max roles limit in 8.1.7.4 (and because we use Noetix that generates many roles !), we would like to build a query that can be used as an alert and that tells us the following: Number of roles (direct and get from inheritance of roles).
    For instance:
    user howmanyroles
    Fred 12
    Noetix 125
    ..

    1.-
    2.c
    3.a
    4.a
    5.c
    6.b
    7.a
    8.d
    9.b
    10.a -
    11.a
    12.c
    13.b
    14.d
    15.c
    16.a -
    17.a
    18.d
    19.c
    20.a
    21. -
    22.d
    23.b
    24.?
    hope it helps u.
    Thanks
    Kuljeet

  • Error during the deployment of the MONITORING role

    hello all, 
    i installed lync 2013 server  SQL server store "FQDN\rtc" , i want to install the monitoring so what i did is to create a new instance under lync topo builder->shared components->sql server store "FQDN\monitoring" for monitoting
    and archiving.
    when i publish the topology there is no error but when i try to deploy the wizard i have an error 
    "failed to find sql service. make sure that sql server service (FQDN\monitoring)  is installed in machine"
    more when i try to deploy the monitoring , this is what i have 
    any advice to fix it?
    thanks

    This error related to reporting services, you need to verify that reporting services is installed on these instances.
    Secondly, you didn't need to create this instance manually then setup monitoring role. delete this instance from shared storage and try again to setup rule using different instance name and it will create automatic on shared storage.
    You can also refer below link
    http://windowspbx.blogspot.com/2012/07/aaa-donotpost-install-lync-standard.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • BPF Template and BPF Instance

    Hi All,
    In  BPF Template, in the DEFINE STEP REGION CRITERIA,we have given CORPORATE as the Dimension Members (Under Driver Diemension Member Selection) and under Selection formula we have given BAS.
    Driver Members          Selection Formula
    CORPORATE                BAS
    We have around 30 members as the BASE members of CORPORATE.If i create a BPF Instance for one BAS member, the BPF Template in the Web page is getting opened for all the BAS members.
    However i want the BPF  Template to be opened only for the BAS Member for which the BPF Instance is created.
    In case if i create the BPF instance for COPRPORATE  (which is the Parent Member) only and use the BPF Template for other users.will this have any impact elsewhere.
    Should i create BPF Instance for all  the BAS Members seperately?
    Also,What is the role of the BPF Instance owner?
    Thanks,
    Akash.

    Hi.
    Regarding the  role of BPF instance owner users who have been assigned access to the Business Process Flow (BPF) monitor can see a complete list of processes and display the full set of information available for individual process instances. The BPF instance owner can finalize and reopen steps from the BPF monitor.
    The BPF instance owner can also finalize an instance from the monitor. Finalize Process only appears in the BPF monitor when the process is fully complete.
    The BPF instance owner can reopen steps from the BPF monitor. They can reopen the step prior to the current active step by choosing Reopen Step.
    Hope it helps.
    Regards,
    Kiran

  • Migrate Application Role from uat to prod in 11.1.1.6.10

    Hi All,
    We have to migrate the UAT Application Roles to Prod instance. I followed Rittman Mead policy store migration. servers  in LINUX
    http://www.rittmanmead.com/2011/04/oracle-bi-ee-11g-migrating-security-policy-store-part-2/
    But at MigrateSecurityStore step, I am facing an issue with the wlst script which is throwing below error.
    I am getting bellow error
    wls:/offline> migrateSecurityStore(type="appPolicies",srcApp="obi",configFile="/ usr/app/MW/SecurityMigration/jps-config-policy.xml",src="sourceFileStore",dst="t                                                                                                         argetFileStore",overWrite="false")
    Oct 17, 2013 11:41:27 AM oracle.security.jps.internal.config.xml.XmlConfigurationFactory initDefaultConfiguration
    SEVERE: org.xml.sax.SAXParseException: The XML declaration must end with "?>".
    Command FAILED, Reason: The XML declaration must end with "?>".
    Traceback (innermost last):
      File "<console>", line 1, in ?
      File "/usr/app/MW/oracle_common/common/wlst/jpsWlstCmd.py", line 955, in migrateSecurityStore
      File "/usr/app/MW/oracle_common/common/wlst/jpsWlstCmd.py", line 927, in migrateSecurityStoreImpl
            at oracle.security.jps.internal.tools.utility.source.JpsInitializerSource.getSources(JpsInitializerSource.java:155)
            at oracle.security.jps.internal.tools.utility.JpsUtility.<init>(JpsUtilty.java:62)
            at oracle.security.jps.internal.tools.utility.JpsUtilMigrationPolicyImpl.migrateAppPolicyData(JpsUtilMigrationPolicyImpl.java:151)
            at oracle.security.jps.tools.utility.JpsUtilMigrationTool.executeCommand(JpsUtilMigrationTool.java:231)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
    oracle.security.jps.JpsException: oracle.security.jps.JpsException: The XML declaration must end with "?>".
    This is config.xml file
    <?xml version='1.0' encoding='utf-8'? standalone='yes'?>
    <jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd">
       <property name="oracle.security.jps.jaas.mode" value="Off"/>
       <propertySets>
    <propertySet name="sam1.trusted.issuers.1">
    <property name="name" value="www.oracle.com" />
    </propertySet>
    </propertySets>
       <serviceProviders>
          <serviceProvider type="POLICY_STORE" name="policystore.xml.provider" class="oracle.security.jps.internal.policystore.xml.XmlPolicyStoreProvider">
             <description>XML-based PolicyStore Provider</description>
          </serviceProvider>
       </serviceProviders>
       <serviceInstance name="srcpolicystore.xml" provider="policystore.xml.provider" location="/usr/app/MW/SecurityMigration/uat/system-jazn-data.xml">           
      <description>File Based Policy Store Service Instance</description>       
      </serviceInstance>
      <serviceInstance name="policystore.xml" provider="policystore.xml.provider" location="/usr/app/MW/SecurityMigration/prod/system-jazn-data.xml">           
    <description>File Based Policy Store Service Instance</description>       
    </serviceInstance>
       </serviceInstances>
        <jpsContexts default="default">       
    <!-- This is the default JPS context. All the mendatory services and Login Modules must be configured in this default context -->       
    <jpsContext name="sourceFileStore">           
    <serviceInstanceRef ref="srcpolicystore.xml"/>       
    </jpsContext> <jpsContext name="targetFileStore">           
    <serviceInstanceRef ref="policystore.xml"/>     
    </jpsContext>   
    </jpsContexts>
    </jpsConfig>
    Please let me know if i need to provide further inputs.Appreciate your help.

    make sure you are running the wlst.sh from this path /MWHOME/Oracle_BI1/common/bin/wlst.sh
    you can take a look at this too Migrating Security Policies from Development to Standalone WLS 11g
    http://ssssupport.blogspot.com/2013/02/obiee-11g-application-role-migration.html
    Obiee11g: Migrating application role from DEV to Prod server in obiee11g

  • UME Roles/Groups problem

    UME Roles/Groups problem
    I have installed an ABAP +J2EE instance with the view of using it for Adobe Document Services.
    While following the Adobe Document Services configuration guide, Step 3.2.1.1:
    I'm creating a role in the ABAP engine, creating a user (ADSUser); creating and assigning the role (ADSCallers) to it.
    When I start visual admin, i expect the user to be shown under the 'group': ADSCallers.
    While I can see the user in visual admin, I'm unable to see the group (role in ABAP instance)
    I'm on SP19 NW2004. Any views???

    There is a delay before roles show up as groups on the Java side. The delay runs about 30 minutes. See http://help.sap.com/saphelp_nw04s/helpdata/en/45/af3ac012d32e78e10000000a155369/frameset.htm
    -Michael

  • Need help with data filtering on groups/application roles

    Hello,
    I have a situation where I have to apply security on objects (reports, prompts etc) and dimension members (Essbase cube). So the idea is like this:
    Report 1: access to three users (U1, U2, U3), but for dimension Company they have separate rights:
    U1: Company A, Companies A.1-A.7 (children of A) and Companies A.1.1-A.1.9 (children of A.1);
    U2: Company A.1 and Companies A.1.1-A.1.9;
         U3: Company A.1.1
    same for Report 2, but users must have access to different companyes, like Company B, B1...
    In WebLogic Console I created three groups (G1-G3) and placed each user to a group (U1-> G1, U2 ->G2, U3->G3). Then in WebLogic EM I created three application roles (R1-R3) and added for each, corresponding user (R1-> U1, R2->U2, R3-> U3).
    My approach was to use application roles like this:
    R1: include User1 and filter data on repository by application role to each generation of the cube ("Data_Source_Name"."Dimension_Name"."Generation2,Dimension"='Company A',"Data_Source_Name"."Dimension_Name"."Generation3,Dimension"='Company A.1', "Data_Source_Name"."Dimension_Name"."Generation4,Dimension"='Company A.1.1')
    R2: include User2 and filter data on repository by application role to each generation of the cube ("Data_Source_Name"."Dimension_Name"."Generation3,Dimension"='Company A.1', "Data_Source_Name"."Dimension_Name"."Generation4,Dimension"='Company A.1.1')
    R3: include User3 and filter data on repository by application role to each generation of the cube ("Data_Source_Name"."Dimension_Name"."Generation4,Dimension"='Company A.1.1').
    I've noticed that, by default, each role inherites BIConsumer and "localmachineusers" application roles, so I set in repository these both roles to filter data as the role 3 (the lowest level of acces), in order for my roles (Roles 1 to 3) to have the highest privileges.
    In repository I cannot see any of my users (U1-U3), but just the application roles they are in.
    For Report 1 I set the access to Roles 1-3 and when I am logged on as U3 this report should display only the data for Company A.1.1, but it doesn't (displays data also for Company A, Companies A.1-A.7).
    In fact it seems, that the data isn't filtered at all, which drives me to the conclusion that my data filter is override by another role, maybe ?
    Could you please give me a clue about what I am missing here ?
    Thank you.

    Amith,
    Please bear this with me - see my comments below (search for petresion_Comments):
    So, we have three users who have access to a report called Report1. But the data that they see in the report needs to be different. The report has a dimension company, and each user needs to see different companies data. So the filtering needs to be done on company dimension.
    petresion_Comment: That's my case to solve.
    Now the groups in weblogic has no purpose in OBIEE 11g unless you are using an LDAP authenticator who has groups defined in the active directory. By this I mean the network people are maintaining the users and group relation necessary for OBIEE. So keeping the weblogic groups apart for a minute, lets deal with users and roles only.
    The three users are assigned to three different roles R1, R2 and R3. By default, all the roles inherit the BIconsumer role, and localmachineusers role you mentioned is not an OTB role. This is something that is probably causing the data filtering to fail. Do a test like create a user in weblogic, assign him only to the localmachineusers role, and go to analytics, and check your roles and groups by going under my account. Make sure this role is not inheriting any other roles like BIAdministrator, BIauthor etc. So in conclusion, when one of your users login, they should inherit only their custom Role (R1 for instance), BIConsumer, Authenticated User, and your custom role localmachineusers.
    petresion_Comment: That is what I checked on the first time (few days ago) and is exactly as you say (BIConsumer, localmachinerole and Role1).
    Do not apply any data filters on the BIConsumer role. This is not a good practice because the filters get applied to every single user that logs into the system.
    petresion_Comment: I know that, but appliyng filters on BIConsumer role I tried to make sure that its privileges doesn't overrides any of my Roles (1,2 or 3). I will remove the filter on BIConsumer.
    Now create the data filters on your custom roles (R1, R2, R3). Save the RPD. Deploy the Rpd through Enterprise Manager.
    petresion_Comment: Only difference in my case is that I stopped BI services, applied changes to rpd in Offline mode and then restarted BI services.But also tried as you mentioned (by the book in fact) and same result. The problem is the same, my roles(1,2,3) don't filter the companies at all.
    Once you are done with all the work above, you should login into analytics as user1. After logging in go to my account, roles and groups, and make sure you see the R1 in the list of groups. Now run the report, and your filters should get applied no matter what. If they are still not getting applied, grab the physical sql and see if the filters are existing in the where condition.
    petresion_Comment: Where can I capture the physical SQL (probably an MDX sent to the Essbase cube ?) ?
    One other reason could be, one of the roles that are assigned to the user1 by default, is overriding the filters. Like for example, if a user is assigned to BIAdmin role, and no matter if you assign him to a different role that has 100's of filters, he will still see all of the data.
    petresion_Comment: As I said before, each of my users are members of their roles, BIComsumer and localmachinerole, so no other privileges (no BIAdmin role).
    Thank you for the patience.
    John

  • Granted roles as a non-dba user

    One of the goals we are trying to do here is to let departments manage more of their roles by themselves. For instance, the sales department can manage the sales role, the customer service the customer service role, etc.
    However, as these are non-dba users, they do not have access to DBA_ROLE_PRIVS. Is there any way for an administrator of a role to see who has this role?
    For instance, as a quick example:
    create user sales_admin identified by *****;
    create role sales;
    grant connect to sales_admin;
    grant sales to sales_admin with admin option;
    connect sales_admin/*****
    grant sales to scott;
    Is there any way for sales_admin to see who has the sales role? Or will they need to go to the DBA and ask for a list?

    Granting "select any dictionary" privilege to sales_admin user is something that cannot be proposed ? Like this :
    SYS@db102 SQL> get sales
      1  create user sales_admin identified by sales_admin;
      2  create role sales;
      3  grant connect to sales_admin;
      4  grant select any dictionary to sales_admin;
      5  grant sales to sales_admin with admin option;
      6  connect sales_admin/sales_admin
      7  grant sales to scott;
      8* select * from dba_role_privs where granted_role='SALES';
    SYS@db102 SQL> @sales
    User created.
    Role created.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Connected.
    Grant succeeded.
    GRANTEE                        GRANTED_ROLE                   ADM DEF
    SYS                            SALES                          YES YES
    SALES_ADMIN                    SALES                          YES YES
    SCOTT                          SALES                          NO  YES
    SALES_ADMIN@db102 SQL>                                                                                

  • Assigning a ROLE dynamically in PAPI

    Hi, I've got a need to create an instance of a process and assign the ROLE to the instance dynamically through PAPI.
    I know how to create the instance, but not to assign a ROLE to it dynamically.
    Does anyone know how to do this?

    Hi,
    The right way to implement this use case, is to use parametric roles. Instead of creating a regular role, you can place an activity (let's say an interactive activity) in a parametric role. Parametric roles have the particularity that they need to be linked to a process instance variable of type String. This String value can be set dynamically and at runtime even with a value coming as an input argument to the process through the process instance creation.
    So your process pattern could look something like this:
    Begin -> Automtic -> Interactive (in a parametric role referencing the String instance variable called paramRoleValue) -> ...
    The Automatic activity method implementation could have something like:
    paramRoleValue = "part1"
    // We assume the participant that will have visibility is also identified somehow into a process instance variable (at least it userid)
    // Use logic to use the Fuego.Fdi.DirOrganizationalRole + Fuego.Fdi.RoleAssignment to dynamically assign the parametric role with the value "part1" to the target participant(s).
    HTH,
    eduardoc.

  • Node Roles

    Hi,
    I'm looking for the table that keep track of your node roles. By "Node Roles" I mean, when you look at your $CONTEXT_FILE, you have
    <TIER_DB oa_var="s_isDB">NO</TIER_DB>
    <TIER_ADMIN oa_var="s_isAdmin">NO</TIER_ADMIN>
    <TIER_WEB oa_var="s_isWeb">YES</TIER_WEB>
    <TIER_FORMS oa_var="s_isForms">NO</TIER_FORMS>
    <TIER_NODE oa_var="s_isConc">NO</TIER_NODE>
    <TIER_FORMSDEV oa_var="s_isFormsDev">NO</TIER_FORMSDEV>
    <TIER_NODEDEV oa_var="s_isConcDev">NO</TIER_NODEDEV>
    <TIER_WEBDEV oa_var="s_isWebDev">YES</TIER_WEBDEV>
    Which table keep track of all your node and their roles in your instance? I though it was ad_appl_tops, but I do not think so (my web node show Server_Type_admin_flag Y).
    Thank you

    Hi,
    Which table keep track of all your node and their roles in your instance? I though it was ad_appl_tops, but I do not think so (my web node show Server_Type_admin_flag Y).FND_NODES table.
    Please refer to [Applications Electronic Technical Reference Manuals (eTRM) |http://etrm.oracle.com] for more details about this table.
    Regards,
    Hussein

  • Curios about Lync 2013 std FE SQL instances - 3 of them?

    Hi there.
    We are just "curios" about instances which were created in SQL express for Lync server 2013 standard front end.
    Those are: LyncLocal, RTC, RTCLocal.
    We were wondering is it necessary to have all the three ones?
    What is the "role" of every instance?
    bostjanc

    Yes. It is necessary to have all three databases.
    You can take a look at Jeff's blog here for more detailed information
    http://blog.schertz.name/2013/03/lync-server-2013-deployment-part-2/
    Also, take a look at the following technet article which explains what each database is used for
    http://technet.microsoft.com/en-us/library/gg398479.aspx
    Hire Us : http://www.datsit.in/
    Get your first Lync project done absolutely free!

  • Assign Role to participant in a group

    have a group sales department
    that has roles sales
    sales has 3 participant
    How can I assign intances to all 3 people using group.
    Please advice

    Hi,
    I uploaded a project that has three processes in it that might help you http://www.4shared.com/file/116789115/542a1afd/AssignWorkToSales.html
    All three use the Group "Sales Department" and the role "Sales" (the role is in the Group).
    1) The process in the project named "Sales Process One" shows the default behavior. When an instance is created in this process it flows to the Interactive activity "1. All Sales People See This" in the Sales role. The instance is not assigned to any of the sales people and can be performed by any of them. The first one to perform the task completes it and the work item instance disappears from all of the sales people's queues.
    To run this,
    a) log into the Workspace as "mike" (the manager)
    b) click the Global Creation activity called "1. Create Order Seen by all Sales People"
    c) log into the Workspace as any of the sales people ("sally", "sam" or "samantha")
    d) note that in the Particpant column, the work item instance is Unassigned. This means that any participant in the Sales Department Group (or Sales role) can click the "Send" link beside the instance. Once this occurs, the instance disappears from the inboxes of all the people assigned to the Sales Department Group
    2) The process in the project named "Sales Process Two" shows a technique to assign the work to each individual participant. When an instance is created in this process it flows to the Multiple activity named "Assign to Specific Sales People". Double click this activity to see how to assign copies of the instance to every participant in Sales Department Group. In this case there are 3 sales people so 3 copies are created and travel to the Interactive activity "2. Only Assigned Sales Person Sees This" in the Sales role.
    To run this,
    a) log into the Workspace as "mike" (the manager)
    b) click the Global Creation activity called "2. Create Order Seen by all Sales People"
    c) log into the Workspace as any of the sales people ("sally")
    d) note that in the Particpant column, the work item instance is assigned to "Sally". This means that only Sally can click the "Send" link beside the instance. Once this occurs, although the instance disappears from her inbox, the inboxes of the other people in the Sales Department Group still have work item instances assigned specifically to each of them in their inboxes.
    e) for this work item instance to successfully reach the End activity of the process, each of the Sales Department participants will need to complete this work item as well.
    3) The process in the project named "Sales Process Three" shows a technique to evenly distribute work item instances to a specific participant in a round robin fashion. When an instance is created in this process it flows to an automatic activity that gets the next participant to assign the work item instance to using the method in the Catalog Ulitliy.RoundRobin.getNextParticipant(). Open this method to see how to assign the instance to a specific participant in Sales Department Group using round robin distribution. In this case there are 3 sales people so the first instance goes to "Sam". When another instance is created the second instance goes to "Samantha". When the third instance is created it is assigned to "Sally". When the 4th instance is created to loop starts over again with "Sam"
    To run this,
    a) log into the Workspace as "mike" (the manager)
    b) click the Global Creation activity called "3. Create Order Assigned to Sales People (Round Robin)". Click this two more times
    c) log into the Workspace as any of the sales people ("sally")
    d) note that in the Particpant column, the work item instance in the activity "3. Work Assigned to Sales Person (Round Robin)" is assigned to "Sally". This means that only Sally can click the "Send" link beside the instance.
    e) Once Sally completes the instance, it goes to the End activity.
    Hope this helps,
    Dan

  • Asign roles to hosts in TREX istributed configration

    hi experts,
    I am trying to setup two trex servers with one file server.
    The file server is used as a centralized strage.
    The TREX system has one instance in each nodes
    to be asign roles(master,slave in 1st node/backup slave in 2nd node).
    So I was wondering I need to setup two instances in each
    node.Because the TREX admin tool seems to accept only
    one role to one instance. Actullay i wanna asign two roles to
    one instance.
    if anybody knows this is specification or my mistake,
    Please instruct me.
    Regards
    MASAKI

    When I execute RSPOR_SETUP report from SE38 to check the configuration between BW and Protal, the system shows the following message:
    http://img58.imageshack.us/img58/1910/j2eegw5.png
    http://img53.imageshack.us/img53/4158/step7vf1.png
    This is my configuration:
    http://img58.imageshack.us/img58/5937/strustry9.png
    http://img142.imageshack.us/img142/9721/keystorageyt6.png
    http://img53.imageshack.us/img53/6971/ticketbl2.png
    http://img53.imageshack.us/img53/2689/evaluatemr0.png
    http://img177.imageshack.us/img177/1271/umeyz5.png
    http://img53.imageshack.us/img53/9763/slddf1.png
    Entry in dev_jrfc.trc
    Message : java.lang.RuntimeException: call FM RSWR_RFC_SERVICE_TEST to ProgId SAPIA64BW_PORTAL_EPI on host SAPIA64BW with SSO not authorized: Missing Password
    Datasource : 11197950:J:\usr\sap\EPI\JC01\j2ee\cluster\server0\dev_jrfc.trc
    Could you please help me??
    Thanks in advance
    Edited by: Juan de la Cruz Arellano Royo on May 21, 2008 11:17 AM

Maybe you are looking for

  • My ipod freezes when i goto play music or any apps with music any answers for this one?

    ever since update 4.2.1 my ipod has not played music or videos and when i try to play either music or videos it freezes, help me......

  • How to convert string to date

    HI Everyone, i am trying to convert a date which is in string format to a date format...but i am having this error javax.servlet.ServletException: Unparseable date: "2004-05-03" Can anyone help? Here is a piece of code :- SimpleDateFormat formatter=

  • IPhoto Albums are empty

    Last time I opened iphoto, all of my photos are in the library, but my albums are empty. Any ideas

  • New itouch: FaceTime won't let me sign in!

    I just got a new itouch for Christmas, and I absolutely cannot get FaceTime to work. I have tried everything. Everytime I try to sign in, it says that my password is wrong. I know that it is correct, because I checked it on other apps. I went ahead a

  • Moving files and folder structures in PSE8

    I have a new computer with much more hard disk space.  So now I want to move about 2,000 photos in the organizer from an external hard drive to my local drive.  Easier to work with my photos that way, and I have automatic backup of my hard drive to a