Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • First flow – It enables the advanced search option like

  • Default flow - It shows the last 30 days' records like errors, status, warnings, warning and good records

  • Last flow – It enables a search option with an emp name or SSN

...

User Interface

...

Process Steps

Step-by-Step Process Flow

  1. User Interface (UI) Request:

    • A user interacts with the UI and triggers a request to view application data.

    • The UI sends a request to the backend service via the REST API.

  2. API Endpoint Invocation:

    • The REST provider API receives the request and routes it to the appropriate endpoint.

    • The endpoint is configured to handle specific data queries and statuses (good records, error records, warnings, etc.).

  3. Backend Service Initialization:

    • The API endpoint invokes the backend service responsible for processing the request.

    • The backend service starts by validating the incoming request parameters.

  4. Data Retrieval:

    • The backend service queries the database or data storage to fetch the requested application data.

    • It retrieves data based on the requested criteria (e.g., all records, good records, error records, warnings).

  5. Data Processing:

    • The backend service processes the retrieved data to format it according to the requirements.

    • It filters and categorizes the data into different statuses (good records, error records, warnings).

  6. Response Preparation:

    • The processed data is then packaged into a structured response.

    • The response includes all the necessary details and statuses requested by the user.

  7. Sending the Response:

    • The backend service sends the prepared response back to the REST provider API.

    • The API then forwards the response to the UI.

  8. UI Displays Data:

    • The UI receives the response and parses the data.

    • It displays the data to the user, showing complete statuses like good records, error records, warnings, etc.

...

This process flow facilitates advanced search options for specific application data within the system. The advanced search functionality allows users to input Start Date and End Date as search parameters, which triggers interactions between the front-end and back-end systems. Subsequently, the filtered results are displayed to the user for review.

...

Process Steps

...

  1. User Interface Initialization:

    • The user accesses the search interface of the application.

...

  1. Context Target -The target will be ContextTarget to store data in the flow for the REST provider.

...

c. Process

...

flow - To search By File Attribute.

This flow process enables search options by file attribute like FILE_QUEUE_ID, SSN, EMPLOYEE_LAST_NAME, GROUP_POLICY_NUMBER, COVERAGE_ID, EMPLOYEE_FIRST_NAME, EMPLOYEE_ID & RECORD_STATUS. It enables how the user initiates the search, the interactions between the front end and back end, and the final display of the filtered results to the user.

...

  1. User Initiates Search:

  • User Interface: The user accesses a search interface on the front end. This interface provides input fields for each of the file attributes mentioned.

  • Input: The user enters search criteria in one or more fields (e.g., SSN, EMPLOYEE_LAST_NAME, etc.).

  1. Front End Validation:

  • Form Validation: The front end performs basic validation to ensure the inputs are in the correct format (e.g., SSN is numeric and of the correct length, EMPLOYEE_LAST_NAME is alphabetic, etc.).

    • Feedback: If any inputs are invalid, the user is prompted to correct them before proceeding.

  1. Search Request Submission:

  • Request Construction: The front end constructs a search request based on the input fields filled by the user. This request typically includes a payload with the search criteria.

    • API Call: The front end sends the search request to the back end via an API call.

  1. Backend Processing:

  • Request Reception: The back end receives the search request.

    • Validation and Sanitization: The back end further validates and sanitizes the input to ensure security and integrity.

    • Database Query: The back end constructs and executes a query against the database based on the search criteria

  1. Data Retrieval and Filtering:

  • Query Execution: The database executes the query and returns the results to the back end.

    • Filtering: The back end may apply additional filtering or business logic to the results if necessary.

  1. Front End Display:

  • Response Reception: The front end receives the response.

    • Result Rendering: The front end processes the response data and displays the filtered results to the user in a user-friendly format (e.g., a table or list).

    • Feedback: If no results are found, the front end provides appropriate feedback to the user (e.g., "No records found matching the search criteria").

Process flow activity:

  1. Source Activity - The source comprises a database. It is necessary to create DbInfo and DbLayout to be invoked in the source activity

...