Hello all
how to create new page in ms dynamics 365 bc ?i want create new page like below screenshot file ,could you please share me vs code here for this (screenshot)that will helpful for me
A Cutback batch can be setup that allows the user to setup section parameters in advance, the user can select an existing batch or create a new on. If the user selects a new batch, the following screen will be presented:
Your problem here is fixed if you set the TableRelation on your batch field.
Regarding the TXT question, if you need that you need to create a local development sandbox environment based on Docker.
Simple way is to create a VM on Azure with all installed by going to http://aka.ms/bcsandbox.
From this machine, you have CSIDE and you can export objects in TXT and convert them by using TXT2AL tool.
Hello Stefano Demiliani,
how to export as TXT a similar page from a D365BC local sandbox (C/AL) ?could you please show me as screenshot especially in dynamics 365 bc cloud
i dont know how to do this
Set the TableRelation property on the Batch Name field on your tables and the lookup will be handled.
Hello Stefano Demiliani ,
Thank you so much for this
finally page is updated on sandbox but batch name should be lookup to cutbatch page
Please see below my table
but my requirement is please see below then please advise me how to do in vs code especially in batch section
A Cutback batch can be setup that allows the user to setup section parameters in advance, the user can select an existing batch or create a new on. If the user selects a new batch, the following screen will be presented:
When a batch is selected, any unposted lines for that batch will show in the table.
Please advise me how to do in vs code especially for batch name
You need to create a page of type = worksheet with your fields:
page 50100 MyWorksheetPage
{
PageType = Worksheet;
ApplicationArea = All;
UsageCategory = Administration;
SourceTable = YourTable;
layout
{
area(Content)
{
field("Posting Date; "Posting Date")
{
ApplicationArea = All;
}
//add your other fields here
}
}
}
Suggestion: if you don't know how to design a particular page, try to export as TXT a similar page from a D365BC local sandbox (C/AL) or from NAV and then convert it to AL using txt2Al tool.