惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Vulnerabilities – Threatpost
F
Fortinet All Blogs
Vercel News
Vercel News
C
Check Point Blog
P
Privacy International News Feed
Know Your Adversary
Know Your Adversary
Google DeepMind News
Google DeepMind News
T
Troy Hunt's Blog
TaoSecurity Blog
TaoSecurity Blog
I
Intezer
T
The Exploit Database - CXSecurity.com
Security Archives - TechRepublic
Security Archives - TechRepublic
H
Hacker News: Front Page
P
Proofpoint News Feed
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
Attack and Defense Labs
Attack and Defense Labs
S
Security @ Cisco Blogs
IT之家
IT之家
D
DataBreaches.Net
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
Y
Y Combinator Blog
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
Lohrmann on Cybersecurity
T
Tenable Blog
大猫的无限游戏
大猫的无限游戏
L
LINUX DO - 最新话题
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
Recorded Future
Recorded Future
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
K
Kaspersky official blog
PCI Perspectives
PCI Perspectives
A
Arctic Wolf
Latest news
Latest news
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
N
Netflix TechBlog - Medium
雷峰网
雷峰网
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
P
Palo Alto Networks Blog
The Hacker News
The Hacker News
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
月光博客
月光博客
Schneier on Security
Schneier on Security
M
MIT News - Artificial intelligence

博客园 - cloud

将博客搬至CSDN Microsoft Dynamics CRM 解决数据大于5000时,页面上只能导出5000+数据。 AX7 VM can not starting AX3空Invoice明细问题 Solution to “VirtualBox can't operate in VMX root mode” error in Windows 7 Inventory of the materials to teach you how to query a date certain combination of dimensions How to Debug Enterprise Portal Code in Dynamics AX 2009 Axapta 3 COM Connector AX 与Citrix打印机问题 AX ERP 真正的自动批处理 SQL语句转摘 AX2012 R2 打开EP站点时提示503 Service Unavailable错误。 AX2012 R2安装 AX3在window8下兼容性 转:Configure system accounts-AX2009 转:Workflow iPhone Application 转:Dynamics AX2009 Workflow – Checklist-Mail alert 转 Request for the permission of type 'InteropPermission' failed. Dynamics AX2009 Report step by step
转:AX 2009 Workflows: A Quick overview
cloud · 2012-09-10 · via 博客园 - cloud

Here is a quick overview on AX 2009 Workflow...a feature long awaited :)
Workflow - "Machine readible code for a business process"
-Feature of Base AX 2009

-Workflow components reside on a Web Server

-Utilizes the Windows orkflow Foundation (.NET 3.0)

-Utilizes the AX Batch framework

-Requires AD User for Workflow

-Requires exclusive site on IIS to function

-The Workflow components on the Web server use the .NET BC to communicate with the AOS using Workflow system account(existing AX user).

Architecture overview:-

Setup (Steps):-

-Setup AD User for Workflow Account & configure in AX

-Setup & Configure IIS on Web Server

-Setup Workflow Component using AX installation option

-Run the Workflow Infrastructure Configuration Wizard {Batch Jobs, Workflow site}

-Configure the Workflow in AX
Workflow Objects:
Workflow templates:

Workflow templates capture information about workflow categories , what business document the workflow will operate over, what workflow elements (Tasks and Approvals) are required in the workflow configuration,which application event handlers will handle the events that are raised as the workflow executes etc.The first step in creating a workflow is to add a workflow Template. A Workflow Template can be said to be the metadata A workflow template provides information on:

• Which workflow document to use.

• Tasks and approvals that can be configured by the user.

• Workflow categories used for assigning a workflow template to a specific module.

Workflow category:
The workflow category determines whether a workflow template is available in a specific module. After a workflow
category is created, it is possible bind the workflow category to a workflow template.

Workflow Configuration:

A Workflow Configuration is bound to a single Workflow Template, and there can be multiple Workflow Configurations
for the same Workflow Template. Only a single Workflow Configuration for each WorkflowTemplate can be the default WorkflowConfiguration. The Workflow Configuration captures what tasks will be executed, who the tasks are assigned
to.
Workflow Query:

Dynamics AX workflow uses a query to set up conditions for a workflow. The query identifies which data is available to workflow users. Queries are bound to Workflow templates. Once the query is created, a Workflow class needs to be created which contains the query name & any calculated fields.

Workflow Tasks:
AX workflow tasks are used to track documents or tasks from the start to the end of a work process. A workflow may
contain one or many tasks. Each task contain one step.


Workflow Approvals:

Workflow Approvals are used to track ststus of Workflow documents . The fixed outcomes are ‘Approve’, ‘Reject’, or
‘Request Change’.

After you create a task, approval, or outcome in a AX workflow, it must be added to a menu item. The end-user can then start the task or approval using the menu item as a part of the workflow process.
Workflow can be activated throughout the various lifecycle stages of a business document: Create, Update, Delete, Post. The Workflow runtime will execute the Workflow and assign Tasks to users. Users interact with theWorkflow through Alerts/Workflow Tasks, from where they can take action (Approve, Reject) or they can navigate to the business document and view all details before taking the workflow action.

Apart from these basic concepts, there are concepts like Implement Providers, Event Handlers which I will explain in a later post.