Hi,
How can I access a datasource from the PurchReqTable in the third form(BudgetCreateTransfer) using Extension?
I want to access PurchReqTable.PurchReqId when I click Create Budget Request(Lower right of the picture).
[ExtensionOf(formControlStr(BudgetCreateTransfer, RequestBudgetButton))]
final class BudgetCreateTransfer_Extension
{
public void clicked()
{
next clicked();
//.... Access PurchReqTable.PurchReqId here ....////
}
}
Left to Right
PurchReqTable
BudgetCheckResults
BudgetCreateTransfer

Thanks in advance!