2.10.2.2  Atomicity Test 2

a. Choose a customer with good credit by looking in the C_CUSTOMER table
for a customer with the C_CREDIT field equal to 'GC'.

	select min(c_id) from spec/c_customer where c_credit='GC'

	 MIN ( C_ID ) 
            1 

b. Enter a new order for this customer using the web client application.
The transaction should succeed.  Note the order ID returned.

	A new order with two orderlines was created for the customer found
	in a.  The browser displayed the message:

		Order processed. Order number is 36001 

	indicating success.

c. Retrieve the status of the noted order ID above.  The order along with
the orderlines entered in step b. should be displayed.

	The browser displayed the message:

		Status of order 36001

		Customer ID : 1 

		Ship Date : null
	
			Current items in the list 
			Item ID 		Quantity 	
			00001MITEM00001 	1 	
			00001MITEM00002 	1 	

	indicating the order was found.


Test was successful.
 
