Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [eclipselink-users] RE: Strange issue in merging changes.

The log files attached.

 

Regards,
Shashi

 

From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Shashikant Kale
Sent: Thursday, July 29, 2010 8:15 PM
To: EclipseLink User Discussions
Subject: RE: [eclipselink-users] RE: Strange issue in merging changes.

 

Hello Chris,

 

Also,

 

>>Also, are you saying that the entity returned from em.merge doesn't have the changes that are in the entity passed in, or do the changes revert later on? 

 

Yes, the entity returned from em.merge doesn’t have the changes that are in the entity passed in. And while debugging I noticed that the changes are maintained until the child which has ManyToOne (Cascade=CascadeType.REFRESH) with parent is being merged for changes in ObjectBuilder. As soon as the execution starts to merge the changes in the child, after the control comes back to the parent merging, the changes are lost.

 

 

>>Also, what other settings are you using (customizers, event listeners, properties that change cache behavior etc)?  If something you do causes a refresh on Child, this will force a refresh on the parent >>as well (with the cascade refresh option), causing you to loose the changes. 

 

I am not using any event listeners, however using session customizer to add a custom logger to the EL but I don’t suspect this would affect cache behavior. I have observed that if child getter is called and child is accessed or children are loaded in EAGER fashion in OneToMany relation, this issue occurs.

 

>>Are you able to see why the Child is referencing a different instance  of the Parent than is referencing it?  This shouldn't happen, but depending on how you are managing your entities and setting >>relations though, its not disallowed. 

 

In the debug mode, I see that the entity hashcode for the parent is same as that of the referred parent instance from within child. Also before merge if I inspect the parent reference from within child I see all the data intact. However after merge i.e. ObjectBuilder class execution, the changes to the parent are lost.

 

>>Can you set the eclipselink.logging.level property to Finest and show the log generated up to where you check the merged parent for the changes.

I have generated the log, however the log created is huge since our entity structure is deep in hierarchy. Hence I would create a simple use case with which I can simulate the issue and I will share the generated log. Still for your reference I have attached two log files with the real entities, one with log statements after service is invoked and before em.merge is called and the other after merge is called.

 

Also is there any way I can show you the issue simulation, that would certainly help me to reduce the time in resolving it.

 

Thanks for your help,

Shashi

 

 

 

From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Shashikant Kale
Sent: Thursday, July 29, 2010 11:27 AM
To: EclipseLink User Discussions
Subject: RE: [eclipselink-users] RE: Strange issue in merging changes.

 

Hello Chris,

 

I didn’t get the Tim’s mail you referred below. Not sure if it didn’t reach me somehow.

 

However what difference I find using @Transactional(readOnly=false) (this doesn’t work i.e. parent entity changes are lost) and @Transactional (readOnly=true) (This works all fine) is that the former way the early transaction is started on the UnitOfWork. The following code is getting executed in the first case. This is EL specific code which is called in the EclipseLink integration code in spring orm.

 

                  UnitOfWork uow = (UnitOfWork) getSession(entityManager);

                  uow.beginEarlyTransaction();

 

Due to beginEarlyTransaction call on the UoW I find that if a child entity is accessed meanwhile (or loaded due to EAGER fetchType set on the OneToMany relation) which has relation with parent as

 

ManyToOne with cascade type as REFRESH the changes are lost when the execution reaches in ObjectBuilder for merging the changes in the child entity.

 

I will try out your suggestion for debugging and answer your queries below and will also provide log set at Finer level in some time.

 

Thanks so much for your help,

Shashi

 

From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Christopher Delahunt
Sent: Wednesday, July 28, 2010 7:31 PM
To: EclipseLink User Discussions
Subject: Re: [eclipselink-users] RE: Strange issue in merging changes.

 

Hello Shashi,

I'm not all that familiar with Spring, so I don't know if this could be something to do with its interactions, but you might try the suggestion Tim made about using propagation on your transaction. 

Looking at EclipseLink though, it seems you are able to debug the EclipseLink-Spring integration code and the application.  Are you able to see why the Child is referencing a different instance
of the Parent than is referencing it?  This shouldn't happen, but depending on how you are managing your entities and setting relations though, its not disallowed.  Also, are you saying that the entity
returned from em.merge doesn't have the changes that are in the entity passed in, or do the changes revert later on?  Does the collection of children include new ones?

Also, what other settings are you using (customizers, event listeners, properties that change cache behavior etc)?  If something you do causes a refresh on Child, this will force a refresh on the parent as well (with the cascade refresh option), causing you to loose the changes. 
Can you set the eclipselink.logging.level property to Finest and show the log generated up to where you check the merged parent for the changes.

Best Regards,
Chris


On 28/07/2010 9:10 AM, Shashikant Kale wrote:

Can an EL dev team member please share thought on why this would be happening. This has come as a critical issue for us and we are struggling to get an alternative to make it work.

 

Regards,
Shashi

 

From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Shashikant Kale
Sent: Tuesday, July 27, 2010 4:35 PM
To: EclipseLink User Discussions
Subject: [eclipselink-users] RE: Strange issue in merging changes.

 

Also,

 

Figured out that, in spring, if a transaction is writable, i.e. readOnly=false, an early transaction is started on the current UoW. The code is

 

            if (!definition.isReadOnly() && !this.lazyDatabaseTransaction) {

                  // This is the magic bit. As with the existing Spring TopLink integration,

                  // begin an early transaction to force EclipseLink to get a JDBC Connection

                  // so that Spring can manage transactions with JDBC as well as EclipseLink.

                  UnitOfWork uow = (UnitOfWork) getSession(entityManager);

                  uow.beginEarlyTransaction();

            }

And it is writable, an early transaction is started and the changes done to the parent are lost during merge. I couldn’t figure out how this changes the behavior, but looks like it does.

 

Can somebody please throw some light on this?

 

Thanks,

Shashi

 

From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Shashikant Kale
Sent: Tuesday, July 27, 2010 2:34 PM
To: EclipseLink User Discussions
Subject: [eclipselink-users] Strange issue in merging changes.

 

Hi,

 

We have been using Eclipselink 1.2.0 with Spring.

 

We have configured Spring transaction interceptor (Using @Transactional(readOnly=false)) to manage the transactions in our Service code.

 

Parent  {

      @OneToMany(mappedBy="parent", cascade={CascadeType.ALL},  fetch=FetchType.EAGER)

      @org.eclipse.persistence.annotations.PrivateOwned

protected List<Child> children = new ArrayList<Child>();

}

 

Child {

      @ManyToOne(cascade={CascadeType.REFRESH}) @JoinColumn(name="SOME_CHILD_ID")

      protected Parent parent;

}

 

Service {

                @Transactional (readOnly=false)

                public void serviceMethod (Parent parent){

 

                                parent.setData(“data”);

                                ……

                                ……

                                Parent merged = em.merge(parent);

 

                                // Here the merged parent has lost the changes i.e. data

}

}

 

However I am seeing a strange issue in merging the changes for an entity which has a child entity with OneToMany relation. The changes done to the entity are getting lost. When I debugged into EL code, I went inside merge code where changes are calculated for an entity, however in org.eclipse.persistence.internal.descriptors.ObjectBuilder class I find that when the OneToMany mapping is being merged in the method while traversing through the DatabaseMapping, it calls further to merge changes in the Child, the target entity instance i.e. child entity instance doesn’t contain the latest parent entity with the changes. Hence the changes of the parent are getting lost.

 

public void mergeIntoObject(Object target, boolean isUnInitialized, Object source, MergeManager mergeManager, boolean cascadeOnly, boolean isTargetCloneOfOriginal)

 

However if I remove CascadeType.REFRESH in the ManyToOne mapping inside Child it works fine. Also if I mark the service method as @Transactional (readOnly=true) it works fine either.

 

Is there anything wrong in the entity relationship setup?

 

Kindly let me know.

 

TIA,
Shashi

 
 
 
 
 


 
 
 
 
 
_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users
  
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : client_acquired
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINER: client acquired

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINER: client acquired

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : begin_transaction
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINER: begin transaction

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINER: begin transaction

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,577 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.TrgSubjectVisit@13326e

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.TrgSubjectVisit@13326e

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC")

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC")

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132f4c

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132f4c

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132f48

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132f48

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132faf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132faf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132fab

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132fab

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1331a3

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1331a3

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13319f

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13319f

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133077

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133077

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133073

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133073

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13321f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13321f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13321b

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13321b

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133013

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133013

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13300f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13300f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133207

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133207

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133203

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133203

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1330db

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1330db

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@1330d7

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@1330d7

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133213

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133213

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13320f

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13320f

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@119dbc

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@119dbc

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@119db8

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@119db8

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : client_acquired
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINER: client acquired

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINER: client acquired

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : begin_transaction
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINER: begin transaction

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINER: begin transaction

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:29,483 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]
2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:29:54,546 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,577 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,624 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.TrgSubjectVisit@13326e

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.TrgSubjectVisit@13326e

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]
2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:29:54,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC")

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC")

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : connection message : reconnecting_to_external_connection_pool
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: reconnecting to external connection pool

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_VERSION_ID, LAST_MODIFIED_ON, ICF_RECONSENT, VERSION_APPROVED, CREATED_ON, ICF_VERSION, CREATED_BY, LAST_MODIFIED_BY, EFFECTIVE_DATE, VERSION_NUMBER, STUDY_ID, AMENDMENT_ID FROM AGC_STUDY_VERSION WHERE (STUDY_ID = ?) ORDER BY EFFECTIVE_DATE ASC
	bind => [979134]

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,671 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132f4c

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132f4c

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132f48

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132f48

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132faf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@132faf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132fab

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@132fab

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1331a3

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1331a3

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13319f

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13319f

2010-07-29 17:29:54,702 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133077

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133077

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133073

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133073

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13321f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13321f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13321b

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13321b

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133013

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133013

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13300f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13300f

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133207

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133207

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133203

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133203

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1330db

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@1330db

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@1330d7

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@1330d7

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133213

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@133213

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13320f

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@13320f

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@119dbc

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@119dbc

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@119db8

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@119db8

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:29:54,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@13326b

2010-07-29 17:30:13,422 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : merge_clone_with_references
2010-07-29 17:30:13,437 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Merge clone with references com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:30:13,437 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Merge clone with references com.ags.agcli.entity.planning.StudyTrgVersion@13326d

2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTreatmentGroup@f11c1

2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyTreatmentGroup@f11c1

2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:13,453 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fca23

2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fca23

2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@282b

2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@282b

2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,468 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@15

2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@15

2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@282b

2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@282b

2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,484 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2711

2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2711

2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@2712

2010-07-29 17:30:13,500 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@2712

2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2711

2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2711

2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,515 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Program@dccf6

2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Program@dccf6

2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@2

2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@2

2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,531 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25b

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25b

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@8

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListStdCodesM@8

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25b

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25b

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@c3812

2010-07-29 17:30:13,547 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@c3812

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e0

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e0

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2836

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2836

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,562 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@272

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@272

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea88

2010-07-29 17:30:13,578 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea88

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75511

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75511

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7a

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7a

2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,593 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@63caeb93

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@63caeb93

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e0

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e0

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,609 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@11fc11

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@11fc11

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3c

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3c

2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,625 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@26e

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@26e

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@11fc0b

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@11fc0b

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8cfbf347

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8cfbf347

2010-07-29 17:30:13,640 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@11fc10

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@11fc10

2010-07-29 17:30:13,656 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3d

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3d

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@26e

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@26e

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@11fc0f

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@11fc0f

2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,672 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@a0b94c26

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@a0b94c26

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,687 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@10bc26

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationAddressMapping@10bc26

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3c

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@3c

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@fe611

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.AddressLibrary@fe611

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@a170288a

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@a170288a

2010-07-29 17:30:13,703 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25c

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationPersonnelMapping@11b10a

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationPersonnelMapping@11b10a

2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,718 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@10fb02

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@10fb02

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c950e1

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c950e1

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea87

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea87

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,734 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8b

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8b

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@272

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@272

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@622adc1

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@622adc1

2010-07-29 17:30:13,750 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2835

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2835

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75512

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75512

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7a

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7a

2010-07-29 17:30:13,765 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationPersonnelMapping@10bc25

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrganizationPersonnelMapping@10bc25

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@f4a00

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@f4a00

2010-07-29 17:30:13,781 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c950e1

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c950e1

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e2

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@e2

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2836

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2836

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,797 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8b

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8b

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f2

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f2

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea88

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea88

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,812 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@df

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@df

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2835

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2835

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75511

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c75511

2010-07-29 17:30:13,828 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@129f56

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@129f56

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@10bc27

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@10bc27

2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,843 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@10bc29

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.OrgOperationalUnit@10bc29

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Sponsor@10bc24

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fd472

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fd472

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7c

2010-07-29 17:30:13,859 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@ea7c

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@304db91

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@304db91

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@13c9

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@13c9

2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,875 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fca20

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@78fca20

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25a

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@25a

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,890 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@e6069

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.admin.Personnel@e6069

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@8a

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@23c977f3

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@15

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@15

2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,906 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2bd

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2bd

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyPlan@101ee4

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyPlan@101ee4

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,922 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@19

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@19

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2c5

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListM@2c5

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.arisglobal.commonmodules.codelist.entities.CodeListCodesM@5f60bfa

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:30:13,937 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="trgVisits" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:30:13,953 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]
2010-07-29 17:30:13,953 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:30:13,953 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (TRG_VISIT_CYCLE_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258093]

2010-07-29 17:30:13,953 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:13,953 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTrgVersion" referenceClass=StudyTrgVersion )

2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]
2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_TRG_VERSION_ID, STUDY_TRG_ACTIVE, LAST_MODIFIED_ON, CREATED_ON, CREATED_BY, S_TREAT_GROUP_DESC, LAST_MODIFIED_BY, SUBJECT_TG, VERSION_NUMBER, S_TREAT_GROUP_ID FROM AGC_S_TRG_VERSION WHERE (STUDY_TRG_VERSION_ID = ?)
	bind => [1258093]

2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:13,968 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTreatmentGrp" referenceClass=StudyTreatmentGroup )

2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]
2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT S_TREAT_GROUP_ID, S_TREAT_GROUP_DESC, SUBJECTS_PER_TG, LAST_MODIFIED_ON, STAGE, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, CYCLE_ENABLED, S_TREAT_GROUP_NAME, STUDY_ID FROM AGC_S_TREATMENT_GROUPS WHERE (S_TREAT_GROUP_ID = ?)
	bind => [987585]

2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:13,984 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,000 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,000 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:30:14,000 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,000 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT STUDY_ID, TREAMENT_BLINDING_ID, STUDY_DISPLAY_ID, SITES_FOR_COUNTRY, STUDY_DESIGN, LOWER_AGE, SUPPLY_TREATMENTS, STUDY_SERVICES_DESC, GLOBAL_DISPLAY_ID, PRIMARY_OBJECTIVE, EUDRACT_NUMBER, ENROLLEMNT_TARGET, LAST_MODIFIED_ON, INTERIM_ANALYSIS, CREATED_ON, OTHER_SUPPLIES_INFORMATION, SHORT_STUDY_TITLE, CREATED_BY, PRIMARY_ENDPOINTS, LAST_MODIFIED_BY, STUDY_DESCRIPTION, CTGOV_IDENTIFIER, DOCUMENT_TEMPLATE_ID, STATUS_CHANGED_ON, STUDY_TITLE, EXCLUSION_CRITERIA, STUDY_END_DATE, SUBJECTS_PER_SITE, TREATMENT_DURATION, STATISTICAL_METHODS, SECONDARY_ENDPOINTS, UPPER_AGE, INCLUSION_CRITERIA, SUPPLY_LABELING, DURATION_UNIT_ID, OTHER_SUPPLIES, STUDY_START_DATE, SAMPLE_SIZE_DETERMINATION, STUDY_VERSION, SECONDARY_OBJECTIVE, INDNUMBER, SITES_FOR_STUDY, TREATMENT_DESCRIPTION, STUDY_STATUS, PROGRAM_ID, THERAPEUTIC_AREA_ID, SPR_REPRESENTATIVE_ID, VOLUNTEERS_YN_ID, STUDY_CONDUCTED_BY_ID, COORDINATING_INVEST_ID, STUDY_TYPE_ID, UPPER_AGE_UNIT_ID, STUDY_PHASE_ID, SPONSOR_COMPANY_NAME, SEX_SELECTION_ID, LOWER_AGE_UNIT_ID, STUDY_METHODOLOGY FROM AGC_STUDIES WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyStatus" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyParameters" referenceClass=StudyParameters sql="SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,031 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:30:14,047 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,047 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PARAMETER_ID, INVESTIGATIONAL_URL, REPORTED_REG_YN, LAST_MODIFIED_ON, MULTIPLE_SITE_YN, MILESTONES_TEMPLATE_ID, CREATED_ON, CREATED_BY, LAST_MODIFIED_BY, TRACK_SUBJECT_YN, NOTIFY_MONTHS, MILESTONE_YN, STUDY_ID, CURRENCY_ID FROM AGC_STUDY_PARAMETERS WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,047 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,047 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:30:14,047 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="program" referenceClass=Program )

2010-07-29 17:30:14,062 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,062 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,062 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTherapeuticArea" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,062 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,062 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="sprRepresentative" referenceClass=Personnel )

2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyType" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,078 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,093 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="siteActivationPlan" referenceClass=SiteActivationPlan sql="SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,093 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:30:14,093 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,093 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SITE_ACTIVATION_PLAN_ID, START_DATE, SITES_REQUIRED_EB, SITES_REQUIRED, START_EB_DATE, PHASE_DURATION_EB, LAST_MODIFIED_ON, EVERY, RATES_SITES, CREATED_ON, GENERATE_PLAN, RATES_SITES_EB, CREATED_BY, LAST_MODIFIED_BY, END_BY_EB_DATE, TIMELINE_CODE_ID, STUDY_ID, TIMELINE_EB_CODE_ID FROM AGC_SITE_ACTIVATION_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPlan" referenceClass=StudyPlan sql="SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)")

2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]
2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,109 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT PLAN_ID, CREATED_ON, SUBJECT_ENROLLEMNT_TRG, CREATED_BY, LAST_MODIFIED_BY, LAST_MODIFIED_ON, SITES_FOR_STUDY, STUDY_ID FROM AGC_STUDY_PLAN WHERE (STUDY_ID = ?)
	bind => [979134]

2010-07-29 17:30:14,125 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,125 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,125 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,125 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,125 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:30:14,140 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyTargetPlan" referenceClass=StudySubjectTargets sql="SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)")

2010-07-29 17:30:14,140 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]
2010-07-29 17:30:14,140 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:30:14,140 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUB_TARGET_ID, CREATED_ON, COMPLETION_RATIO, SCREENING_TARGET, CREATED_BY, COMPLETION_TARGET, ENROLLMENT_TARGET, SCREENING_RATIO, LAST_MODIFIED_BY, ENROLLMENT_RATIO, LAST_MODIFIED_ON, PLAN_ID FROM AGC_STUDY_SUB_TARGETS WHERE (PLAN_ID = ?)
	bind => [1056484]

2010-07-29 17:30:14,156 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,156 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,156 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyPhase" referenceClass=CodeListCodesM )

2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="trgSubVisitPlan" referenceClass=TrgSubVisitPlan sql="SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)")

2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]
2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:30:14,172 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT SUBJECT_VISIT_PAN_ID, CREATED_ON, VISIT_WINDOW_BEFORE, CREATED_BY, LAST_MODIFIED_BY, DURATION_IN_DAYS, DAYS_UNTIL_NEXT_VISIT, VISIT_WINDOW_AFTER, LAST_MODIFIED_ON, ALLOW_RESET, VISIT_DISPLAY_SEQ, TRG_SUBJECT_VISIT_ID FROM AGC_S_TRG_SUB_VISIT_PLANS WHERE (TRG_SUBJECT_VISIT_ID = ?)
	bind => [1258094]

2010-07-29 17:30:14,187 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,187 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:30:14,187 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="subjectCollection" referenceClass=TrgSubjectVisit sql="SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC")

2010-07-29 17:30:14,187 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]
2010-07-29 17:30:14,203 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:30:14,203 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT TRG_SUBJECT_VISIT_ID, SUBJECT_STATUS_ID, LAST_MODIFIED_ON, SDV_YN, VISIT_DISPLAY_SEQ, CREATED_ON, CREATED_BY, SUBJECT_VISIT_NAME, CYCLE_NO, LAST_MODIFIED_BY, CYCLE_YN, SUBJECT_VISIT_DESC, TRG_VISIT_CYCLE_ID, PARENT_VISIT_ID FROM AGC_S_TRG_SUBJECT_VISITS WHERE (PARENT_VISIT_ID = ?) ORDER BY VISIT_DISPLAY_SEQ ASC
	bind => [1258094]

2010-07-29 17:30:14,203 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,203 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT t1.STUDY_VERSION_ID, t1.LAST_MODIFIED_ON, t1.ICF_RECONSENT, t1.VERSION_APPROVED, t1.CREATED_ON, t1.ICF_VERSION, t1.CREATED_BY, t1.LAST_MODIFIED_BY, t1.EFFECTIVE_DATE, t1.VERSION_NUMBER, t1.STUDY_ID, t1.AMENDMENT_ID FROM AGC_SV_TRGV_MAPPING t0, AGC_STUDY_VERSION t1 WHERE ((t0.STUDY_TRG_VERSION_ID = ?) AND (t1.STUDY_VERSION_ID = t0.STUDY_VERSION_ID))")

2010-07-29 17:30:14,203 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadAllQuery(name="studyVersionList" referenceClass=StudyVersion sql="SELECT t1.STUDY_VERSION_ID, t1.LAST_MODIFIED_ON, t1.ICF_RECONSENT, t1.VERSION_APPROVED, t1.CREATED_ON, t1.ICF_VERSION, t1.CREATED_BY, t1.LAST_MODIFIED_BY, t1.EFFECTIVE_DATE, t1.VERSION_NUMBER, t1.STUDY_ID, t1.AMENDMENT_ID FROM AGC_SV_TRGV_MAPPING t0, AGC_STUDY_VERSION t1 WHERE ((t0.STUDY_TRG_VERSION_ID = ?) AND (t1.STUDY_VERSION_ID = t0.STUDY_VERSION_ID))")

2010-07-29 17:30:14,218 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : sql message : SELECT t1.STUDY_VERSION_ID, t1.LAST_MODIFIED_ON, t1.ICF_RECONSENT, t1.VERSION_APPROVED, t1.CREATED_ON, t1.ICF_VERSION, t1.CREATED_BY, t1.LAST_MODIFIED_BY, t1.EFFECTIVE_DATE, t1.VERSION_NUMBER, t1.STUDY_ID, t1.AMENDMENT_ID FROM AGC_SV_TRGV_MAPPING t0, AGC_STUDY_VERSION t1 WHERE ((t0.STUDY_TRG_VERSION_ID = ?) AND (t1.STUDY_VERSION_ID = t0.STUDY_VERSION_ID))
	bind => [1258093]
2010-07-29 17:30:14,218 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINE: SELECT t1.STUDY_VERSION_ID, t1.LAST_MODIFIED_ON, t1.ICF_RECONSENT, t1.VERSION_APPROVED, t1.CREATED_ON, t1.ICF_VERSION, t1.CREATED_BY, t1.LAST_MODIFIED_BY, t1.EFFECTIVE_DATE, t1.VERSION_NUMBER, t1.STUDY_ID, t1.AMENDMENT_ID FROM AGC_SV_TRGV_MAPPING t0, AGC_STUDY_VERSION t1 WHERE ((t0.STUDY_TRG_VERSION_ID = ?) AND (t1.STUDY_VERSION_ID = t0.STUDY_VERSION_ID))
	bind => [1258093]

2010-07-29 17:30:14,218 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINE: SELECT t1.STUDY_VERSION_ID, t1.LAST_MODIFIED_ON, t1.ICF_RECONSENT, t1.VERSION_APPROVED, t1.CREATED_ON, t1.ICF_VERSION, t1.CREATED_BY, t1.LAST_MODIFIED_BY, t1.EFFECTIVE_DATE, t1.VERSION_NUMBER, t1.STUDY_ID, t1.AMENDMENT_ID FROM AGC_SV_TRGV_MAPPING t0, AGC_STUDY_VERSION t1 WHERE ((t0.STUDY_TRG_VERSION_ID = ?) AND (t1.STUDY_VERSION_ID = t0.STUDY_VERSION_ID))
	bind => [1258093]

2010-07-29 17:30:14,218 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="study" referenceClass=Study )

2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : query message : execute_query
2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Execute query ReadObjectQuery(name="studyAmendment" referenceClass=StudyAmendment )

2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:14,234 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyAmendment@133267

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.StudyVersion@ef0bf

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:14,250 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.log : namespace : transaction message : register_existing
2010-07-29 17:30:14,265 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - CommonsLoggingSessionLog.internalLog : null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be

2010-07-29 17:30:14,265 DEBUG [com.arisglobal.aglite.jpa.CustomAbstractSessionLog] - null
FINEST: Register the existing object com.ags.agcli.entity.planning.Study@ef0be


Back to the top