I have Extended the SOOrder screen to a new custom screen, i have added an approval automation to add a custom action menu to the custom screen.
This are the steps the i have done:
Step 1: I created an automation step for Reservation Screen
Screen ID: Reservation(RE31018)
Step ID: SC Hold - Pending Approval
Description: SC Hold - Pending Approval
Condition:
Step 2: I went to the Automation Definition to Activate the Automation Step
After i have done all of this steps, the automation step didnt work.
I tried to uncheck all the SOOrder IN automation step for the SOOrder page, and it seems that the automation steps that it uses sales order steps.
is there any other way around to activate that steps without disabling the existing steps?
Related
I am looking for PowerShell commands or any API, so I can change the Service admin of my subscription. Going over a lot of documents but could not find any commands or API.
Manual Steps
Go to Subscription - Properties
Click Change Service Admin
Select the new ID and click OK
I want to automate the above steps.
thanks,
Div
Today my scheduled backup failed and I had to go to the portal to know the reason or monitor the status.
Instead is there a way to configure Backup alerts that notify me the status?
There is no direct option to select backup failed alerts in Alerts blade as of now however as an alternative you can follow below options to achieve Backup Alerts.
To create the rule, navigate to App Service --> Monitoring --> Alerts.
Click on New alert rule
Resource will be automatically selected and can edit too.
Next step click on select condition. This will take you to configure signal logic.
Signal Type β All , Monitor Service β All, Select βAll Administrative operations" signal name.
Select Chart period, Select Alert Logic, Event Level β Error, Status - Failed.
This rule gives all the administrative failed alerts including backup failed alerts with a detailed email.
Then select Action Group if you already have one otherwise click on create action group and create one.
After adding action group edit click on Email Alert to enter Email or Phone number. Click ok and save changes.
Then add alert rule name and select resource group in Alert rule details
Once you create alert rule you will receive and email like below
Activity log rules take 5 minutes to activate.
You can manage the alert rules by going to Monitoring --> Alerts --> Manage alert rules.
Once the action is triggered you will receive an email notification with detailed description. The below screenshot is an informational level email but as you have enabled for failed operations you will receive an email once an operation is failed.
i have a workflow in SharePoint 2013 that starts when item is created in a list.
if the item is created by an owner the workflow runs perfectly.
if the item is created by any other user, the workflow status will be canceled, and one of the owners should start it manually.
please help.
thanks
If this is a SharePoint designer workflow, attempt to use the impersonation step before running any of the steps of the workflow.
I am new to sharepoint. I am using sharepoint 2007. I have a following requirement.
1) Custom list has various fields ... Requestor, Application Name, Reason, etc..
2) When person fill out the form (custom list). It will send a notification to Approvers for review and based on Request action : Approved --> It will send an e-mail notification to specific group.
I have a setup a document approval workflow on custom list. Workflow works fine but I don't know how to send an e-mail notification based on workflow status : Approved. I have tried to create a another workflow using Sharepoint Designer 2007 but didn't work.
I would like to know whether it is possible without doing any programmatic way ? I would appreciate your reply.
Thanks in advance.
This is more like a SharePoint Designer Workflow, which responds to actions and rules.
You can get an introduction here
follow the steps ,these are the main steps you can have a try:
Create workflow attach to the list and start it manually & auto
start it when a new item is created & auto start it when an item is
modified.
Add Collect data from a User action. Click data and add a choice field (named it approval, give two choices: approve, reject)
in the custom task wizard. Output to Variable:collect
Add a new step, Conditions: if Variable:collect equals to Approve Actions: Send email to Created by
Collect (main manager) data from a user. Output to Variable:collect1(similar with step 2) Conditions: if
Variable:collect1 equals to Reject Actions: Send email to
Created By.
Add new step similar with step 3. Send approve email to Created By when Variable:collect1 equals to Approve or send reject
email when Varible:collect1 equals to Reject.
here is one of bolg which also you can refer
http://www.gandhipritesh.com/2009/07/create-custom-approval-workflow-using.html
I am new to MOSS development and while I'm learning it I have a problem waiting to be solved.
We are using the standard approval workflow in one of our test sites just to get the feel of the approval workflow. We have the standard approval workflow in place and working but what has become more desirable is to have the document set to readonly mode after its approval.
What should be my approach to configure/implement this feature?
Custom ItemUpdating event handler on the workflow task list - check the status of the task, and if it is Approved, get the Item object through the task workflow association and adjust permissions on the Item.
Or you start a second workflow - depending on the approval workflow outcome. Create a SharePoint Designer Workflow using the custom activities to set the item permissions.
To set the item permissions download the Useful Sharepoint Designer Custom Workflow Activities
The advantage of this approach is, that you do not need to write code to create an Eventhandler.