Hi All ,
I have created a custom factbox for a custom page list in my cloud sandbox. I have also created a custom document attachment page and have added that page as a part in the factbox region of my main list page .
But instead of appearing in the Attachments section of the factbox , its coming in the Details section of the factbox :

My Code :
area(Factboxes)
{
part(XXXProjectDetailsFactbox; XXXProjectDetailsFactbox)
{
ApplicationArea = Basic, Suite;
SubPageLink = ProjectId = field(ProjectId);
}
systempart(Links; Links)
{
Provider = WfsProjectDetailsFactbox;
ApplicationArea = RecordLinks;
//Visible = false;
}
systempart(Notes; Notes)
{
ApplicationArea = Notes;
}
// This is my Documents attachment section which should come in Attachments section of my sandbox instead its coming on the Details Section :
part(ProjectDocAttachFactbox; ProjectDocAttachFactbox)
{
ApplicationArea = All;
SubPageLink = "Table ID" = CONST(50003),
"No." = FIELD(ProjectId);
}
}
PLease Help!!!
Thanks in Advance!