> @Ghizlane said: > thanx I try to see 'sales order Subform' and I notice that the attribute "repeater" is solution.
The repeater section is fundamental for lines, if you create the page with tpage snippet and select the "type list", it creates the correct structure automatically
> @Ghizlane said: > thanx I try to see 'sales order Subform' and I notice that the attribute "repeater" is solution.
The repeater section is fundamental for lines, if you create the page with tpage snippet and select the "type list", it creates the correct structure automatically
Answers
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
this is a code of page line that I want to be a list in page(plan de controle):
page 50202 Pageligne
{
PageType = ListPart;
ApplicationArea = All;
UsageCategory = Administration;
SourceTable = Ligne;
layout
{
area(Content)
{
group(Ligne)
{
field(Nom; Nom)
{
ApplicationArea = All;
}
field(Niveau; Niveau)
{
}
field(Type; Type)
{
}
}
}
}
actions
{
}
}
this is a code of plan control :
page 50201 "Plan de Contrôle"
{
PageType = Card;
ApplicationArea = All;
UsageCategory = Administration;
SourceTable = Header;
layout
{
area(Content)
{
group("Plan de contrôle")
{
field(Num; Num)
{
ApplicationArea = All;
}
field(Description; Description)
{
}
field("Type de Plan"; "Type de Plan")
{
}
}
part("Ligne du Plan"; Pageligne)
{
}
}
}
actions
{
}
}
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
> thanx I try to see 'sales order Subform' and I notice that the attribute "repeater" is solution.
The repeater section is fundamental for lines, if you create the page with tpage snippet and select the "type list", it creates the correct structure automatically