need to change the class of a clipboard page. Which method can be combined with a data transform to achieve this?
In Data transform:
If its a run time page , that means the page you declare in page and classes which will be created only when the rule is executed and available only on clipboard, you can directly give the class name by declaring the page and the class in pages and classes.
In Activity :
Page-Change-Class method can be used to change class of a particular page.
In DT
Set Param.Class = “NewClass”
Apply DataTransform ChangeClass(This is OOTB DT Created in @baseclass)
In Activity
Property-Set Page Name
Param.pxObjClass = “NewClass”
Pega-Change-Class
ObjClassNew = Param.pxObjClass
For Pagelist/PageGroup
Loop
Property-Set Pagelist/PageGroup Name
Param.pxObjClass = “NewClass”
Child Step Pega-Change-Class
ObjClassNew = Param.pxObjClass
It will work.