Question
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
BCBS, Newark, New Jersey
US
Last activity: 26 Nov 2018 1:46 EST
Pega Automatically created properties inside Page property
Hello,
I have created properties called first name, last name, birthdate inside BCBS-Data-Customer. Now I created page property called Request. Now If I see in app explorer under data model>Property>Request then I saw all properties which I created inside BCBS-Data-Customer, all properties copied inside page properties. So what to do if I don't want to see any duplication property inside page property. Can anyone help me?
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/ea0db37c-0cf3-4f6a-90e5-7fa31ed4f3cf.jpg?itok=pvfvIWNy)
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/ea0db37c-0cf3-4f6a-90e5-7fa31ed4f3cf.jpg?itok=pvfvIWNy)
Vodafone
IN
Hello Rushabh,
This happens when you reference the same class to the page you have created. Avoid referencing the class name which holds properties to the Page while creating it.
-
John Lordo Jinath Wijesinghe
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
BCBS, Newark, New Jersey
US
Hello Naveen. Thank you for your response. Here Can you please elaborate about avoiding using class reference inside property using some screenshots to understand and cleared my doubt.
Thanks,
Rushabh Shah
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
CollabPartnerz
IN
Yes i do agree with what naveen explained.
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/f7151e69-7bd9-4702-be03-ebb6f0beb05f.jpg?itok=GWX3Wdig)
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/f7151e69-7bd9-4702-be03-ebb6f0beb05f.jpg?itok=GWX3Wdig)
CollabPartnerz
IN
Could you please avoid using class reference.
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/f7151e69-7bd9-4702-be03-ebb6f0beb05f.jpg?itok=GWX3Wdig)
![](https://accounts.pega.com/sites/default/files/styles/user_image/public/1689954000/f7151e69-7bd9-4702-be03-ebb6f0beb05f.jpg?itok=GWX3Wdig)
CollabPartnerz
IN
Have tried by avoiding class reference and let me know if you need any help.
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
BCBS, Newark, New Jersey
US
Hello Naveen. Thank you for your response. Here Can you please elaborate about avoiding using class reference inside property using some screenshots to understand and cleared my doubt.
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
![](/profiles/pega_profile/modules/pega_user_image/assets/user-icon.png)
CollabPartnerz
IN
For Example if you are having a page property in which you are having another page but if class for both are same then it will be like as provided in your screenshot.
If you need further clarification revert back to me.
![](https://accounts.pega.com/sites/default/files/pega-user-image/465/REG-464737.png?source=PUMINIT)
![](https://accounts.pega.com/sites/default/files/pega-user-image/465/REG-464737.png?source=PUMINIT)
Aaseya IT Services Pvt.Ltd
IL
Hi Rushabh,
Issue is with your Class Reference in the created Page property(Request), You have referred the same class reference where the Page property is created. When you want to access the properties in other class and use those properties in current class then you need to create Page property in current class by referencing Other class as source to this page.
Example: Your properties(FirstName, LastName, Age) are in NCS-DevApp-Data-PersonalData
If you want to use those in other class like NCS-DevApp-Work-Request, then you need to create "Page" property(PersonalInfo) in this "Work-Request" class and then refer "NCS-DevApp-Data-PersonalData" as page definition class.
Now your structure in Work-Request class will be the following:
PersonalInfo.FirstName
PersonalInfo.LastName
PersonalInfo.Age
Like wise you can use or refer properties in one class to other using SinglePage or PageList Property.