Subscription  to launch a workflow fails

Hi all,
i have a business event with two subscriptions..
-first will lauch a workflow process...
-second will invoke a custom rule function...
when i used raise event page in Oracle apps... both the subscriptions are executed...
but, when i use a plsql procedure to raise the event using wf_engine.raise(), only the second subscription executes... the workflow isnt lauched at all.
could anyone help me to find out the missing stuffs? i am not sure if there is some error ... i couldnt see any in the status monitor page of apps.
~srini

You want a criteria workflow. Setting one up is discussed, among other places, in the "Workflow Implementation Guide".
http://download-west.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/admin/workflow_guide_10gr3en.pdf
-Alan

Similar Messages

  • Launch Custom Workflow thru Business Event

    Hi ,
    My requirement is to launch a Workflow Approval process after creating a Transaction Record in Oracle Apps.
    (1) Is it a good practice to invoke the custom workflow (from PLSQL) from a database trigger on the TRX table?
    (2) Instead, can I define an event or use a pre-defined business event to invoke my customer WF?
    (3) If so, is it sufficient while defining "Event Subscription", just set action type "Launch Workflow" and set workflow details? or do I still need to define an Receive Event Activity in my customer WF?
    Thx, Suresh

    Hi,
    1 - It's probably neither here nor there, to be honest. If it can be avoided, then I would always avoid launching a process from a trigger. However, you may have no other choice than to fire the workflow from a trigger - bear in mind that you will need to defer the process to the background and run a background engine later to start the process off, as the first node will issue a savepoint which is not allowed in a trigger.
    2 - Yes. If you are defining a custom event, you will still need to raise the event in some manner, though. If you can hook into a seeded event, then that's the best way to do it.
    3 - The workflow process needs to have a receive event node to receive the event. If you are starting the process, then this needs to be set as a Start node. You will then have to ensure that the event gets raised.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Automator "Send Outgoing Messages" Workflow Failed - 1 error

    Hello,
    In my hunt to be able to send a personalised templated e-mail to multiple recipents using Mac Mail, I came accross the automator feature. I've tinkered around with it but can't seem to generate the final action of sending.
    1) New Mail Message (all fields have data as I read in another thread that this might generate errors.)
    2) Get Specified Address Book Items
    3) Group Mailer
    4) Send Outgoing Messages (this is where I get a Workflow failed - 1 error)
    Steps 1-3 have green tick marks, Step 4 has the error.
    Can anyone point out where I might be going wrong?
    I'm using 10.7.2

    Anyone?????

  • How to setup notifications when workflow fails ?

    Hi all,
    new to this, so please help.
    I want to receive notifications when a workflow fails for whatever reason.
    I am using R12 (12.0.4) on linux.
    Is there a way to configure this through OAM perhaps.
    Many thanks in advance.

    Hi;
    Please check and see its helpful for your issue
    Oracle Alert and WF mailer
    Re: Oracle Alert and WF mailer
    plz help me...!!!! Workflow Notification Mailer
    Re: EBS work flow
    Regard
    Helios

  • Error while launching the workflow from OAF controller class.

    Hi Everyone,
    I'm using the below code from the submit button event to launch the workflow. The workflow works fine when I submit for the first time, when i try to submit for the second time from the same session it throws me the error as
    "Workflow with item type (XXCEDASP) and item key (SUNDRY-1061) is in progress. Abort existing workflow before launching a new process for this transaction."
    The item key which it is showing in the error is the item key for the previous transaction. Also I tried the code that is commented below (code between /* */). If I use the commented code, it doesn't throw me error but cancels all the transactions(that are initiated from the same session) except the last one.
    Is there any work around for this from oaf? Please help.
    Code:
    public void launchCustomWorkFlow(OAPageContext pageContext,
    String transaction_id, String requestor) {
    String wfItemType = "XXCEDASP";
    String wfProcess = "XXCED_MAIN_PROCESS";
    OANavigation wfClass = new OANavigation();
    String wfItemKey = transaction_id;
    /*if (OANavigation.isWorkflowInProgress(pageContext))
    String oldKey = OANavigation.getItemKey(pageContext);
    if (!OANavigation.abortProcess(pageContext, wfItemType,wfProcess, oldKey,
    null, null))
    throw new OAException("Error", OAException.ERROR);
    System.out.println("transaction ID = " + transaction_id);
    //Create Workflow Process
    wfClass.createProcess(pageContext, wfItemType, wfProcess, wfItemKey);
    wfClass.setItemAttrText(pageContext, wfItemType, wfItemKey,
    "TRANSACTION_ID",transaction_id);
    wfClass.setItemAttrText(pageContext, wfItemType, wfItemKey,
    "REQUESTOR_NAME",requestor);
    // Start Workflow Process
    wfClass.startProcess(pageContext, wfItemType, wfProcess, wfItemKey);
    Thanks
    Sunny

    Hi Haroon,
    Thanks for your reply. I tried doing it using the database procedure too. I'm having different problem if I do so. The problem is that when I submit the first transaction, the workflow is not kicked off. when i submit the second transaction, the first one gets kicked off, when I submit the 3rd one second one gets kicked off. So the last one never gets kicked off. This is the pattern I have observed.
    here is my code
    OAF Code:
    OracleCallableStatement cs = null;
    try {
    cs = (OracleCallableStatement)getOADBTransaction().createCallableStatement("{call XXCED_APWFL006_SUNDRYAPPR_PKG.INITIATE_WORKFLOW(:1,:2)}", -1);
    cs.setString(1,transaction_id);
    cs.setString(2,requestor);
    cs.execute();
    System.out.println("callable statement executed for transaction "+transaction_id);
    cs.close();
    catch(SQLException e) {
    throw new OAException("Error Raised:"+e,OAException.ERROR);
    Procedure Code:
    PROCEDURE Initiate_Workflow(transaction_id in varchar2,
    requestor in varchar2)
    is
    l_item_type varchar2(20):= 'XXCEDASP';
    l_start_process varchar2(30):='XXCED_MAIN_PROCESS';
    l_item_key varchar2(30):= transaction_id;
    begin
    wf_engine.createprocess(l_item_type,l_item_key,l_start_process);
    wf_engine.setitemattrtext(l_item_type,l_item_key,'TRANSACTION_ID',transaction_id);
    wf_engine.setitemattrtext(l_item_type,l_item_key,'REQUESTOR_NAME',requestor);
    wf_engine.startprocess(l_item_type,l_item_
    Can you please let me know what am I doing wrong?
    Also please send the code that has worked for you.
    Thanks
    Sunny

  • How to notify admin/some user if in list/library workflow fails?

    How to send notification to admin if workflow fails to start or some error occurs in workflow?
    i tried creating workflow on workflow history list but it is not running automatically as items are created with system account.
    Is there any other way to notify admin ?

    if you are trying to notify admin when an entry added to workflow history list, you can create alerts for that list.
    http://office.microsoft.com/en-001/sharepoint-foundation-help/create-an-alert-or-subscribe-to-an-rss-feed-HA010378197.aspx
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Short cut command, shift, Z use to launch esko workflow in CS6 illustrator upgraded to CC dent work

    short cut command, shift, Z use to launch esko workflow in CS6 illustrator upgraded to CC dent work

    Then you changed it in CS6. The normal preset usage for that preset is to Redo an Undo.

  • SPD workflow fails to start

    This issue has been raised few times before. I followed the solution to check in / check out workflow and made Title as optional column but I am not able to still solve the problem.
    I have list based on custom content types. Created very simple workflow which just logs to the history. when I start the workflow I received this error message in the logs.
    06/13/2012 13:57:28.22 w3wp.exe (0x10F8) 0x0C84 SharePoint Foundation Workflow Infrastructure 72fs Unexpected RunWorkflow: System.ArgumentException: Item does not exist. It may have been deleted by another user. at Microsoft.SharePoint.SPList.GetItemById(String strId, Int32 id, String strRootFolder, Boolean cacheRowsetAndId, String strViewFields, Boolean bDatesInUtc) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.LoadWorkflowBytesElevated(SPWeb web, Guid docLibID, Int32 fileID, Int32 fileVer, Int32& userid, DateTime& lastModified) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.<>c__DisplayClass1.<LoadWorkflowBytes>b__0(SPSite elevatedSite, SPWeb elevatedWeb) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.LoadWorkflowBytes(SPWeb web, Guid docLibID, Int32 fileID, Int32 fileVer, Int32& userid) at Microsoft.SharePoint.Workflow.SPNoCodeXomlCompiler.Load... 625ae924-be53-4091-aaec-9085e152d586
    06/13/2012 13:57:28.22* w3wp.exe (0x10F8) 0x0C84 SharePoint Foundation Workflow Infrastructure 72fs Unexpected ...XomlAssembly(SPWorkflowAssociation association, SPWeb web) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.LoadDeclarativeAssembly(SPWorkflowAssociation association) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.CreateInstance(SPWorkflow workflow) at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut) at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflow, Collection`1 events, SPWorkflowRunOptionsInternal runOptions) 625ae924-be53-4091-aaec-9085e152d586
    06/13/2012 13:57:28.28 w3wp.exe (0x10F8) 0x0C84 SharePoint Foundation Workflow Infrastructure 98d8 Unexpected System.ArgumentException: Item does not exist. It may have been deleted by another user. at Microsoft.SharePoint.SPList.GetItemById(String strId, Int32 id, String strRootFolder, Boolean cacheRowsetAndId, String strViewFields, Boolean bDatesInUtc) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.LoadWorkflowBytesElevated(SPWeb web, Guid docLibID, Int32 fileID, Int32 fileVer, Int32& userid, DateTime& lastModified) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.<>c__DisplayClass1.<LoadWorkflowBytes>b__0(SPSite elevatedSite, SPWeb elevatedWeb) at Microsoft.SharePoint.Workflow.SPWorkflowNoCodeSupport.LoadWorkflowBytes(SPWeb web, Guid docLibID, Int32 fileID, Int32 fileVer, Int32& userid) at Microsoft.SharePoint.Workflow.SPNoCodeXomlCompiler.LoadXomlAssembly(... 625ae924-be53-4091-aaec-9085e152d586
    06/13/2012 13:57:28.28* w3wp.exe (0x10F8) 0x0C84 SharePoint Foundation Workflow Infrastructure 98d8 Unexpected ...SPWorkflowAssociation association, SPWeb web) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.LoadDeclarativeAssembly(SPWorkflowAssociation association) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.CreateInstance(SPWorkflow workflow) at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut) at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflow, Collection`1 events, SPWorkflowRunOptionsInternal runOptions) 625ae924-be53-4091-aaec-9085e152d586

    Hi,
    My workflow fails to start and is cancelled this happens on
    one subsite, it is a custom workflow created in SPD on a custom list.  I
    am the site wide administrator so I have rights to everything.   I have looked at the logs filtering by workflow and I get this error below. 
    RunWorkflow: System.ArgumentException: Item does not exist. It may have been deleted by another user.  
    I see anything about the page being check in or checked out.
    Everything is sharepoint 2010.
    Could you please direct me to an answer or some help please.
    Thanx

  • Why are my workflows failing?

    I have a workflow that should create or update a record in 1 list when the record in another list is updated.
    if a new record is created in List A and criteria is met, a record will be created in List B. When the record in List A is updated, the record in List B should also be updated.  However, often when the record is created in List A and the workflow kicks
    off, it doesn't create the associated record in List B. So when someone updates the record in List A, the workflow fails because it can't find the record in List B.  One of the steps in the workflow is to populate the record's ID# from List B back into
    the record in List A.  The record in List A will show the ID# from List B, but a record with that ID is not found in List B!
    When i test the workflow, it works fine.  When the workflow fails, I get the Error Occurred status so I manually stop the workflow and kick it off again, and it works fine.  So why is it failing in daily use? Could it be a timing issue? could the
    workflow take too long to run so it times out? if so, is there a way to speed it up or give it more time to run?
    I am not a programmer - I just create workflows using Sharepoint Designer 2010 - using Set Field Actions, or if then conditions and a couple of calculations.

    Put logs in the history list after the the code where you have created a record for List B.
    Follow this link which will guide you to log in the history list which will help you debug this issue.
    http://www.documentmanagementworkflowinfo.com/sample-sharepoint-workflows/use-log-to-history-list-sharepoint-designer-workflow-action-debug.htm

  • Tiger Workflow Fails in Leopard

    I created, and successfully used a workflow in Tiger which moved the contents of a specified folder to the trash. This workflow fails in Leopard. Here are the ordered actions used in Tiger Automator:
    1. Get Specified Finder Items
    2. Get Folder Contents
    3. Move to Trash
    When I open this workflow in Leopard Automator I get a warning that the first (Get Specified Finder Items) and the third (Move Finder Items to Trash) actions have changed, though I cannot determine how other then their name. If I show results when I run the workflow, the correct folder is chosen and the files within are revealed, but they are not moved to the trash.
    I have rebuilt the workflow from scratch with the same results.
    If I change the "Move Finder Items to Trash" action to "Move Finder Items" and select the desktop as the destination, the workflow completes without error.
    A search of Automator's actions show no other "trash" related actions to use.
    I read in this forum elsewhere a solution using an applescript to move the files to the trash, but I would like to find out why the Automator action "Move Finder Items to Trash" fails.

    Further testing reveals it to be a issue with networking in Leopard. The folder I have been emptying via an Automator action in Tiger is on another Mac. In Leopard, even if I mount the other Mac as a registered user of that Mac, with the permission to delete the files within the folder I am trying to empty, Automator is unable to trash the folder's contents.
    Is this a feature of Leopard's networking or a bug?
    I tried having Automator establish the network connection via the following workflow, but the results are the same:
    1. Get Specified Servers
    2. Connect to Servers
    3. Get Specified Server Items
    4. Filter Finder Items
    5. Get Folder Contents
    6. Move Finder Items to Trash
    In step 3 I specify the path to the folder I want on the mounted server, but the results show that both the folder and the server itself are returned! Therefore, I added in step 4 to proceed only with the folder I am trying to empty.
    If I add an "Open Finder Items" action after step 4 the files I am trying to purge are revealed. I can select them manually in the opened folder and delete them, though I due need to verify that they will be deleted immediately.
    Proceeding with the workflow, step 5 selects all the files but step 6 fails.
    Again, deleting files in a folder of a mounted server was an easy 3 step process in Tiger Automator. I am unable to determine how to accomplish the same thing in Leopard. Anyone have any thoughts?

  • Timer launch a workflow

    I would like the computer to launch a workflow automatically in accordance with the
    computers internal clock i.e. send an email each morning (daily attendance here at my school) without having to click the workflow icon on my desktop. Can this be set-up within Automator or in coordination with another program (e.g. iKey)?
    Thanks,
    -todd

    Save the workflow as an iCal plugin and schedule accordingly.
    Cheers,
    H

  • How to fix Workflow failed to get user profile for user:

    hi All,
    How to fix Workflow failed to get user profile for user when using Lookup function in sharepoint designer?

    Try to use “As string” instead of “Login Name” for the “Return field as”.
    Regards,
    Jayant
    jayant prabhakar

  • A Windows Workflow Foundation workflow failed during execution

    Needed to know if there was some way to identify what the workflow was that is causing this error? I see this: "Workflow Identifier: 0cb64340-3a44-009e-67af-70963215b839" just not sure what SMLet I can use to see what this corresponds too.
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          1/2/2013 1:56:56 PM
    Event ID:      33880
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      scsm
    Description:
    A Windows Workflow Foundation workflow failed during execution.
    Workflow Type: Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow
    Workflow Identifier: 0cb64340-3a44-009e-67af-70963215b839
    Exception Type: Microsoft.EnterpriseManagement.Common.ObjectNotFoundException
    Exception Message: An object of class ManagementPackRelationship with ID 6ec982d4-207f-da19-3bc9-e6d2ff7b067e was not found.
    Exception Stack:    at Microsoft.EnterpriseManagement.Configuration.TypeSpaceCache.Get[T](Guid id)
       at Microsoft.EnterpriseManagement.EntityTypeManagement.GetRelationshipClass(Guid id)
       at Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow.prepareNotificationActivity_ExecuteCode(Object sender, EventArgs e)
       at System.Workflow.ComponentModel.Activity.RaiseEvent(DependencyProperty dependencyEvent, Object sender, EventArgs e)
       at System.Workflow.Activities.CodeActivity.Execute(ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(T activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(Activity activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutorOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)
       at System.Workflow.Runtime.Scheduler.Run()
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">33880</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-02T19:56:56.000000000Z" />
        <EventRecordID>1098867</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>scsm</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow</Data>
        <Data>0cb64340-3a44-009e-67af-70963215b839</Data>
        <Data>Microsoft.EnterpriseManagement.Common.ObjectNotFoundException</Data>
        <Data>An object of class ManagementPackRelationship with ID 6ec982d4-207f-da19-3bc9-e6d2ff7b067e was not found.</Data>
        <Data>   at Microsoft.EnterpriseManagement.Configuration.TypeSpaceCache.Get[T](Guid id)
       at Microsoft.EnterpriseManagement.EntityTypeManagement.GetRelationshipClass(Guid id)
       at Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow.prepareNotificationActivity_ExecuteCode(Object sender, EventArgs e)
       at System.Workflow.ComponentModel.Activity.RaiseEvent(DependencyProperty dependencyEvent, Object sender, EventArgs e)
       at System.Workflow.Activities.CodeActivity.Execute(ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(T activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(Activity activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutorOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)
       at System.Workflow.Runtime.Scheduler.Run()</Data>
      </EventData>
    </Event>
    Help

    Everytime I run it I get nothing.
    Tried using the workflow identifier: 0cb64340-3a44-009e-67af-70963215b839 and tried this number as well: 6ec982d4-207f-da19-3bc9-e6d2ff7b067e
    Both just take me to the prompt with no info.
    EVENT ID 33880 Health Service Modules is the event title.
    Help

  • Error: Cannot get Azure subscription ID and thumbprint. Failed in New-FirewallRuleForWebsite in New-AzureSql.ps1

    I am working through the eBook "Building Cloud Apps with Microsoft Azure" and when I run New-AzureWebsiteEnv.ps1 I get the following error
    Error: Cannot get Azure subscription ID and thumbprint. Failed in New-FirewallRuleForWebsite in New-AzureSql.ps1
    I have already tried adding -ExtendedDetails to Get-AzureSubscription in New-AzureSql.ps1 and New-AzureWebsiteEnv.ps1.
    I am using Azure PowerShell 0.8.16 and Windows 7 Service Pack 1.

    Hi,
    Not too sure if you have tried this:
    In the code you will have a line:
    $s = Get-AzureSubscription –Current
    Change that line to:
    $s = Get-AzureSubscription -Current –ExtendedDetails
    The difference between the two lines is that the –ExtendedDetails will return the Thumbprint required by the code
    Reference:=
    http://blogs.msdn.com/b/devschool/archive/2015/04/10/error-in-fixit-demo-cannot-get-azure-subscription-id-and-thumbprint-urghh.aspx
    Regards,
    Mekh.

  • The workflow failed to start due to an internal error

    My approval workflow never work in my machine before. It was a newly installed machine. when i start the Approval workflow, it stated "The workflow failed to start due to an internal error'.  What other circumtances might lead to this problems?or you can email me @ [email protected]

    hi
    Finally it worked for me after reinstalling the features on the site collection. deactivating and reactivating didnt help. once i uninstalled and re installed them it worked.
    Here are the steps i performed.
    OffWFCommon
    stsadm -o deactivatefeature -id C9C9515D-E4E2-4001-9050-74F980F93160 -url <url> -force
    stsadm -o uninstallfeature -id C9C9515D-E4E2-4001-9050-74F980F93160 -force
    ExpirationWorkflow
    stsadm -o deactivatefeature -id C85E5759-F323-4EFB-B548-443D2216EFB5 -url <url> -force
    stsadm -o uninstallfeature -id C85E5759-F323-4EFB-B548-443D2216EFB5 -force
     ReviewWorkflows
    stsadm -o deactivatefeature -id 02464C6A-9D07-4F30-BA04-E9035CF54392 -url  <url> -force
    stsadm -o uninstallfeature -id 02464C6A-9D07-4F30-BA04-E9035CF54392 -force
     SignaturesWorkflow
    stsadm -o deactivatefeature -id 6C09612B-46AF-4B2F-8DFC-59185C962A29 -url  <url> -force
    stsadm -o uninstallfeature -id 6C09612B-46AF-4B2F-8DFC-59185C962A29 -force
     translationWorkflow
    stsadm -o deactivatefeature -id C6561405-EA03-40A9-A57F-F25472942A22 -url  <url> -force
    stsadm -o uninstallfeature -id C6561405-EA03-40A9-A57F-F25472942A22 -force
    install & activate
     OffWFCommon
    stsadm -o installfeature -name offwfcommon -force
    stsadm -o activatefeature -id C9C9515D-E4E2-4001-9050-74F980F93160 -url <url> -force
    ExpirationWorkflow
    stsadm -o installfeature -name Expirationworkflow -force
    stsadm -o activatefeature -id C85E5759-F323-4EFB-B548-443D2216EFB5 -url <url> -force
     ReviewWorkflows
    stsadm -o installfeature -name ReviewWorkflows -force
    stsadm -o activatefeature -id 02464C6A-9D07-4F30-BA04-E9035CF54392 -url <url> -force
     SignaturesWorkflow
    stsadm -o installfeature -name SignaturesWorkflow -force
    stsadm -o activatefeature -id 6C09612B-46AF-4B2F-8DFC-59185C962A29 -url <url> -force
     TranslationWorkflow
    stsadm -o installfeature -name Translationworkflow -force
    stsadm -o activatefeature -id C6561405-EA03-40A9-A57F-F25472942A22 -url  <url> -force

Maybe you are looking for

  • How to kill a single user in BO XI 3.0

    Hello, I thought there was a SDK for killing single users on a system. Can someone help me out again on where to find this procedure. thanks Thierry

  • MS-6957 Ver 1A

    Hi, I cann't seem to be find drivers for MS 6957. Can somebody help me? I am running XP machine and installing the TV-OUT card. I can not even find any related information anywhere. Help is appriciated. -Anand

  • How can i have a contect, whats app backup after i update iso 8.1.2 even my notes

    how can i have a contect, whats app backup after i update iso 8.1.2 even my notes

  • Flash file with trancparency as dashboard widget

    trancparency only works for pictures on lower layers but not for the desktop background the picture "Default.png" behind the flash file is partial visible but the widget has a 200 x 200 pixel black background, areas without pictures on lower layers a

  • Issue with 'open with' bridge cc

    hey all, i've searched and all the discussions that 'start' with a similar question, get diverted, or people who are 'trying' to help don't really read the question, so here i hope to make is clear so the correct answer will be provided. specs - wind