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
	-----------
          1

  	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 483502

	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 483502

		Customer ID : 1 

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

	indicating the order was found.


Test was successful.