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'.

	db2 => select C_ID from C_CUSTOMER where C_CREDIT = 'GC' fetch first 1 row only

	C_ID
	-----------
              23052

  	1 record(s) selected.
        

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 one orderline was created for the customer found
	in a.  The browser displayed the message:

		Order processed. Order number is 2332502

	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 2332502

		Customer ID : 23052 

		Ship Date : null
	
			Current items in the list 
			Item ID 		Quantity 	
			00001MITEM00941		25	 	

	indicating the order was found.


Test was successful.