I am not an expert of SBF, but you will probably need to update the security tables yourself.
If you add an entry for the appropriate user and company into the SY_Security_Normal_MSTR table.
'User ID' of table SY_Security_Normal_MSTR = 'User ID' of globals;
'Company ID' of table SY_Security_Normal_MSTR = 'Company ID' of globals;
'DictID' of table SY_Security_Normal_MSTR = DYNAMICS;
'Restype' of table SY_Security_Normal_MSTR = FORMTYPE;
'Resid' of table SY_Security_Normal_MSTR = Resource_GetID(DYNAMICS, FORMTYPE, technicalname(form '<Modified Form>'));
change table SY_Security_Normal_MSTR;
'Alias' of table SY_Security_Normal_MSTR = 0; { No Modified }
'AltDictID' of table SY_Security_Normal_MSTR = <Your Dictionary>;
save table SY_Security_Normal_MSTR;
check error;
I would also add a method of removing this security record if you need to.
David Musgrave [MSFT]
Senior Development Consultant
Escalation Engineer
MBS Support - Asia Pacific
Microsoft Business Solutions
Any views contained within are my personal views and
not necessarily Microsoft Business Solutions policy.
This posting is provided "AS IS" with no warranties,
and confers no rights.