IntakeFileSearchScreen
This business rule allows the user to search for specific Intake Files. Search fields can be configured to be able to search on fixed and dynamic fields in order to narrow the results based on the search criteria. The rule also allows for configuration of a search results tables. The IntakeFileSearchScreen can be overridden at the global or primary company levels only.
IntakeFileSearchScreen Elements/Attributes
Element/Tag | Attribute | Definition | Element/Attribute Value and Description |
---|---|---|---|
<IntakeFileSearchScreen> |
|
Required element: The opening and closing tag of the business rule. |
|
<IntakeFile> |
Required, repeatable element: The opening and closing tag for the configuration of search fields and a result table for a single Intake File. |
||
TYPECODE | Defines the Intake Profile Definition type. | A TypeCode from the AsCodeIntakeProfileDefinitionType code name. | |
<Search> | The opening and closing tag for the search field configuration section. | ||
<Fields> | Standard fields configuration applies—see the Fields Element page for more information. | ||
<Field> | Standard fields configuration applies—see the Fields Element page for more information. | ||
<Name> | Standard fields configuration applies—see the Fields Element page for more information. | ||
<Display> | Standard fields configuration applies—see the Fields Element page for more information. | ||
<DataType> | Standard fields configuration applies—see the Fields Element page for more information. | ||
<Group> |
Standard fields configuration applies—see the Fields Element page for more information. |
INTAKEFILE INTAKEFILEFIELD |
|
<Results> | The opening and closing tag for the search result table configuration. | ||
<Table> | Standard table configuration applies—see the Table Element page for more information. | ||
<Column> | Standard table configuration applies—see the Table Element page for more information. | ||
<Name> | Standard table configuration applies—see the Table Element page for more information. | ||
<Display> | Standard table configuration applies—see the Table Element page for more information. | ||
<DataType> | Standard table configuration applies—see the Table Element page for more information. | ||
<Group> | Standard table configuration applies—see the Table Element page for more information. |
XML Example
<IntakeFileSearchScreen>
<IntakeFile TYPECODE="01">
<Search>
<Fields>
<Field>
<Name>IntakeProfileName</Name>
<Display>Profile Name</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Field>
<Field>
<Name>StatusCode</Name>
<Display>Status</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Field>
<Field>
<Name>FileID</Name>
<Display>File ID</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Field>
<Field>
<Name>NumberOfErrors</Name>
<Display>Number Of Errors</Display>
<DataType>Integer</DataType>
<Group>IntakeFileField</Group>
</Field>
</Fields>
</Search>
<Results>
<Table>
<Column>
<Name>IntakeProfileName</Name>
<Display>Profile Name</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Column>
<Column>
<Name>FileID</Name>
<Display>File ID</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Column>
<Column>
<Name>StatusCode</Name>
<Display>File Status</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Column>
<Column>
<Name>ReceivedGMT</Name>
<Display>Received Date</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Column>
<Column>
<Name>ProcessedGMT</Name>
<Display>Processed Date</Display>
<DataType>Text</DataType>
<Group>IntakeFile</Group>
</Column>
</Table>
</Results>
</IntakeFile>
</IntakeFileSearchScreen>