This content applies solely to Award Management, which must be purchased separately from the Appian base platform. |
IntroductionCopy link to clipboard
Award Management's contract file folder structure intelligently file documents into the appropriate contract file folder, which allows users to more efficiently manage their contract file and documents.
This section walks you through you how to update the contract file to your organization's structure and how to add and use search text in the intelligent document filing.
Modifying the contract file folder structureCopy link to clipboard
The contract file has several parent folders, with a number of subfolders under each parent folder. You can modify both the parent folder and its subfolders.
To modify the contract file folders:
- Open the expression rule
AS_AM_UT_contractingFolderStructure
. - Modify the
textMatch
parameter under each subfolder by changing it to the document filename you want the solution to search by so that it can find all matching documents and place them in the subfolder.
ExampleCopy link to clipboard
The following is an example of a defined parent folder and subfolders in the AS_AM_UT_contractingFolderStructure
expression rule.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
folderName: "Requirements Development",
subFolders: {
{
folderName: "Acquisition Strategy, Analysis of Alternatives, IPT Documentation",
textMatch: {"Strategy",
"Acquisition Strategy",
"IPT"
},
subFolders: {}
},
{
folderName: "Acquisition Plan(AP)",
textMatch: {
"Acquisition Plan"
},
subFolders: {}
},
{
folderName: "Market Research Documentation",
textMatch: {},
subFolders: {}
},
{
folderName: "Requirements Checklist",
textMatch: {},
subFolders: {}
},
{
folderName: "Appointment Letters",
textMatch: {
"COR Appointment"
},
subFolders: {}
},
}
},
{
folderName: "Solicitation",
subFolders: {
{
folderName: "Combined Synopsis and Solicitation",
textMatch: {},
subFolders: {}
},
{
folderName: "Notice of Subcontracting Opportunities",
textMatch: {},
subFolders: {}
},
{
folderName: "Pre-Solicitation Notices, Synopsis(and Amendments), Exemption, Responses Special Notice",
textMatch: {},
subFolders: {}
},
}
}
Copy
FeedbackCopy link to clipboard
Was this page helpful?