Hi All,
When i associate a page with standard table , the page is editable and i can enter values in the fields on that page and all the fields are editable, but when i create a page with a custom table which i created , the page is Non-Editable as i am not able to enter values in the fields of the page.
The Edit List option in the Manage group in the Action bar of the page is non-editable.

What should i do to change the values in the page? Please help!!!
Code for the custom table :
table 5**** Wfs_CreatePurchOrderStaggTable
{
DataClassification = ToBeClassified;
TableType = Normal;
fields
{
field(1; Vendor; Integer)
{
Editable = true;
Caption = 'Vendor';
DataClassification = ToBeClassified;
}
field(2; Name; Text[20])
{
Caption = 'Text';
DataClassification = ToBeClassified;
}
field(3; "No."; Code[20])
{
Caption = 'No.';
DataClassification = ToBeClassified;
}
field(4; Descripion; Text[50])
{
Caption = 'Description';
DataClassification = ToBeClassified;
}
field(5; Quantity; Integer)
{
Caption = 'Quantity';
DataClassification = ToBeClassified;
}
field(6; "Unit of Measure"; Code[20])
{
Caption = 'Unit of Measure';
DataClassification = ToBeClassified;
}
}
var
myInt: Integer;
trigger OnInsert()
begin
end;
trigger OnModify()
begin
end;
trigger OnDelete()
begin
end;
trigger OnRename()
begin
end;
}
Code for the page :
page 50*** Wfs_CreatePurchOrderPage
{
PageType = List;
ApplicationArea = All;
UsageCategory = Lists;
SourceTable = Wfs_CreatePurchOrderStaggTable;
Editable = true;
layout
{
area(Content)
{
group(General)
{
field(Vendor; Vendor)
{
ApplicationArea = All;
TableRelation = Vendor;
trigger OnValidate()
var
myInt: Integer;
VendorRecord: Record Vendor;
begin
if VendorRecord.Get(Name) then
Name := VendorRecord.Name
else
Name := '';
end;
}
field(Name; Name)
{
ApplicationArea = All;
Editable = false;
}
}
repeater(GroupName)
{
field("No."; "No.")
{
ApplicationArea = All;
}
field(Descripion; Descripion)
{
ApplicationArea = All;
}
field(Quantity; Quantity)
{
ApplicationArea = All;
}
field("Unit of Measure"; "Unit of Measure")
{
ApplicationArea = All;
}
}
}
}
actions
{
area(Processing)
{
action("Create Purchase Order")
{
ApplicationArea = All;
trigger OnAction();
begin
Message('Hi');
end;
}
}
}
}
Thanks in Advance!:)