...
Getting the session object
To retrieve 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 | ||||
---|---|---|---|---|
| ||||
public CRMDO copy(CRMDO dto) { CRMSession session = getCRMSession(); ... } |
...