As mentioned in the introduction, this tutorial uses the same development environment as the Getting started with ColdFusion and Flash Builder 4 beta tutorial and the other tutorials in this series.
Locate the Data/Services view in Flash Builder 4 beta. You should see the F4CF_Getting_Started_Service service shown in Figure 1.

Figure 1. Verify whether the EmployeeSalesData data type has been defined.
If you do not see the data type, follow the steps below to assign your own data type name to the returned data that is retrieved in the getAllData() service call to the CFC method.
Right-click the getAllData() function in the F4CF_Getting_Started_Service option of the Data/Services view and select Configure Return Type (see Figure 2).

Figure 2. Configure the return type of getAllData() function.
Each record from the query has been placed in an ActionScript object with each column of data (FIRSTNAME, LASTNAME, EMAIL, and so on) set in a name/value pair. Each record is indexed starting at zero.
Note: Unlike ColdFusion, ActionScript is a zero-indexed language.
Rather than generically referring to this returned data as an object, this wizard lets you to give the data a return type name. You will do this next.
In the Configure Operation Return Type dialog box, create a new custom data type named EmployeeSalesData (see Figure 3).

Figure 3. Create a new custom data type.
Enter your username and password in the Remote Service Authentication window (see Figure 4).

Figure 4. Enter the remoting credentials for the getAllData() CFC function.
You will see the EmployeeSalesData data type listed in the Data Types category of the Data/Services view (see Figure 5). Note that the properties of the data type are the query columns returned from the CFC method.

Figure 5. The data type and its properties.