To Enable disable Post button In General Journal forms, We Have To follow following steps.
step 1;
Navigate To \Classes\LedgerJournalFormTable\enableButtonsActive----> add ur code in this method
here have added a code to disable Post button for specific user group
while select userGroupList
where userGroupList.groupId =='Namedis'
&& userGroupList.userId == curUserId()
{
ctrlPostJournalMenu.enabled(false); --------------------> MenuButton Group
}
Note; LedgerJournalTable Clas is a helper class for Ledger Journal Table form
No comments:
Post a Comment