In External activity activity qty is maintain as a not mandatory

Dear All ,
In my project i am using external activity ,when i was trying to release the external activity, system takes activity qty as a mandatory field ,i have not touched the fields status but it's shows as a mandatery.if i fill the qty and unit then system allows me to release the external activity but in the PR system it create one more line item with out having any material. As per client requirement  activity qyt is not mandatory and with out material system is not creating the line item. Please suggest me.
Regards
R.B.Rao

Hi,
external processing activity is another type of service procurement where you can proceed without any specification/service master, If you want tocreate PR only with service switch on the "service" option on Ext.Processing activity don't use Ext. processing activity.
still you can stop creating PR upon releasing if you put "Reservation Relevance/Generation of Purchase Requisition" in to never, this is appearing on Procurement Param. tab of ext.Proc.activity
Hope this would help you.
Regards,
Sam L.

Similar Messages

  • Logic for Activity Qty and its unit of meas for external network activity,

    Hi,
    For external network activity, controlling key PS02. I want to read Activity Qty and its unit of measure.
    Is there any function module or Bapi for this or any selection table logic?
    I have tried BAPI_PROJECT_GETINFO and BAPI_NETWORK_GETDETAIL but I am not able to get this field?
    If anyone has solution please let me know.
    Thanks.
    Prem

    Got the alternative solution

  • Error in external interactive activity redirection from workspace

    I'm not able to configure external interacitve activity in studio 6.0.
    Here what's done:
    -added activity, main task imlementation = external
    -assigned prepare(), commit() methods
    -added new server configuration
    When launching workspace, the > sign on activity in inbox, throws:
    "The task is external and it needs to be invoked through an API call and not through the Classic WorkSpace."
    I should redirect to external server, as promised with studio help:
    "Configuration: you can optionally define an URL. When the task is executed from WorkSpace, WorkSpace redirects the execution to the URL. "
    The same happens if project is deployed to standalone 6.0
    Any solution or exact instuction how to configure external activities for albpm 6.0?

    I'm not able to configure external interacitve activity in studio 6.0.
    Here what's done:
    -added activity, main task imlementation = external
    -assigned prepare(), commit() methods
    -added new server configuration
    When launching workspace, the > sign on activity in inbox, throws:
    "The task is external and it needs to be invoked through an API call and not through the Classic WorkSpace."
    I should redirect to external server, as promised with studio help:
    "Configuration: you can optionally define an URL. When the task is executed from WorkSpace, WorkSpace redirects the execution to the URL. "
    The same happens if project is deployed to standalone 6.0
    Any solution or exact instuction how to configure external activities for albpm 6.0?

  • Substitute variables for external process activity in process flows

    Has anyone used with success substitute variables such as ${Working.Rootpath} for external process activity?
    I can't get it working. Variables aren't substituted and my scripts fail.
    Sample value for parameter_list parameter for external process I use is:
    |${Working.Rootpath}|
    and in the script I get:
    ${Working.Rootpath}
    which is of course not what I expected.

    In documentation is Working.Rootpath so there is a bug in documentation. It is ugly because it's hard to guess.
    Thank's for your reply Michael. I checked all that you described. Previously I had Working location set to "Use default location". When I changed it to actual location substitute variables started to work properly.
    If I correctly understand "Use default location" means: use location associated with process module. And for execution it works but for substitute variables doesn't. So I think it is a bug.
    Next thing is variables in the script itself. From examples sent by Mark (script: cd ${Working.RootPath}...) they should be set in environment and accessible to shell. This doesn't work for me but it is not described in documentation and can be easily achieved by passing parameters. So that's not a problem.
    One more question: Should I open tars and file bugs describing what we found?

  • How to "unget" an instance via Papi from External Interactive activity?

    Using ALBPM5.7, am trying to create a java app to implement an external interactive activity following this general process:
    1. poll for next "gettable" instance in desired process/task (in order of priority, receivedtime)
    2. call Get the instance to reserve it to current user
    3. call prepareExternalActivity for instance to get arguments from FBL
    4. do some work on the instance
    5. call commitExternalActivity to pass args back in to FBL
    I have created something like the following code snippet based sample code from the PAPI docs:
    // get the instance to be worked, assumes previously found the "next" one based on priority/recievedtime to variable ii
    Filter filter = ProcessService.createFilter();
    filter.setSearchScope(new SearchScope(ParticipantScope.ALL, StatusScope.ALL, null));
    filter.addAttribute(VarDefinition.getDefaultVarDefinition(VarDefinition.INSTANCE_NUMBER), Comparison.IS, ii.getInstanceIn());
    InstanceInfo[] instances = new InstanceInfo[0];
    instances = papiSession.getInstancesByFilter( new String[] { processId }, filter );
    if ( instances.length == 0 ) return null;
    Arguments arguments = Arguments.create();
    arguments = session.prepareExternalActivity(instance.getId(), instance.getActivityName(), Arguments.create());
    String info = (String) arguments.getArgument("preArgOut");
    // do some work...
    arguments = Arguments.create();
    arguments.putArgument("comArgIn", info);
    session.commitExternalActivity(instance.getId(), instance.getActivityName(), arguments);
    I have a question, though. If, during the "do some work" step the user cannot finish for any reason, how do I cancel the "get" (or "unget" it) on the instance so that it remains in the same activity for the next user to work?
    Thanks,
    Todd

    More info...
    If I dump the instanceInfo object (converted to xml using the com.thoughtworks.xstream library), I get the xml below. While the Status shows as 1 (=Running), the isExecuting is "false". For this same instance (ii), since there is only one task (TaskIn=0), the call to abortActivity is:
    papiSession.abortActivity(ii.getId(), ii.getActivityName(), 0);
    Which yields the "Instance '/ExtInterTest#Default-1.2/110619/0' is not running." exception.
    I have previously "selected" the instance prior to calling prepareExternalActivity, but at this point instanceCanBeUnselected(ii) is false.
    ...not sure what to try next. Is there possibly some way to raise an exception from the papi client back to the engine that would allow me to abort the activity from within the process flow (e.g. just put it back to available at the ExternalInteractive activity that was not completed)?
    ------------------------ xml dump of instanceInfo object ------------------------
    <fuego.papi.impl.InstanceInfoImpl>
    <instanceIn__d>110619</instanceIn__d>
    <processIn__d>229</processIn__d>
    <threadIn__d>0</threadIn__d>
    <creationTime__d>
    <microSeconds__d>1240499309197000</microSeconds__d>
    </creationTime__d>
    <roleId>Unattended</roleId>
    <HIGH>4</HIGH>
    <HIGHEST>5</HIGHEST>
    <LOW>2</LOW>
    <LOWEST>1</LOWEST>
    <NORMAL>3</NORMAL>
    <activityName__d>Task1</activityName__d>
    <author__d>-1</author__d>
    <cThreads>0</cThreads>
    <description__d>ExtInterTest110619</description__d>
    <externalVariables__d>
    <long>110619</long>
    <string></string>
    </externalVariables__d>
    <internalState__d>12289</internalState__d>
    <isExecuting__d>false</isExecuting__d>
    <nAttachments>0</nAttachments>
    <nNotes>0</nNotes>
    <nThreads__d>0</nThreads__d>
    <numberOfChanges>105</numberOfChanges>
    <parentThreadIn__d>-1</parentThreadIn__d>
    <participantIn__d>0</participantIn__d>
    <pendingTaskIn__d>-1</pendingTaskIn__d>
    <priority__d>3</priority__d>
    <receptionTime__d>
    <microSeconds__d>1240508930000000</microSeconds__d>
    </receptionTime__d>
    <roleIn__d>50000496</roleIn__d>
    <status__d>1</status__d>
    <taskInfo__d>
    <fuego.papi.impl.InstanceInfoImpl_-TaskInfo>
    <participantId__d>unattended</participantId__d>
    <retryCounter__d>0</retryCounter__d>
    <status__d>48</status__d>
    <taskIn__d>0</taskIn__d>
    <valid__d>true</valid__d>
    </fuego.papi.impl.InstanceInfoImpl_-TaskInfo>
    </taskInfo__d>
    </fuego.papi.impl.InstanceInfoImpl>

  • Unable to run External Java activity getting Null pointerException

    Hi All,
    Im unable to run external java activity in my workflow on Solaris environment.
    My workflow looks like:
    start -----> External java activity----> end
    External java activity code :
    exceute(WFContext ctx) {
    System.out.print("im in java activity");//Only this stmt is present in my code
    1) I have set the classpath in the environment variables pointing all the workflow jars.
    2) Executed wfjvlsnr.csh and it displays the following.
    Oracle Workflow 2.6.4.0.0 JAVA Function Activity Agent
    Please Enter Database Password : r4v25zx
    Connected to owf_mgr@wfSystem:1667:WFUser with character set UTF8
    Listening...
    Till here it is fine.workflow agent started listening
    3) Now i started my client program which triggers the workflow and reaches java activity.
    4) Now when i verify console (2) where i run the java activity agent it displays the following errors:
    oradev_WFUser> ./wfjvlsnr.csh
    Oracle Workflow 2.6.4.0.0 JAVA Function Activity Agent
    Please Enter Database Password : owfpswd
    Connected to owf_mgr@wfSystem:1667:WFUser with character set UTF8
    Listening...
    Sat Jun 02 12:18:47 EST 2007 Executing EXTERNAL/002 oracle.apps.fnd.wf.internal
    java.lang.NullPointerException
    null
    Sat Jun 02 12:18:47 EST 2007 Enqueuing EXTERNAL/002 oracle.apps.fnd.wf.internal null
    Error executing class oracle.apps.fnd.wf.internal: null
    Sat Jun 02 12:18:47 EST 2007 Executing EXTERNAL/002 oracle.apps.fnd.wf.internal
    java.lang.NullPointerException
    null
    Sat Jun 02 12:18:47 EST 2007 Enqueuing EXTERNAL/002 oracle.apps.fnd.wf.internal null
    Error executing class oracle.apps.fnd.wf.internal: null
    Though i dont have any code in my java activity it says NULL pointer exception.
    Im unable find where the mistake is.
    Please help me out in running my java activity.
    Thanks in Advance,
    Cheers,
    Sharath

    Hi,
    I am using integrated web logic server. Do I have to create JDBC connection in Integrated Weblogic Server? If yes, then how come it was working earlier and stopped working suddenly.
    Just to try out, I have created JDBC with a name soademo (As mentioned in bc4j.xml) in Integrated Weblogic Server but didn't worked.
    I will send you sample java class for your reference.
    public class TestClient {
        public static void main(String[] args) {
            String amDef = "com.moj.model.AM.AppModule";
            String config = "AppModuleLocal";
            ApplicationModule am =
                Configuration.createRootApplicationModule(amDef, config);
            ViewObject emplist = am.findViewObject("EmployeesView1");
            emplist.setWhereClause("first_name = :p_firstname");
            emplist.defineNamedWhereClauseParam("p_firstname", null, null);
            emplist.setNamedWhereClauseParam("p_firstname", "Smith");
            emplist.executeQuery();
            while (emplist.hasNext()) {
                Row emp = emplist.next();
                System.out.println ("emp " + emp.getAttribute("Empno"));
                System.out.println("First Name " + emp.getAttribute("FirstName"));
                System.out.println("Last Name " + emp.getAttribute("LastName"));
            Configuration.releaseRootApplicationModule(am, true);
    Appreciate if you can provide me in more detail as I have started working on very recently.
    Parvez

  • Clustering of Oracle AS 10.1.3.0 nodes in active-active topology

    Hi,
    The following requirements for clustering in our environment exist:
    * Active-active topology
    * External hardware load-balancer
    * Fail-over
    * Application session-state replication
    We use multiple Oracle AS 10.1.3.0 nodes. Applications are deployed on 2 or more OC4J instances on those nodes.
    I've read the Oracle docs on clustering and I have some questions regarding the clustering configuration to use:
    1. When an external hardware load-balancer is used, is configuring an Oracle AS cluster needed then? The docs talk about clusters, but in some cases I'm not sure whether an Oracle AS cluster or a hardware cluster is meant.
    2. It seems not entirely clear what type of application clustering to use in combination with an Oracle AS cluster: either multicast or peer-to-peer? If I'm correct the Oracle docs suggest to use dynamic peer-to-peer application clustering if an Oracle AS cluster is used and multicast for standalone OC4J. Is that correct?
    Thanks,
    Ronald

    1. Well, the idea is to have all clients route their HTTP requests to the physical load-balancer. The load-balancer will route/forward the requests to one of the Oracle AS nodes based on the load on those machines. If application state is synchronized between the application(s) on the OC4J instances, it would not be necessary to configure an Oracle AS cluster? Or are there advantages for having such a cluster? One of the pros I can think of would be that groups are automatically created so deployment/management of the application(s) becomes easier. Are there any other? Or is this configuration w/o Oracle AS cluster not a good idea?
    2. Clear.
    3. JMS, thanks for the tip.
    4. Yes we use Oracle RAC. Does that impose constraints on the Oracle AS clustering and/or application clustering?
    Ronald

  • Active-active vs Active-pasive topology

    We are trying to install soa-suite in High Availability Environment.
    I understand that active-active more scalable and better performance.
    Is any body know on how much more work to install active-active topology?
    Is it a lot more difficult to maintain in active-active compare to active-passive?
    What is drawback of having active-active enrironment?
    Is most people using active-active or active-passive?
    Thanks
    Andrew

    Hello,
    You will have more chance to find an answer in the Oracle Application Server - General.
    Regards
    Tugdual Grall

  • Two node - Two site Active/Active DAG Configuration

    Information
    Both sites exist in a single AD domain
    Site A
    1 Exchange 2013 multi-role server (CAS + MBX)
    Server will contain mailboxes for individuals who work in Site A
    Server will contain database copies of databases in Site B
    Site B
    1 Exchange 2013 multi-role server (CAS + MBX) 
    Server will contain mailboxes for individuals who work in Site B
    Server will contain database copies of databases in Site A
    Goal
    To create a configuration where users who work in Site A have their mailboxes active in Site A and users who work in Site B have their mailboxes active in Site B.
    Questions
    Since this DAG has an even number of members, where do I place the witness server? Do I need two witness servers, one in each site?
    It seems to me as long as both sites can still communicate, I only need one witness server to maintain quorum. 
    To my current understanding, if Site A has a witness server, and Site A looses its WAN connection, Site B's databases are going to go offline because it has lost quorum. 
    I'm assuming if I placed a witness server in each site, and one of the sites lost its WAN connection, then I'd be placed in a split-brain scenario as both sites would still think it had quorum. Is this accurate? 
    The company has given me a limited budget hence the reason for only having two exchange servers in this setup. Is my only recourse to have four nodes (two nodes per DAG) in this active\active scenario? If the company says they absolutely cannot spend money
    on two more servers, could I use the current setup in an active\passive configuration?
    Thanks!

    You would need to place the File Share Witness in a 3rd datacenter for automatic failover, otherwise depending which DC the FSW is ( and you can only have one FSW per DAG active a time), then in case of a WAN or DC failure, the databases will be active in
    the DC that has quorum.
    If the FSW is in Site A and Site A goes down, then quorum is lost and Site B will need to be manually swithed over using this procedure:
    http://technet.microsoft.com/en-us/library/dd351049(v=exchg.150).aspx
    To be truly active/active in both DCs, then you would need to 2 DAGs with each respective FSW in each DC that has the preferred user base.
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Global load balancing/active active vip and virtual interface redundancy

    Is there a way to configure both of these technologies without exposing the external addressing to the internal network? I have active active within the data center and would like to have active/active across two data centers but I don't see any way to use internal addressing for my content rules and still use them for dns unless I can specify records without using content rules. Thanks.
    http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_configuration_example09186a008009438a.shtml
    http://www.cisco.com/en/US/products/hw/contnetw/ps792/products_configuration_guide_chapter09186a0080157898.html

    Hi Victor,
    In response to your questions regarding doing Active/Active GSLB using VIP and interface redundancy.
    Rule Based GSLB will not work with VIP/Interface
    redundancy.
    The reason is because the CSS can not set up an app session to a redundant
    interface, it needs to set the app session up to a real interface. Thus, a
    full mess topology must be used for GSLB and vip/interface redudancy.
    Bug ID CSddw27861 reported this problem and engineering added the command
    "ap-kal-vip" to support a full mess topology. This command can only be used
    under zone based GSLB and not rule based.
    The syntax for the command would be:
    dns-record a www.work.com 5.5.5.5 0 single kal-ap-vip 1.1.1.1
    rule/ACL based GSLB with vip/int redundancy will not work.
    Regards,
    Mark

  • Bidirectional full active/active sites replicaion methods

    Hi.
    We have 3 servers with Oracle Data Base on three sites.
    A full active/active site and servers configuration is required, including bidirectional changes.
    All Data Base may be replicated at least once per some minutes.
    What replication technology can be used?
    “Data Guard”, “Streams” or something else?
    “Streams” requires more investment and expertise to build and maintain.
    Is it still possible to implement our requirements with “Data Guard” Logical Database and SQL mode or in some other way with some limitations?
    Thanks,
    Anatoly

    By active/active, do you mean that insert/update/delete transactions will be executed against all three systems simultaneously? If so, DataGuard would be inappropriate—
    1. Yes
    Streams and Multi-Master Replication would be the two options.
    2. Why Multi-Master Replication is not mentioned in the Oracle’s manual named:
    Oracle® Database High Availability Overview 10g Release 2 (10.2)
    3. I would, however, question the wisdom of such a requirement-- why do you need the 3 nodes in the first place? You might well be better served by building a 3 node RAC cluster if the goal is to distribute load over multiple servers and/or to provide redundancy for node failures.
    The goal are:
    - to distribute load over multiple servers
    - to provide redundancy for node failures
    - to provide usually Enterprise users with the nearest (quickest access) available server (1 Site - US office, 2 - Site AU office, 3 Site - Europe Office)
    So as a solution for each Site to provide replicated DataBase and active server and active Database.
    How 3 node RAC cluster can serve this requirements?
    Or you see something not sensibly in the requirements?
    Can you point to advantages and disadvantages?
    4. How quickly does a change to one node need to be propagated to the other nodes? "Some minutes" may mean very different things to different people-- every minute? every 2 minutes? 5 minutes? 10 minutes? 15 minutes?
    It is no so critical for the system. 10-15 minutes is OK may be even more…
    5. How much data is going to change in a given time period?
    The system has it’s peak hours… Also it depends of number of users...
    Usually it may be some 150 kB during 10 minutes
    Thanks,
    Anatoly

  • Asa in active/active vpn solution licensing question

    Hello All
    I have a customer with the following requirements:
    1) A Cisco VPN Solution that will be support SSL VPN and Cisco Client VPN - The  solution will be a failover configuration running in an active-active set up.  The solution offered will be fully supported (i.e. it will not go into End of  Life or and lower level of support etc) by Cisco for the next 5 Years.
    a. We  would expect the devices to be similar to the ASA 5520 Appliance with  SW,HA,$GE+1FE,£DES/AES (Including ASA 5500 Advanced Endpoint ASS)
    2) User  licenses for the above - Please quote for both the following
    a. 500 appropriate SSL VPN User Licenses
    b. 250  appropriate SSL VPN User Licenses
    I am quoting them for the 500 ssl vpn bundle
    ASA5520-SSL500-K9 and for the
    ASA5520-BUN-K9.
    Is it right that in active/active  software 8.3 and above that the 500 ssl vpn licenses will be shared between the 2 asa's or will I need to have 250 licenses on each asa.
    Also I have read that in active/active I cannot use shared licenses, is this relevant in a vpn solution?
    http://www.cisco.com/en/US/docs/security/asa/asa84/license/license_management/license_86.html#wp2003381
    Url above has this “The  backup server mechanism is separate from, but compatible with,  failover.
    Shared  licenses are supported only in single context mode, so Active/Active failover is  not supported.”
    Also “Failover  Guidelines
    •Shared licenses are not supported in Active/Active mode. See the "Failover  and Shared Licenses" section for more  information.
    I also need to purchase the
    ASA-ADV-END-SEC and
    ASA-AC-M-5520 (any connect mobile) as the vpn client is eos/eol.
    Do I need to buy this for both asa's or can they share them in active/active mode.
    Thanks in advance.
    Feisal

    Hi Vibhor and thanks for the quick reply. We will be using version 9.3. I was aware that the ASA does not support PBR but I thought with the new code you could do some policy nat that could help influence the outbound flow?
    So in this case we have 2x ISPs and 2x public address space, one from each ISP. How is the NAT and routing handled by the ASA in this design?
    Can I not identify the guest subnet (192.168.0.0/22) and NAT this to a public address from ISP1 and also identify the corp subnets (10.x.x.x)  and NAT them to ISP2?
    My understanding (which is probably wrong) is that the NAT will select the egress interface rather than the routing table, so guest will be sent via ISP1 since the SVI interface of the ASA that connects to this ISP1 has an IP address from the same public address space..?
    Is that incorrect?
    Many thanks
    Rays

  • Unable to failover the services in active-active cluster node

    Hi,
    i am applying the sp2 patch for sql server 2008 r2 in active-active cluster, we have 3 services in the cluster , node 1 as 2 prefered owner and node 2 as 1 prefered owner, when i try to move the service from node 2 to node1 , i am getting the below errors
    DCOM was unable to communicate with the computer XXXXXXXXX using any of the configured protocols.
    The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server XXXXXXXXX. The target name used was RPCSS/XXXXXX. This indicates that the target server failed to decrypt the ticket provided by the client. This can occur when the target server principal
    name (SPN) is registered on an account other than the account the target service is using. Please ensure that the target SPN is registered on, and only registered on, the account used by the server. This error can also happen when the target service is using
    a different password for the target service account than what the Kerberos Key Distribution Center (KDC) has for the target service account. Please ensure that the service on the server and the KDC are both updated to use the current password. If the server
    name is not fully qualified, and the target domain (XXXXXX) is different from the client domain (XXXXXXX), check if there are identically named server accounts in these two domains, or use the fully-qualified name to identify the server.
    The Cluster service failed to bring clustered service or application 'CHCROCHC045' completely online or offline. One or more resources may be in a failed state. This may impact the availability of the clustered service or application.
    Cluster resource 'SQL Server (CHCROCHC045)' in clustered service or application 'CHCROCHC045' failed.
    any inputs appreciated to resolve this issue as i could not procedd with patching
    BR
    PGR

    Hi PGR,
    As the issue is more related to Windows Server, I would like to recommend you post the issue in the
    Windows Server forums for better support.
    In addition, below are some article about troubleshooting error ” DCOM was unable to communicate with the computer XXXXXXXXX using any of the configured protocols” for your reference.
    Event ID 10009 — COM Remote Service Availability
    How to troubleshoot DCOM 10009 error logged in system event?
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • How can we achive active/active cluster setup with Oracle

    Hi Experts,
    How can we achieve active/active database setup with oracle WITHOUT USING RAC.. As far as I know it's impossible (unless I'm wrong)..
    We are using Oracle 11.2.0.1 64bit on Windows 2008 server. We deployed Oracle FailSafe but that's more of an active/passive solution based on a windows cluster.
    The other solution we were thinking about is to use DataGuard and replication.. two servers.. the oracle instance running on one server generating logs, and the other server receive the logs and apply them to the physical standby db.. Still, this is not a real active/active setup.
    So, is it possible to run 2 servers in an active/active cluster and have the oracle database in an active/active setup or have the instance running on multiple nodes (at the same time)?
    Thanks

    Let me give you a brief explanation of what the situation is and you can be the judge..
    My client have four databases with the smallest one being 20GB and the biggest around the 35gb (SGA 750mb to 1.4gb (Tiny by DB standards) and probably on a normal day, you can run all four of them on a decent desktop).. The DBs are used to keep track of people information. Through out the year, the databases are almost sitting idle, and by idle I mean, the odd update here and there, the odd report..etc. No hard real processing of any sort. Two days of the year (end of year) we have all the operators consolidating records and what's not and they will be pounding away entering data and updating the tables - with hourly reports that goes to 3rd parties. The client expects a 99.99 up time and availability during those 2 days.
    Now, tell me, How can I justify using RAC and spending hundreds of thousands of dollars in licensing and what ever extra costs introduced by the complexity of the environment for the above scenario knowing that I don't have any real use for RAC for 363 days of the year; and we MIGHT need it for 2 days of the year? This is the dilemma we're facing.
    Thanks
    Edited by: rsar001 on Sep 3, 2010 9:42 AM

  • Exchange 2013 - Unbound Stretched Active/Active DAG

    I'm designing an Active/Active DAG utilizing a 3-site scenario, with the third site for FSW.
    I intend to have 3 CAS+MBX servers in each location.
    Site A & B are separately co-located and Site C is geographically distant site for the FSW
    Should the WAN connections of Site A go down (for whatever reason), do the passive copies of Site A's DB's on Site B automatically mount?
    What happens with the copies in Site A when this is going on, and what occurs when the links are restored? Is there any manual intervention required here and is DAC/Split-Brain syndrome a concern at all?
    What if the client doesn't want Auto-failover, can blockautoactivation be set for the passive DB's to -SiteOnly?

    Hi Hayley,
    Q:- Should the WAN connections of Site A go down (for whatever reason), do the passive
    copies of Site A's DB's on Site B automatically mount?
    Yes it could be automatically mount depends on DAC mode, you should enable it by default it is disable.
    Q:- What happens with the copies in Site A when this is going on, and what occurs when the links
    are restored? Is there any manual intervention required here and is DAC/Split-Brain syndrome a concern at all?
    Site A copy would be like Passive Copy which will get the log shipping from Site B once the WAN link will be up and running, as the DAC mode is enable will not allow
    the Site A database to mount its database once it will up and running, 
    You can later change your active copy to Site A.
    Q: - What
    if the client doesn't want Auto-failover, can blockautoactivation be set for the passive DB's to -SiteOnly?
    Please check the below link for better understanding.
    http://technet.microsoft.com/en-us/library/dd979790(v=exchg.150).aspx
    Thanks & Regards
    Ashish Gaur
    Ashish Gaur

Maybe you are looking for

  • Lenovo G560 Graphics related query.

    Hi, I have a Lenovo G560. The specifications are: Operating System: Windows 7 Home Basic 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533) Language: English (Regional Setting: aEnglish) System Manufacturer: LENOVO System Model: 2

  • Help!! SWF no longer supported after update.

    What the hell?? I'm in the middle of a project using SWF files, Creative Cloud updates Premiere Pro and all my clips are now 'not supported,!! How do I get the previous release installed so I can finish my project?

  • Design View not working in DW CS5

    I have one .html file that displays the following in Design View: The code is all there, and if I view it in Live Code then all the content is visible. Here is what Live View looks like: Here is the current web page: Pennsylvania Philharmonic Subscri

  • Orginizer in Elements 12 puts Music and photos in same folder?

    Why does the orginizer put my music files and photo files in the same folder. The file it is in is all media but shouldnt there be a music folder as well or do I have to go in and manually select each of my music files and put them into a sepeate fol

  • Oracle context and MS Active Directory

    Hello, I have one pc with Windows Server 2003 and Oracle 10g r2 When I add a user from my Active Directory in the External OS Users of the Oracle Managed Object (via mmc), I get this error: ORA-30041: Cannot grant quota on the tablespace And when I t