Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Panel
id0

CRM Session holds information about the logged in user, the server, the database and the general and formatting settings.

What does this section cover?

Table of Contents

Getting the session object

To get the current session object you have to use getCRMSession() method which is implemented in com.crm.businessobject.CRMBase super class. Note that all CRMBO, CRMUI, CRMProcess and CRMAPIBean classes extend CRMBase.

Code Block
titleGetting the session object
collapsetrue
 public CRMDO copy(CRMDO dto)
{
	CRMSession session = getCRMSession();
	...
}

Using the session object

After getting the session object, you can use it to get information about the logged in user, the server, the database and the general and formatting settings.

Code Block
titleExample 1 - Logged In User
collapsetrue
 public CRMDO copy(CRMDO dto)
{
	CRMSession session = getCRMSession();
	if( dto instanceof CUSTOMCRMDORentalTypeProduct)
	{
		CUSTOMCRMDORentalTypeProduct product = (CUSTOMCRMDORentalTypeProduct) dto;

		product.setCreatedByUnit(session.getUnit());
		product.setCreatedByUser(session.getLoggedUser());
		product.setUpdatedByUnit(session.getUnit());
		product.setUpdatedByUser(session.getLoggedUser());
	}
}


Code Block
titleExample 2 - Formatting Settings
collapsetrue
public BigDecimal getTotalAmount(ArrayList<CRMDO> rentalItems) {
{
	BigDecimal totalAmount  = new BigDecimal(0);
	...
	
	FormattingSetting formattingSetting = getCRMSession().getFormattingSettings();
	Integer numberOfDecimalDigits = formattingSetting.getNumberOfDecimalDigits();

	if (numberOfDecimalDigits!=null)
	{
		totalAmount  = totalAmount.setScale(numberOfDecimalDigits.intValue(), BigDecimal.ROUND_HALF_UP);
	}
 
	return totalAmount;
}


Code Block
titleExample 3 - General Settings
collapsetrue
protected CRMDOContactInformation setDefaultResidenceCountry(CRMDOContactInformation contact) throws Exception {
		
	GeneralSetting generalSettings = getCRMSession().getGeneralSettings();
		
	if (generalSettings!=null)
	{
		contact.setResidenceCountry(generalSettings.getDefaultCountry());
	}
	
	return contact;
}