Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Tutorial/3.7/Minicrm Step-by-Step"

< Scout‎ | Tutorial‎ | 3.7
(Get example Database)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{ScoutPage|cat=Tutorial 3.7}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
'''Mini CRM Tutorial'''
+
 
+
With this tutorial, you'll create a little example application with {{ScoutLink|SDK|name=Scout SDK}}, where you can enter and edit companies.
+
 
+
== Requirements ==
+
This tutorial assumes that you have installed Scout SDK as described in {{ScoutLink|HowTo|Install Scout SDK|Download and Install Scout SDK}}. Click [[{{BASEPAGENAME}}/Project From Existing Workspace|here]] to download the workspace.
+
 
+
== Create New Scout Project ==
+
Creating new scout projects is described
+
{{ScoutLink|Tutorial|3.7/Minicrm/New_Eclipse_Scout_Project|here}}. That page also shows how to launch the server and the client.
+
 
+
== Get example Database ==
+
Follow the instructions on [[{{BASEPAGENAME}}/Minicrm/Get_example_database|this page]] to get our small Apache Derby example database.
+
 
+
== Set up SQL Service ==
+
Now we need to tell the application how to contact the database. How this works is described  [[{{BASEPAGENAME}}/Minicrm/Set_up_SQL_Service|here]].
+
 
+
== Write the first Page ==
+
A standard Eclipse Scout application consists of pages in a tree structure. A page typically shows data in some sort of table. If you write an application, you need to start with a page. [[{{BASEPAGENAME}}/Minicrm/Write_the_first_page|Learn more]]
+
 
+
You should have a tiny Eclipse Scout application running at the end of this step!
+
 
+
You will end up with the following tree structure for your application:
+
 
+
Standard Outline
+
  │
+
  └─Company Table Page
+
 
+
Very simple indeed!
+
 
+
== Add a search form ==
+
We created a page with a table listing all the companies in the database. Add a search form that allows users to limit the number of rows returned.
+
[[{{BASEPAGENAME}}/Minicrm/Add_a_search_form|Learn more]]
+
 
+
== Add a form to edit the data ==
+
In order to edit the data in our page, we need to create a context menu to call a form, create the form and the process service it needs to actually select, insert, update (and possibly delete) the data. [[{{BASEPAGENAME}}/Minicrm/Add_a_form_to_edit_the_data|Learn more]]
+
 
+
== Write the second page ==
+
 
+
We wrote the company table page, now let's write a top-level person table page. Once we have that, we want to '''reuse the table page''' by also using it as a child page for a company. [[{{BASEPAGENAME}}/Minicrm/Write_the_second_page|Learn more]]
+
 
+
You will end up with the following tree structure for your application:
+
 
+
Standard Outline
+
  │
+
  ├─Company Table Page
+
  │  │
+
  │  └─Person Table Page
+
  │
+
  └─Person Table Page
+
 
+
== Reorganize the tree ==
+
 
+
We want to add an additional nodes under the ''companies table page''. This will require us to add a '''page with nodes''' and [[{{BASEPAGENAME}}/Minicrm/Reorganize_the_tree|reorganize the tree a bit]].
+
 
+
When we're done, the result should look as follows:
+
 
+
Standard Outline
+
  │
+
  ├─Company Table Page
+
  │  │
+
  │  └─Company Details Node Page ← <font style="background-color: yellow">new</font>
+
  │    │
+
  │    └─Person Table Page
+
  │
+
  └─Person Table Page
+
 
+
== Code Types ==
+
Each Code Types provides a list of values in order to fill up elements like Smart Fields or List Boxes.
+
 
+
In a next step we want to divide the companies into two groups: suppliers and customers. When the company is type of customer, a Smart Field with ratings between A and D should appear. Let's create two Code Types and add some behaviour to the CompanyForm and ProcessServices. [[{{BASEPAGENAME}}/Minicrm/Code_Types|Learn more]]
+
 
+
== Lookup Calls and Lookup Services ==
+
 
+
In the previous chapter we have seen how to fill smartfields with an enumerated list of codes that were based on a code type. However, sometimes you need a smartfield (or listbox) with dynamically calculated entries that are based on the data in your database (e.g. a smartfield that allows selecting a person or company). This chapter shows how to accomplish this by implementing a so called Lookup Call and a corresponding Lookup Service. [[{{BASEPAGENAME}}/Minicrm/Lookup_Calls_and_Lookup_Services|Learn more]]
+

Latest revision as of 05:17, 14 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top