Simply copy and paste this code at the end of the file we created in part one.
// Modifying table 97 Comment Line. We cant modify fields in AL
//This part preceeds the seminar room table
tableextension 50005 CommentLineExtension extends "Comment Line"
{
fields
{
// Add changes to table fields here
field(50000;"Table Names";Option)
{
OptionMembers = ";Seminar Room" ;
}
}
var
myInt : Integer;
}
//Modifying table Extended Text Header (279)
tableextension 50010 ExtendedTextHeaderExtension extends "Extended Text Header"
{
fields
{
// Add changes to table fields here
field(50000;"Table Names";Option)
{
OptionMembers = ";Seminar Room" ;
}
}
var
myInt : Integer;
}
//Modifying table Extended Text Line (280)
tableextension 50015 ExtendedTextLineExtension extends "Extended Text Line"
{
fields
{
// Add changes to table fields here
field(50000;"Table Names";Option)
{
OptionMembers = ";Seminar Room" ;
}
}
var
myInt : Integer;
}
No comments:
Post a Comment