Hi every one,
I am using SAP NetWeaver 04 SP16 (Edition-trial) to migrate a portal java class from (EP4 or EP5) to EP6. I mean i am trying to build portal project upon a java portal class. But i have do some problems in compiltation.
Here is an excerpt of code of this class:
import com.sapportals.portal.prt.component.*;
import com.sapportals.htmlb.*;
import com.sapportals.htmlb.event.*;
import com.sapportals.htmlb.rendering.*;
...
import com.sapportals.portal.prt.service.epcftoolbox.*;
....<b>
import com.sap.pct.plm.utils.*;</b>
public class XXXXXXXX extends AbstractPortalComponent{
......
// create a logger
myLogger = new Logger("DynView");
myLogger.log(this, "doContent has been called ....", 'I', _stdout, request);
....
MyMessage error = new MyMessage('E', "blalalal", e2.toString(), gl, request);
}
My questions:
1- Are <b>Logger </b>and <b>MyMessage</b> SAP classes and in which packages are they ? I have compilation problems these classes are not found.
2- Is there any document that desribes the steps to build a new project from this old class ? what are the changes and modifications?
3- Where can i find the package imported above (import com.sap.pct.plm.utils.*;)
Thank you very much for your help.
---Kaddour