How to deactivate a steo in workflow

i want a few steps in workflow to be deactivated and activate it when ever required
is it possible?

No its not possible at definition level. you will have to do this a condtion step. create an element flag and give an intial value as X. now u can put ur steps that u don`t want to use in false branch that would always be avoided as the flag has a value X. later on u can remove the initial value .
Hope I am clear and helpful !!
Anuj

Similar Messages

  • How to deactivate the vendor master workflow???

    hi
    I need info about how deactivate the vendor master workflow? do we have any Transaction Code for that?

    hi,
    go to tcode XK06, there you can set a deletion flag for that vendor master. Then the basis people will archieve that to delete it permanently from the database.
    Regards,
    Prasath

  • How to deactivate Change Request Management workflows task

    We are in a situation where we are switching external SAP service
    organisation and we cannot at this stage introduce any new procedures
    regarding sceduling-tasklists/TMS/etc. Our ChaRM implementation project
    must be set back in to a possision where we can maintain our normal
    system maintainance processes without using a fully implementated
    CharRM functionallity. The implementation of CharRM has to be realized
    in 2 steps:
    a) activate only ChaRM documentation system/flow as an extention of
    servicedesk, implement this in our organisation
    b) activate fully ChaRM functionality with interaction with
    SLD/TMS/tasklists/etc after we have switched service organisation
    Needs:
    1) How to deactivate ChaRM IMG setting SAP Solution Manager-
    >Configuration->Scenario-Spesific Settings->Change Management->Change
    Request Management->Standard Configuration->General Activities-
    >Activate Integration with Change Request Management and related
    settings.
    We had in an earlier stage the total service process/documentationflow
    up and running and with possibilities to interact/respond on
    servicemessages for these roles: User, Servicedesk, Change Manager,
    Change Advisory board, Developer, Tester, IT Operator equal to ChaRM
    process.
    2) Ensure availability to use ChaRM as a extention to servicedesk
    regarding administration and documentation of SAP changements.

    Hi,
    Find the guides : on help.sap.com
    Change Management:
    http://help.sap.com/saphelp_sm40/helpdata/en/0c/5b2160f6fa4b83a3674a210b1cdeb0/frameset.htm
    Service Desk:
    http://help.sap.com/saphelp_sm40/helpdata/en/45/51fbdbd4941803e10000000a1553f7/frameset.htm
    Regards,
    Siddhesh

  • How to deactivate nterfaces triggering from ECC to SRM (Plan driven scenario)

    Hi SRM Friends,
    If I check in SXMB_Moni, I could see outbound interfaces  which are triggering from from ECC to SRM.
    Please guide me how to deactivate these XML messages.
    We are not using EPRTRANS table, not maintaining V_T160 tables.
    I don't know where to check further to deactivate this Plan driven scenario. Please suggest
    Best Regards,
    BV Babu

    Dear Rahul,
    Thanks very much  for the reply.
    Would like to inform you that we had to maintain an internal custom table entry to solve this issue.
    This is related to a workflow issue. WF triggered unnecessarily... this caused triggered XMLs.
    Regards,
    Babu
    Email : [email protected]

  • How to deactivate task complete in task properties for background task.

    Hi Workflow Experts,
          How to deactivate task complete in task properties for background task. Please suggest me.
    Thanks
    Ashraf

    Hi Ashraf,
    You misunderstood the problem. The workflow will never hang up when the Task complete icon is in green color.
    When you do agent determination and BO method assignement done properly in the task level, it shows green color.
    Try to check the workflow log and find out the issue.
    Reward points if it helps.
    Thanks,
    Saravanan.

  • How to deactivate other phones from using my itunes account

    Please help how to deactivate other phones from using my itunes account?

    Hello Kirstyspencer
    I would sign out of your Apple ID on those devices and also change the password to your Apple ID. That should stop people from accessing and using your Apple ID.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    Regards,
    -Norm G.

  • How do I manually start a workflow to...

    I have a list with 2000+ items in it. I create a 2013 workflow in SPD that will look at an item and if it date is less than 1/1/2013 it will create a copy of the item on a list used for archiving, then delete the existing list item. 
    My question is how do i manually start this workflow on the entire list (instead of selecting 1 item at a time)?
    Thanks
    James T.F

    @Romeo
    I've found to potential PowerShell scripts that could launch a list workflow from powershell, but they both throw errors for me. 
    # URL of the Site
    $web = Get-SPWeb -Identity "https://sharepointsrv/site1"
    $manager = $web.Site.WorkFlowManager
    # Name of the list
    $list = $web.Lists["Shared Documents"]
    # Name of the Workflow
    $assoc = $list.WorkflowAssociations.GetAssociationByName("On Item Created","en-US")
    $data = $assoc.AssociationData
    $items = $list.Items
    foreach($item in $items)
    $wf = $manager.StartWorkFlow($item,$assoc,$data,$true)
    $manager.Dispose()
    $web.Dispose()
    this gives me the following error
    Exception calling "StartWorkflow" with "4" argument(s): "Value cannot be null."
    At line:15 char:28
    + foreach($item in $items) { $workflow = $workFlowManager.StartWorkFlow($item,$wor ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : ArgumentNullException
    The other PS Script
    $sourceWebURL = '<URL>'
    $sourceListName = '<List Name>'
    $TargetWorkflow = '<Workflow Name>'
    $spSourceWeb = Get-SPWeb $sourceWebURL
    $spSourceList = $spSourceWeb.Lists[$sourceListName]
    #Getting a Workflow manager object to work with.
    $wfm = New-object Microsoft.SharePoint.WorkflowServices.WorkflowServicesManager($spSourceweb)
    #Getting the subscriptions
    $sub = $wfm.GetWorkflowSubscriptionService()
    #Getting the specific workflow within the list of subscriptions on the specific list. (SP2010 associated workflows basically)
    $WF = $sub.EnumerateSubscriptionsByList($spSourcelist.ID) | Where-Object {$_.Name -eq "$TargetWorkflow"}
    #Getting a Workflow instance in order to perform my commands.
    $wfis=$wfm.GetWorkflowInstanceService()
    Foreach($item in $spSourceList){
    #Creating the dictonary object I need to parse into StartWorkflow. This could be most other workflow commands.
    $object = New-Object 'system.collections.generic.dictionary[string,object]'
    $object.Add("WorkflowStart", "StartWorkflow");
    $wfis.StartWorkflowOnListItem($WF, $item.ID, $object)}
    Which then gives me this error.
    Cannot convert argument "itemId", with value: "GUID", for "StartWorkflowOnListItem" to type "System.Int32": "Cannot convert the "GUID" value of type "System.Guid" to type
    "System.Int32"."
    At line:23 char:5
    + $wfis.StartWorkflowOnListItem($WF, $item.ID, $object)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument

  • How to deactivate the marketting attributes for BP in CRM

    Hi,
    how to deactivate the marketting attributes for BP in CRM
    I can add and maintain the same using tcode crmd_prof_char
    But how do I deactivate.
    Points will be rewarded
    Thanks

    .

  • How to deactivate a license from a dead hard drive

    how to deactivate a license from a dead hard drive

    You can't. However, Support or chat may be able to help you reset the activations.

  • How to send a mail in workflow keeping 1 receiver in CC and the other in TO

    Hi,
    Can anybody tell me how to send a mail in workflow keeping 1 receiver in CC and the other in TO.
    I need to send a mail to an employee keeping his/her manager in CC through workflow.
    Regards,
    Lavanya

    Hi Lavanya,
    I dont think its possible using Send mail step type.
    But it can be done by using the FM SO_NEW_DOCUMENT_SEND_API1. Just create a method and Call this FM accordingly.
    Thanks,
    Viji.

  • How to deactivate adobe photoshop cc on one machine so that to be able to use it on another machine?

    how to deactivate adobe photoshop cc on one machine so that to be able to use it on another machine?

    Use Photoshop CC menu Help>Sign Out.... to deactivate the activated install.

  • How to deactivate withholding tax base amount field

    Dear Experts,
    My in client is using the extended withholding tax with setting Define Formulas for calculating withholding tax, my client feel that the tax base amount field is open and user may accidentally input the wrong amount there thus can anyone tell me how to deactivate this tax base amount field?
    thank you

    Dear,
    Go into Withholding tax type under SPRO>Financial Accounting Global Settings>Withholding Tax>Extended Withholding Tax>Calculation>Withholding Tax Type.
    While maintaining the Withholding Tax type you have selected "W/tax base manual" under the control data. Just don't select that option then your requirement will be met.
    There are other options also like Manual W/tax amt. which you might want to go for.
    Regards,
    Chintan Joshi.

  • CO down payment update is active in controlling area , How to Deactivate?

    Q1) CO down payment update is active in controlling area , How to Deactivate the same?
    I am trying to post,vendor Downpayment in F-48, it is aking for Maintain default cost element in controlling area .
    Is that required?

    Hi,
    Generally, SAP makes that the down payments are always updated in CO. To maintain the default cost elements, you could use OKEP transaction. However, it's possible to deactivate this function by implementing note 388843.
    Regards,
    Eli

  • How to deactivate Adobe Acrobat 9 Standard on notebook(old), to get the license free for an installation on notebook(new)?

    How to deactivate Adobe Acrobat 9 Standard on notebook(old), to get the license free for an installation on notebook(new)?

    Yes, I do need deactivation, because the other one runs on my desktop pc. 
    And no, there is no deactivation option in the help menu in my version (acrobat 9 standard).

  • How to deactivate adobe acrobat Pro version 10?

    I need to reformat my hard drive and I need to deactivate Adobe Acrobat Pro version 10.  I go to the help options and "Deactivation" is not even an option.
    Any idea of how to deactivate the software if there isn't even an option?
    Thanks for your help
    Dave

    Hi Dave,
    You are not getting the deactivate option as it might be possible that Acrobat was installed with volume license serial key.
    If the deactivate option is not available then please go ahead and uninstall the program.
    After reformatting the drive, re install the software.
    Regards,
    Anand

Maybe you are looking for